@extends('layouts.admin') @section('content') @can('client_create')
Nouvelle Facture
@endcan
Liste des Factures Clients
@foreach($factures as $key => $f) @endforeach
{{ trans('cruds.client.fields.id') }} Client Date Montant Utilisateur Reçu Créance Etat Action
{{ $f->id ?? '' }} {{ $f->nom_complet ?? '' }} {{ $f->date ?? '' }} {{ $f->montant ?? '' }} {{ $f->name ?? '' }} {{ $f->recu ?? '' }} {{ $f->creance ?? '' }} {{ $f->etat ?? '' }} @can('client_show') {{ trans('global.view') }} @endcan @can('client_edit') {{ trans('global.edit') }} @endcan @can('client_delete')
@endcan
@endsection @section('scripts') @parent @endsection