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

Transporter

@if(Session::has('flash_message'))

{{ Session::get('flash_message') }}

@endif
Transporter Records
@foreach($transporter as $item) @endforeach
Name Supplier Name Type Corridor Product Km 20 L-Rate 20 H-Rate 40 Rate BB Rate Valid From Valid To Status Actions
{{ $item->name }} {{ $item->supplier_name }} {!! $item->type == 1 ? 'Own' : 'Third Party' !!} {{ $item->corridor['origin'] }} - {{ $item->corridor['destination'] }} {{ $item->product['name'] }} {{ $item->corridor['Km'] }} {{ $item->twenty_light_rate }} {{ $item->twenty_heavy_rate }} {{ $item->forty_rate }} {{ $item->bb_rate }} {{ $item->validity_from_wrap }} {{ $item->validity_to_wrap }} {!! $item->status == 0 ? 'Inactive' : 'Active' !!} {!! Form::open([ 'method'=>'DELETE', 'url' => ['/admin/transporter', $item->id], 'style' => 'display:inline' ]) !!} {!! Form::button('', array( 'type' => 'submit', 'class' => 'btn red btn-xs', 'title' => 'Delete', 'onclick'=>'return confirm("Confirm delete?")' )) !!} {!! Form::close() !!}
@endsection