@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/Y à H:i') }}
@elseif($prestataire){{ $prestataire->user->name }}
@endif{{ session('success') }}
{{ session('error') }}
{{ Str::limit($booking->service->description, 100) }}
@endif{{ $prestataire->location }}
@endif