@extends('user.layouts.master') @section('title', __('Dashboard')) @section('content')
{{-- ========== BLUE HEADER ZONE ========== --}}
{{-- Greeting row --}}
@if(auth()->user()->avatar) {{ auth()->user()->display_name }} @else
{!! user_avatar(auth()->user()) !!}
@endif
{{ __('Hello,') }} {{ (auth()->user()->display_name) ? auth()->user()->display_name : auth()->user()->name }}
{{-- Account Card Slider --}}
{{-- Slider dots --}}
{{-- ========== WHITE CONTENT ZONE ========== --}}
{{-- Alerts --}} @if(has_restriction())

{{ __("Caution") }}: {{ 'All the transactions are NOT real as you have logged into demo application to see the platform.' }}

@endif {!! Panel::profile_alerts() !!} {{-- ===== FAVORITES GRID ===== --}}
{{ __('Favorites') }}
{{-- Row 1: 4 items --}}
{{-- Deposit icon - Wallet with plus --}}
{{ __('Deposit') }}
{{-- Withdraw icon - Arrow out of box --}}
{{ __('Withdraw') }}
{{-- Invest & Earn icon - Growth chart with coin --}} @if(has_route('user.investment.invest'))
{{ __('Invest & Earn') }}
@endif {{-- Referrals icon - People with link --}} @if(referral_system())
{{ __('Referrals') }}
@endif
{{-- Row 2: 3 items --}}
{{-- Transaction History icon - Receipt list --}}
{{ __('Transactions') }}
{{-- Investments icon - Portfolio briefcase --}} @if(has_route('user.investment.dashboard'))
{{ __('Investments') }}
@endif {{-- Do More icon - Grid with star --}}
{{ __('Do More') }}
{{-- ===== FEATURES / PROMO BANNER ===== --}}
{{ __('Features') }}
{{ site_info('name') }}

{{ __('Invest Smart, Earn Big') }}

{{ __('Your trusted platform for profitable investments') }}

@if(has_route('user.investment.invest')) {{ __('Multiple Plans') }} @endif {{ __('Secure & Fast') }} {{ __('24/7 Support') }}
{{-- ===== RECENT TRANSACTIONS ===== --}} @if (filled($recentTransactions))
{{ __('Recent Activity') }}
{{ __('See History') }}
@foreach($recentTransactions as $transaction) @include('user.transaction.trans-row', compact('transaction')) @endforeach
@endif {!! Panel::referral('invite-card') !!} {!! Panel::cards('support') !!}
@include('user.layouts.bottom-nav')
@endsection @if (filled($recentTransactions)) @push('modal') @endpush @endif @push('scripts') @endpush