@extends('layouts.layout') @section('title', 'Dashboard') @section('content')

Import History

@if($report->report_type=='seals_report') @if($report->count()>0) @foreach($records as $statement) @endforeach
Seal # Date Truck # Driver Dispatcher Name
{{$statement->seal}} {{$statement->date}} {{$statement->truck}} {{$statement->driver}} {{$statement->dispatcher_name}}
@else
No reports has been imported!
@endif @endif @if($report->report_type=='match_seals_report') @if($report->count()>0) @foreach($records as $statement) @endforeach
ProNum Vehicle / Carrier Sched. PU Coil #2
{{$statement->pronum}} {{$statement->vehcar}} {{$statement->schedule}} {{$statement->coil2}}
@else
No reports has been imported!
@endif @endif
@stop