{{-- FILE: resources/views/backend/cash_sales/index.blade.php --}} @extends('backend.app') @push('css') @endpush @section('content')

Shop Cash Sales

{{-- Desktop Bulk Print Button --}} Print Selected Add Order
@foreach($items as $item) @endforeach
Invoice ID Customer Name Products Date Total Amount Action
#{{ $item->invoice_no }}
{{ $item->first_name }} {{ $item->mobile }}
@foreach($item->details as $detail) {{ $detail->product->name ?? 'N/A' }} @endforeach
{{ date('d M, Y', strtotime($item->date)) }} ৳ {{ (int) $item->amount }}
{{-- Single Print Button --}} {{-- Delete Button --}}
{!! $items->links() !!}
{{-- Floating Bulk Action Bar --}}
0 Selected
@endsection @push('js') @endpush