@extends('layouts/default')
{{-- Page title --}}
@section('title')
@parent
@stop
{{-- page level styles --}}
@section('header_styles')
@stop
{{-- Page content --}}
@section('content')
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
| JI.No |
JI.Date |
Item Name |
Unit |
Quantity |
Km. |
Amount |
@foreach($items as $item)
| {{$item->voucher_no}} |
{{date('d-m-Y',strtotime($item->voucher_date))}} |
{{$item->item_name}} |
{{$item->unit_name}} |
{{$item->quantity}} |
{{$item->kilometer}} |
{{number_format($item->unit_price,2)}} |
@endforeach
@if (count($items) === 0)
| No matching records found |
@endif
@include('layouts.right_sidebar')
@stop
{{-- page level scripts --}}
@section('footer_scripts')
@stop