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