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

Opérations facturées

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