@extends('layouts.base')
@section('title', 'Validation des commandes')
@section('content')
{{--
@yield('title')
--}}
{{--
Export data to Copy, CSV, Excel, PDF & Print
--}}
@foreach($header as $key => $head)
| {{ ucfirst(__($head)) }} |
@endforeach
|
@foreach($header as $key => $head)
| {{ ucfirst(__($head)) }} |
@endforeach
|
@foreach($customers as $customer)
| {{$customer->name}} |
{{$customer->commands()->where('status','PROGRESS')->count()}} |
|
@endforeach
@endsection
@section('javascripts')
@endsection