{{-- @dd($shipments); --}}
@foreach($shipments as $shipment) @endforeach
Fecha de envio Estatus Soporte Cliente Codigo de Cliente Acciones
{{ $shipment->deliver_date }} {{ $shipment->status }} @if(isset($shipment->soporte)) Descargar soporte @else No tenemos archivo de soporte @endif {{ $shipment->customers->company }} {{ $shipment->customers->code_supplier}} {!! Form::open(['route' => ['shipments.destroy', $shipment->id], 'method' => 'delete', 'id' => $shipment->id]) !!}
@can('shipments.create') @endcan @can('shipments.create') @endcan @can('shipments.delete') @endcan {{-- @can('shipments.create') {!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!} @endcan --}}
{!! Form::close() !!}