@extends('layouts.master') @section('content')
Service Voucher

Service Vouchers @can('Service Vouchers add') Add Voucher @endcan

{{-- Alerts --}}
@if (session('alert'))
{{ session('alert') }}
@endif
{{-- This is the "expand/collapse" control --}} @forelse($vouchers as $key => $voucher) @empty @endforelse
# Voucher No Date Truck No Bill No Party Type Party Name Total Amount Description Actions
{{ $key + 1 }} {{ $voucher->voucher_no }} {{ $voucher->voucher_date }} {{ $voucher->truck_no }} {{ $voucher->bill_no }} {{ $voucher->party_type }} {{ $voucher->party_name }} ({{ $voucher->party_type }}) {{ number_format($voucher->total_amount, 2) }} {{ $voucher->description }} @can('Service Vouchers edit') @endcan @can('Service Vouchers delete')
@csrf @method('DELETE')
@endcan
No vouchers found.
# Voucher No Date Truck No Bill No Party Type Party Name Total Amount Description Actions
@endsection @push('scripts') @endpush