@extends('front.master') @section('title','Files') @section('content')
@if(Session::has('flash_message_success'))
{!! session('flash_message_success') !!}
@endif @if(Session::has('flash_message_danger'))
{!! session('flash_message_danger') !!}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach($files as $file) @endforeach
S/N File Number Bill Lading Form M Allocation Date Commodity Job Type 20FT 40FT Other Size Assigned Staff Shipping Line Terminal Action
{{$n++}} {{ $file->file_number }} {{ $file->bill_of_lading }} {{ $file->mf }} {{ $file->date_allocated }} {{ $file->commodity }} @if($file->job_type == 1) Fast-Track @endif @if($file->job_type == 0) Customs Examination @endif {{ $file->twenty_ft }} {{ $file->fourty_ft }} {{ $file->other_size }} {{ $file->staff_assigned }} {{ $file->shipping_line }} {{ $file->terminal }} Re-Open File
@endsection