@extends('layouts.frontend.app') @section('content')
@php $dashboard_tab =''; $dashboard_menu =''; $order_tab =''; $order_menu =''; $wishlist_tab =''; $wishlist_menu =''; $payment_tab =''; $payment_menu =''; $address_tab =''; $address_menu =''; $account_details_tab=''; $account_details_menu=''; if(old('firstname') !=''){ $account_details_tab= 'active show'; $account_details_menu= 'active'; }elseif(old('country') !=''){ $address_tab ='active show'; $address_menu ='active'; }elseif(session('page')=='wishlist'){ $wishlist_tab ='active show'; $wishlist_menu ='active'; }else{ $dashboard_tab ='active show'; $dashboard_menu ='active'; } @endphp
@if(session('message')) @endif

Dashboard

Hello, Alex Tuntuni (If Not Tuntuni ! Logout)

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) @endforeach
Order ID Name Date Payment Status Sub Total Discount Grand Total
{{$order->order_id}} {{$order->customer_name}} {{$order->order_date}} {{$order->payment_status}} {{$order->subtotal}} {{$order->total_discount}} {{$order->grandtotal}}

Wishlist

@if($wishlists) @foreach($wishlists as $key=>$each_item) @endforeach @else

Your cart is empty!

@endif
Image Product Price Add To Cart
Product {{ $each_item->product->name }} ৳ {{ $each_item->product->price }}

Payment Method

You Can't Saved Your Payment Method yet.

Billing Address

Account Details

@endsection