@extends('layouts.admin-modern') @section('title', 'Détails du prestataire') @section('content')
{{ $prestataire->user->email }}
{{ Str::limit($service->description, 100) }}
Créé le {{ $service->created_at->format('d/m/Y') }}{{ Str::limit($review->comment, 120) }}
{{ $review->created_at->format('d/m/Y') }}Actif
Ce prestataire n'a pas d'abonnement premium
{{ number_format($equipment->price ?? 0, 2) }} €/jour
{{ $equipment->status === 'available' ? 'Disponible' : ucfirst($equipment->status ?? 'N/A') }}Aucun équipement enregistré
{{ $sale->created_at->format('d/m/Y') }}
Aucune vente urgente
| Client | Date | Montant | Statut |
|---|---|---|---|
|
{{ substr($booking->client->name ?? 'C', 0, 1) }}
{{ $booking->client->name ?? 'Client' }}
|
{{ $booking->created_at->format('d/m/Y') }} | {{ number_format($booking->total_price ?? 0, 2) }} € | @php $statusColors = [ 'pending' => 'bg-yellow-100 text-yellow-800', 'confirmed' => 'bg-blue-100 text-blue-800', 'completed' => 'bg-green-100 text-green-800', 'cancelled' => 'bg-red-100 text-red-800', ]; $color = $statusColors[$booking->status] ?? 'bg-gray-100 text-gray-800'; @endphp {{ ucfirst($booking->status ?? 'N/A') }} |
Aucune réservation