@extends('layouts.backend') @section('content')

Ready Loads

#
Reference
LRN
Type of Entry
GMR
Status
@foreach ($loads as $no => $load)
{{ $load->customer_reference }}
{{ $load->lrn }}
{{ $load->getTypeOfEntry->type }}
{{ $load->gmr == '0' ? 'No' : 'Yes' }}
@if ($load->status=='3') In progress @else {{ $load->getStatus->status }} @endif
by: {{ $load->getUser->name }} (Company: {{ $load->getCustomer->legal_name }}) on {{date('d M Y H:i',strtotime($load->created_at))}}
@endforeach
@endsection