@extends('layouts.acc_layout') @section('title', '| Vehicle Allowance Auto Voucher List') @section('content')
Vehicle Allowance Auto Voucher List
{!! Form::open(array('url' => '','id'=>'entryForm', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!} {{-- Table --}}
@foreach ($vehicleAllowanceVouchers as $vehicleAllowanceVoucher) @endforeach
#SL Branch Employee Designation Mobile No. Month Allowance Cost Action
Fuel Mobil Servising Total
{{ ++$no }} {{ $vehicleAllowanceVoucher->branchCodeWith0 }} - {{ $vehicleAllowanceVoucher->branchName }} {{ substr($vehicleAllowanceVoucher->empId, 0, 5) }} - {{ $vehicleAllowanceVoucher->empName }} {{ $vehicleAllowanceVoucher->designation }} {{ $vehicleAllowanceVoucher->empMobileNo }} {{ date('M-Y', strtotime($vehicleAllowanceVoucher->allowanceMonth)) }} {{ number_format($vehicleAllowanceVoucher->fuelCost) }} {{ number_format($vehicleAllowanceVoucher->mobilCost) }} {{ number_format($vehicleAllowanceVoucher->servicingCost) }} {{ number_format($vehicleAllowanceVoucher->totalAmount) }}
{!! Form::close() !!}
{{-- ./panel-body --}}
{{-- ./col-md-12 --}}
{{-- .row --}}
{{-- ./panel-body --}}
{{-- ./panel --}}
{{-- ./col-md-10 --}}
@endsection