@extends('layouts.admin') @section('content') @can('client_create')
Nouvelle Commande
@endcan
Liste des Commandes Clients
@foreach($commande_clients as $key => $commande_client) @endforeach
{{ trans('cruds.client.fields.id') }} Client Date Montant Agence Avis Banque Etat Action
{{ $commande_client->id ?? '' }} {{ $commande_client->nom_complet ?? '' }} {{ $commande_client->date ?? '' }} {{ $commande_client->montant ?? '' }} {{ $commande_client->agence ?? '' }} {{ $commande_client->avis_banque ?? '' }} {{ $commande_client->etat ?? '' }} @can('client_show') {{ trans('global.view') }} @endcan @can('client_edit') {{ trans('global.edit') }} @endcan @can('client_delete')
@endcan
@endsection @section('scripts') @parent @endsection