@extends('layouts.app') @section('title', 'Laisser un avis') @section('content') @php // Get booking and service information $booking = $bookingId ? \App\Models\Booking::find($bookingId) : null; $prestataire = $prestataireId ? \App\Models\Prestataire::find($prestataireId) : null; @endphp
{{ $booking->service->name }} • {{ $booking->start_datetime->format('d/m') }}
@elseif($prestataire){{ $prestataire->user->name }}
@endif