1. {{-- {{ __('Dashboard') }} --}}
  2. {{ __('My Orders') }}

All Orders

Click to see the order details

{{-- Mobile --}} @php $total=0; @endphp @foreach ($orders as $order) @if($order) @php $total+=$order->amount; @endphp @endif @endforeach {{-- --}}
{{ date('m/d/Y',strtotime($order->created_at)) }} Order {{$order->id}} ${{number_format($order->amount,2)}}
Total Total ${{ number_format($total,2) }}