@extends('backend.layouts.master') @section('admin-title') Checkout List @endsection @section('admin-content')
All Checkouts
Total: {{ $checkoutLists->count() }}
@forelse($checkoutLists as $checkout) @empty @endforelse
#ID Product Name Price Quantity Customer Name Phone Address Order Date
#{{ $checkout->id }} {{ $checkout->product_name }} ৳ {{ number_format($checkout->price, 2) }} {{ $checkout->quantity }} {{ $checkout->customer_name }} {{ $checkout->phone }} {{ Str::limit($checkout->address, 50) }} {{ $checkout->created_at->format('d M, Y (h:i A)') }}

No checkout data found!
{{-- Pagination (যদি কন্ট্রোলার থেকে paginate ব্যবহার করেন) --}}
{{-- $checkouts->links() --}}
@endsection