@extends('report.pdf.layouts.app')
@section('pdf_content')
Expense Report
|
| Report Information |
From:{{ dateformat($from_date) }}
To:{{ dateformat($to_date) }}
|
|
|
| Expense Type |
Type Name: {{ $type_name }}
|
|
| @lang('SL') |
@lang('Date') |
@lang('Type') |
@lang('Account') |
@lang('Voucher No') |
@lang('Remark') |
@lang('Amount') |
@php
$total = 0;
@endphp
@foreach ($items as $key => $item)
@php
$total += $item->amount;
@endphp
| {{ $key + 1 }} |
{{ dateformat($item->date) }} |
{{ $item->type_name }} |
{{ $item->account_name }} |
{{ $item->vouche_no }} |
{{ $item->remark }} |
{{ numberFormat($item->amount) }} |
@endforeach
| @lang('Total') |
{{ numberFormat($total) }} |
@endsection