@if (!$show)
@elseif ($grouped->isEmpty())
Aucune opération pour ce statut.
@else
@foreach ($grouped as $month => $operations)
{{ $month }}
{{ $operations->count() }}
@foreach ($operations as $operation)
|
{{ $operation->publish_date }}
|
@if ($operation->num_bdc)
{{ $operation->num_bdc }}
@endif
|
@if ($operation->type)
{{ $operation->type->name }}
@endif
|
{{ $operation->name }}
|
@if ($operation->customer)
{{ $operation->customer->name }}
@endif
|
@if ($operation->media)
{{ $operation->media->name }}
@endif
|
@endforeach
@endforeach
@endif