@extends('back.layout.app') @section('title', config('app.name') . ' - Opérations à facturer') @php $breadcrumb = 'operations.waiting_billing'; @endphp @section('content')

Opérations à facturer

{{ $operations->count() }}
@can('export-operations') Exporter @endcan
{{-- Barre de filtres --}}
@if (request()->filled('user_id')) Réinitialiser @endif
{{-- Datatable --}}
@foreach ($operations as $operation) @endforeach
N°BDC Date sortie Type Opération Commercial
@if ($operation->num_bdc) {{ $operation->num_bdc }} @endif {{ $operation->publish_date }} @if ($operation->type) {{ $operation->type->name }} @else @endif {{ $operation->name }} @if($operation->media) {{ $operation->media->name }} @endif {{ $operation->user?->firstname ?? '—' }} @can('edit-operations')
Dupliquer
@endcan @can('view-operations')
Consulter
@endcan
{{ __('ui.datatable.show') }}{{ __('ui.datatable.per_page') }}
@endsection