@extends('layouts.master') @section('title', 'Voucher Reports') @section('page-header') Voucer Reports @stop @push('style') @endpush @section('content')
| Sl | Date | Voucher No | Voucher Type | Company | Description | Amount |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $voucher->date }} | {{ $voucher->invoice_no }} | {{ $voucher->voucher_type }} | {{ optional($voucher->company)->name }} | {{ $voucher->description }} | {{ number_format($voucher->amount, 2) }} |
| Total In Page | {{ number_format($vouchers->sum('amount'), 2) }} | |||||
| Grand Total | {{ number_format($grand_total, 2) }} | |||||