@extends('layout.master') @section('title', 'Transpoting | Transporters Managment System') @section('content')
@php $perPage = $destinations->perPage(); $currentPage = $destinations->currentPage(); $counter = ($currentPage - 1) * $perPage + 1; @endphp @foreach ($destinations as $transporter) @endforeach
{{ $counter++ }} {{ $transporter->name }}

Price Details


@php $perPage = $destinationprices->perPage(); $currentPage = $destinationprices->currentPage(); $counter = ($currentPage - 1) * $perPage + 1; @endphp @foreach ($destinationprices as $destinationprice) @endforeach
# Source Destination Rate (MT) Action
{{ $counter++ }} {{$destinationprice->fromDestination->name}} {{$destinationprice->toDestination->name}} {{$destinationprice->price}}
@endsection @push('scripts') @endpush