@php $i = 1; @endphp @extends('layout.index') @section('content')

Dashboard

Hello, {{$data->name ?? ''}}

From your account dashboard. you can easily check & view your recent orders, manage your shipping and billing addresses and edit your password and account details.

Orders

@foreach($orders as $order) @php $total = $order->quantity * $order->total; @endphp @endforeach
Order Image Name Total Action
{{$i++}} {{$order->product_name}} ${{$total}} View

Payment Method

You Can't Saved Your Payment Method yet.

Billing Address

Name  :   {{$address->shipping_name ?? ''}}
Email  :   {{$address->shipping_email ?? ''}}
Phone :   {{$address->phone ?? ''}}

{{$address->house_no ?? ''}} {{$address->landmark ?? ''}} {{$address->city ?? ''}}, {{$address->state ?? ''}},
{{$address->country ?? ''}} {{$address->pincode ?? ''}}

Edit Address

Account Details

@endsection @section('script') @endsection