@extends('user.layouts.master') @section('title', __('Dashboard')) @section('content')
{{ __('Welcome!') }}

{{ (auth()->user()->display_name) ? auth()->user()->display_name : auth()->user()->name }}

{{ __("Here's a summary of your account. Have fun!") }}

@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() !!}
{!! Panel::balance('account', ['cta' => true]) !!}
{!! Panel::balance('deposit') !!}
{!! Panel::balance('withdraw') !!}
@if (filled($recentTransactions))
{{ __('Recent Activity') }}
@foreach($recentTransactions as $transaction) @include('user.transaction.trans-row', compact('transaction')) @endforeach
@endif {!! Panel::referral('invite-card') !!} {!! Panel::cards('support') !!} @if(Panel::news())
{!! Panel::news() !!}
@endif
@endsection @if (filled($recentTransactions)) @push('modal') @endpush @endif