@extends('adminlte::page') @section('title', 'Reports') @section('content_header') @section('content')
@csrf

Reports

Summary
@if($reports->count()>0) @foreach($reports as $import) @endforeach
Card # Group Date Site name Site # Tractor Fuel qty Price DEF Final amount Unit # Site city Prov state Reefer Fuel cost Total amount Currency
{{$import->card_no}} {{$import->group}} {{$import->date}} {{$import->site_name}} {{$import->site_no}} {{$import->tractor}} {{$import->fuel_qty}} {{$import->price}} {{$import->def}} {{$import->final_amount}} {{$import->unit_no}} {{$import->site_city}} {{$import->prov_state}} {{$import->reefer}} {{$import->fuel_cost}} {{$import->total_amount}} {{$import->currency}}
@else
No reports has been imported yet!
@endif {{$reports->links()}}
@stop