@extends('front.layouts.main') @section('content')
| SN | Date | Time | Customer Name | Phone Number | Total Amount |
|---|---|---|---|---|---|
| {{$key + 1}} | {{Carbon\Carbon::parse($item->created_at)->format('d/m/Y')}} | {{Carbon\Carbon::parse($item->created_at)->addHours(5)->format('H:s')}} | {{$item->customer->name ??'none'}} | {{$item->customer->phone??'none'}} | {{$item->total + $item->due??'none'}} |