@extends('layouts/default') {{-- Page title --}} @section('title') Invoice @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Employee

{{Session::get('company')}}

{{$voucherhead}}


  Date To: 05-08-2026

@foreach($reports as $row) @endforeach
Si.No. Document Code Document Name Department Issue Date Expiry Date Amount
{{$i}} {{$row->code}} {{ $row->name }} {{$row->department_name}} {{($row->issue_date=='0000-00-00')?'':date('d-m-Y', strtotime($row->issue_date))}} {{($row->expiry_date=='0000-00-00')?'':date('d-m-Y', strtotime($row->expiry_date))}} {{($row->amount > 0)?number_format($row->amount,2):''}}
Total: {{($total > 0)?number_format($total,2):''}}
@include('layouts.right_sidebar')
@stop {{-- page level scripts --}} @section('footer_scripts') @stop