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

Bill Details


@php $perPage = $billings->perPage(); $currentPage = $billings->currentPage(); $counter = ($currentPage - 1) * $perPage + 1; @endphp @foreach ($billings as $billing) @endforeach
# Date Bill No. Transporter Name Trip's Net Amount Payment Status Action
{{ $counter++ }} {{ date('d-m-Y', strtotime($billing->date))}} {{ $billing->bill_number}} {{ $billing->transporter->name}} {{$billing->totalTrip}} {{ number_format($billing->totalNetAmount, 2) }} Paid
@endsection @push('scripts') @endpush