@extends('layouts.adminlte') @section('title','Voucher '.$voucher->voucher_no) @section('content')
| Site | {{ $voucher->site->name }} |
|---|---|
| Vendor | {{ $voucher->vendor->name }} |
| Particular | {{ $voucher->particular->name }} |
| Payment Mode | {{ strtoupper($voucher->payment_mode) }} |
| Reference No. | {{ $voucher->reference_no ?: '-' }} |
| Amount | ₹ {{ number_format($voucher->amount,2) }} |
| Narration | {{ $voucher->narration ?: '-' }} |
| Status | {{ ucfirst($voucher->status) }} |