@extends('layouts.app') @section('content')
{{ __('Draft') }}
{{ __('Draft Items') }}
@foreach ($postCarts as $postCart) @endforeach
{{ __('SL') }} {{ __('Created Date') }} {{ __('Customer') }} {{ __('Total Products') }} {{ __('Sub Total') }} {{ __('Discount') }} {{ __('Total') }} {{ __('Action') }}
{{ $loop->iteration }} {{ $postCart->created_at->format('d M Y, h:i A') }}
{{ $postCart->created_at->diffForHumans() }}
{{ $postCart?->user?->name ?? 'N/A' }} {{ $postCart->products->count() }} {{ __('Items') }} {{ showCurrency($postCart->subtotal) }} {{ showCurrency($postCart->discount) }} {{ showCurrency($postCart->total) }}
@endsection