@lang('View Shipments')
@can('delete', App\Shipment::class) {{csrf_field()}}
@endcan
@lang('Advanced Search')
@can('delete', App\Shipment::class) @endcan @if((Auth::user()->can('update', App\Shipment::class)) || (Auth::user()->can('delete', App\Shipment::class))) @endif @if(count($shipments) > 0) @foreach($shipments as $shipment) @can('delete', App\Shipment::class) @endcan @if((Auth::user()->can('update', App\Shipment::class)) || (Auth::user()->can('delete', App\Shipment::class))) @endif @endforeach @endif
@lang('ID') @lang('Name') @lang('Address') @lang('City') @lang('State') @lang('Zip') @lang('Country') @lang('Shippers') @lang('Created')@lang('Action')
@if ($shipment->id != 1) @endif {{$loop->iteration}} {{$shipment->name}} {{$shipment->address}} {{$shipment->city}} {{$shipment->state}} {{$shipment->zip}} {{$shipment->country}} {{count($shipment->users)}} {{$shipment->created_at}} @can('update', App\Shipment::class) @endcan   @if ($shipment->id != 1) @can('delete', App\Shipment::class) @endcan @endif