@extends('backend.layouts.master') @section('admin-title') Checkout List @endsection @section('admin-content')
| #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! |
|||||||