Catalogue des services — {{ $magasin->name ?? 'Magasin' }}

Date : {{ now()->format('d/m/Y H:i') }}

Nombre de prestations : {{ $services->count() }}

@if(!empty($filters['selection']))

{{ $filters['selection'] }}

@endif
@foreach($services as $service) @php $user = $service->user; $createdBy = $user ? (trim(($user->nom ?? '') . ' ' . ($user->prenom ?? '')) ?: ($user->name ?? '-')) : '-'; @endphp @endforeach
Prestation Libellé quantité Magasin Créé par Créé le Statut
{{ $service->name }} {{ $service->unit_label ?: 'unité' }} {{ optional($service->magasin)->name ?? '-' }} {{ $createdBy }} {{ $service->created_at ? $service->created_at->format('d/m/Y H:i') : '-' }} {{ (string) $service->status === '1' ? 'Actif' : 'Inactif' }}