@extends('layout.master')
@section('title', 'Transpoting | Transporters Managment System')
@section('content')
| # |
Source |
Destination |
Rate (MT) |
Action |
@php
$perPage = $destinationprices->perPage();
$currentPage = $destinationprices->currentPage();
$counter = ($currentPage - 1) * $perPage + 1;
@endphp
@foreach ($destinationprices as $destinationprice)
| {{ $counter++ }} |
{{$destinationprice->fromDestination->name}} |
{{$destinationprice->toDestination->name}} |
{{$destinationprice->price}} |
|
@endforeach
@endsection
@push('scripts')
@endpush