@extends('layout.master') @section('title', 'Transpoting | Transporters Managment System') @section('content')

Transaction Details


@php $perPage = $transactions->perPage(); $currentPage = $transactions->currentPage(); $counter = ($currentPage - 1) * $perPage + 1; @endphp @foreach ($transactions as $transaction) @endforeach
# Date Vehicle No. Transporter Destination TP Number Net Amount Bill Status Action
{{ $counter++ }} {{ $transaction->date }} {{ $transaction->vehicle->vehicle_number }}
Driver: {{ $transaction->driver->name }}
{{ $transaction->transporter->name }} {{ $transaction->fromDestination->name }} {{ $transaction->toDestination->name }} {{ $transaction->tp_number }} {{ $transaction->net_amount }} @if($transaction->billed) Billed @else Unbilled @endif
@endsection @push('scripts') @endpush