@extends('front_end.template.layout') @section('content')

My Account

Hello {{ Auth::user()->first_name }} {{ Auth::user()->last_name }}

(not {{ Auth::user()->first_name }}? Log Out)

Need Assistance? Customer service at.

admin@example.com

E-mail them at

support@example.com

Dashboard

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.

@foreach($orders as $order) @endforeach
Order Product Date Status Total
{{ $loop->iteration }} @foreach($order->products as $product)
{{ $product->product_name }}
@endforeach
{{ \Carbon\Carbon::parse($order->created_at)->format('d M Y') }} {{ order_status($order->status) }} AED {{$order->grand_total}} for {{ $order->products->sum('quantity') }} items

My Orders

@foreach($orders as $order) @endforeach
Order Product Date Status Total Actions
{{ $loop->iteration }} @foreach($order->products as $product)
{{ $product->product_name }}
@endforeach
{{ \Carbon\Carbon::parse($order->created_at)->format('d M Y') }} {{ order_status($order->status) }} AED {{$order->grand_total}} for {{ $order->products->sum('quantity') }} items View

My Bookings

@foreach ($bookings as $booking) @endforeach
Order Workshop Date Seats Total Actions
{{ $loop->iteration }} {{ $booking->name }} {{ \Carbon\Carbon::parse($booking->from_date)->format('d M Y') }} - {{ \Carbon\Carbon::parse($booking->to_date)->format('d M Y') }} {{ $booking->number_of_seats }} {{ $booking->grand_total }} for {{ $booking->number_of_seats }} seats View

Orders tracking

To track your order please enter your OrderID in the box below and press "Track" button. This was given to you on your receipt and in the confirmation email you should have received.

Status for order no: 000123

product
  • Order name
    Sunset Sleep Scarf Top
  • customer number
    000123
  • order date
    14 Nov 2024
  • Ship Date
    16 Nov 2024
  • shipping address
    55 Gallaxy Enque, 2568 steet, 23568 NY
  • Carrier
    Ipsum
  • carrier tracking number
    000123
Date Time Description Location
14 Nov 2024 08.00 AM Shipped Canada
15 Nov 2024 12.00 AM Shipping info received California
16 Nov 2024 10.00 AM Origin scan Landon

Change Password

@csrf

Use the form below to change your password.

Your password must be 8-20 characters long, contain letters and numbers, and must not contain spaces or special characters.
To confirm, type the new password again.

Saved Address

The following addresses will be used on the checkout page by default.

@foreach($addresses as $address)

{{ $address->address }}

{{ $address->full_name }}

@if($address->is_default) Primary Address @else Make Primary Address @endif Edit
@endforeach
@csrf

My Profile

My Wishlist

@foreach($wishlists as $item)
@php $images = explode(',', $item->image); $firstImage = $images[0]; @endphp image image
@if($item->regular_price) @if($item->sale_price && $item->sale_price < $item->regular_price)
Sale Price: {{ $item->sale_price ?? 'N/A' }}
Regular Price: {{ $item->regular_price }}
@else
Price: {{ $item->regular_price }}
@endif @else
Price: Not available
@endif
@for($i = 1; $i <= 5; $i++) @if($item->rating >= $i) @elseif($item->rating >= $i - 0.5) @else @endif @endfor
@endforeach
@endsection