@extends('layouts.admin') @section('content')
COMMANDE N {{ 'CO' . Carbon\Carbon::parse($commande_clients->created_at)->year . '' . Carbon\Carbon::parse($commande_clients->created_at)->month . '-0' . $commande_clients->id }}
  • Client
  • Date
  • Agence
  • Programme
  • Avis Banque
  • Commerciale

@if($commande_clients->etat == 'brouillon')
@csrf
@endif
@foreach($commande_articles as $c) @endforeach
Libellé Description Prix HT Quantité Montant Action
{{ $c->libelle }} {{ $c->description }} {{ $c->prix }} {{ $c->quantite }} {{ $c->montant }} @can('client_delete')
@endcan
@if($commande_clients->etat == 'brouillon')
@csrf
@else
@csrf
@endif Générer une commande Créer une facture @if($commande_clients->etat != 'livré')
@csrf
@endif @if($commande_clients->etat == 'livré')
@csrf
@endif
@endsection @section('scripts') @parent @endsection