@extends('layouts.master') @section('title', 'Voucher Reports') @section('page-header') Voucher 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: | {{ number_format($vouchers->sum('amount'), 2) }} | |||||