{{$loop->index + 1}} |
{{$allocation->vessel}} |
{{$allocation->agent}} |
{{$allocation->eta}} |
{{$allocation->allocated_tonnage}} |
@can('allocations.toc',Auth::user())
{{$allocation->actual_tonnage}} |
@endcan
{{$allocation->month}} |
@foreach ($ports as $port)
@if ($allocation->port_id == $port->id)
{{$port->name}} |
@endif
@endforeach
@foreach ($transporters as $transporter)
@if ($transporter->id == $allocation->transporter_id)
{{$transporter->name}} |
@endif
@endforeach
@can('allocations.send_notification', Auth::user())
sent_status =='sent') onclick="event.preventDefault();" disabled @endif class="btn btn bg-navy btn-flat">SEND NOTIFICATION |
@endcan
@can('allocations.preview_letter', Auth::user())
PREVIEW LETTER |
@endcan
@can('allocations.update', Auth::user())
EDIT |
@endcan
@can('allocations.toc', Auth::user())
Actual Tonnage |
@endcan
@can('allocations.delete', Auth::user())
|
@endcan
@endforeach