@extends('app') @section('content')

Liste des commandes client

@if($errors->any())
{{$errors->first()}}
@endif @if(Session::has('msgExist'))
{!! session('msgExist') !!}
@endif @if(Session::has('msgDelete'))
{!! session('msgDelete') !!}
@endif @if(Session::has('msgSupprimer'))
{!! session('msgSupprimer') !!}
@endif @if(Session::has('msgAjouter'))
{!! session('msgAjouter') !!}
@endif
@if(Session::get('CLIENT_COMMANDES_IMPORTER')) @endif @if(Session::get('FOURNISSEURS_COMMANDES_AJOUTER')) @endif



@if(Session::get('CLIENT_COMMANDES_DETAIL')) @endif @if(Session::get('FOURNISSEURS_COMMANDES_MODIFIER')) @endif @if(Session::get('CLIENT_COMMANDES_SUPPRIMER')) @endif @foreach( $commandes_client as $commande_client) @if(Session::get('CLIENT_COMMANDES_DETAIL')) @endif @if(Session::get('FOURNISSEURS_COMMANDES_MODIFIER')) @endif @if(Session::get('CLIENT_COMMANDES_SUPPRIMER')) @endif
@endforeach
N° Commande Raison sociale Adresse client Date de création Etat DétailModifierSupprimer
{!!$commande_client->numCommande!!} {!!$commande_client->Client->raisonSociale!!} {!!$commande_client->Client->adresseClient!!} {!!$commande_client->dateCommande!!} {!!$commande_client->statutCommande!!} @if($commande_client->statutCommande!="Préparée") @endif
@endsection