@extends('front.layout.app') @section('title','Dashboard') @section('content')

My Dashboard

My Dashboard

From this dashboard you have the ability to view a snapshot of your recent account activity and update your account information. Select a link below to view or edit information.

Recent Orders

@if(count($recentOrders) > 0)
@forelse($recentOrders as $order) @empty @endforelse
Order# Date Order Total Order Status Action

Order#{{$order->order_no}}

Date{{date('d-m-Y',strtotime($order->created_at))}}

Order Total${{$order->total_amount+$order->shipping_cost}}

Order Status{{$order->order_status}}

{{-- Track Order--}} View Order {{-- Reorder--}}
@else

No Record Found

@endif

My Account Information

@if(count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
customers->gender == 'male') checked @endif>
customers->gender == 'female') checked @endif>
customers->notification_check == 1) checked @endif>

My Orders

@forelse($orders as $order) @empty @endforelse
Order# Date Order Total Order Status

Order#{{$order->order_no}}

Date{{date('d-m-Y',strtotime($order->created_at))}}

Order Total${{$order->total_amount+$order->shipping_cost}}

Order Status{{$order->order_status}}

{{-- Track Order--}} View Order {{-- Reorder--}}
No Order yet!

My Wishlist

@forelse($products as $product) @empty @endforelse
Product Price Action

{{$product->product->product_name}}

${{$product->product->product_current_price}}

{{ csrf_field() }} Remove
No Item in WishList !

My Address Add New Address

@forelse($addresses as $addresse)
{{$addresse->shipping_billing}}
{{$addresse->first_name}} {{$addresse->last_name}} {{$addresse->address}} {{$addresse->city}} {{$addresse->country}} {{$addresse->phone_no}}
@empty
No Address Saved Yet!
@endforelse
@endsection @section('extra-js') @endsection