@extends('layouts.app') @section('title', __('My Profile')) @section('content')
@include('profile.partials.sidebar')

{{ __('Welcome, :name!', ['name' => $user->name]) }}

{{ $stats['total_orders'] }}

{{ __('Total Orders') }}

{{ $stats['completed_orders'] }}

{{ __('Completed') }}

{{ $stats['pending_orders'] }}

{{ __('Pending') }}

{{ number_format($stats['total_spent'], 0) }}

{{ __('Total Spent (SAR)') }}

@endsection