@extends('layout.app') @section('title', 'Bills') @section('page-title', 'Manage Bills') @section('content')
Bills Details
Add New Bill
@forelse ($bills as $bill) @empty @endforelse
Sr# Bill No. Shopkeeper Shop Date/Time Total Operations
{{ $loop->iteration }} {{ $bill->bill_number ?? 'N/A' }} {{ $bill->shopkeeper->name ?? 'N/A' }} {{ $bill->shop_name_snapshot ?? 'N/A' }} {{ $bill->date_time ?? 'N/A' }} {{ $bill->total_amount ?? 'N/A' }}
No Bills found.
@endsection