@extends('layouts.main_without_top_button') @section('title') Route Expenses @stop @section('navigation') @stop @section('contentinner')
{{$route_assignment->truck_registration}} - {{$route_assignment->trailer_registration}}
{{$route_assignment->getDriver()->full_name}}
{{$route_assignment->client}}
{{$route_assignment->route_to}}
{{--*/ $overall_total_amount = 0 /*--}} {{--*/ $overall_total_budgeted_amount = 0 /*--}} {{--*/ $overall_total_un_budgeted_amount = 0 /*--}} @foreach($requisition_expenses as $index=> $requisition_expense) {{--*/ $overall_total_amount += $requisition_expense->total_expense_amount /*--}} {{--*/ $overall_total_budgeted_amount += $requisition_expense->total_budget_amount /*--}} {{--*/ $overall_total_un_budgeted_amount += $requisition_expense->total_un_budget_amount /*--}} @endforeach
SNO. Expense Budgeted Un Budgeted Total
{{++$index}} {{$requisition_expense->account}} {{number_format($requisition_expense->total_budget_amount,2)}} {{number_format($requisition_expense->total_un_budget_amount,2)}} {{number_format($requisition_expense->total_expense_amount)}}
TOTAL {{number_format($overall_total_budgeted_amount,2)}} {{number_format($overall_total_un_budgeted_amount,2)}} {{number_format($overall_total_amount,2)}}
PRINT
@stop