@extends('layouts/master',['activePage' => 'dashboard', 'titlePage' => __('Dashboard')]) @section('title', 'Academy Dashboard - Apps') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('page-script') @endsection @section('content')
@if(auth()->user()->gender == 'female') 👩🏻 @elseif(auth()->user()->gender == 'male') 👨🏻 @else 👋🏻 @endif

@php date_default_timezone_set('Asia/Yangon'); $hour = date('H'); if ($hour < 12) { echo 'Good morning'; } elseif ($hour < 17) { echo 'Good afternoon'; } else { echo 'Good evening'; } @endphp , {{ auth()->user()->name }}!

@php $greetings = [ "Your progress this week looks great! Keep it up!", "You're doing awesome work! Here's what's happening today:", "Great to see you! Let's check your dashboard updates.", "Welcome back! Ready to create something amazing today?", "Looking sharp today! Here's your current stats:" ]; echo $greetings[array_rand($greetings)]; @endphp

{{ $subscriberCount }}

Total Subscribers

{{ $subscriberGrowth >= 0 ? '+' : '' }}{{ $subscriberGrowth }}% than last week

{{ $servicePostCount }}

Service Posts

{{ $serviceGrowth >= 0 ? '+' : '' }}{{ $serviceGrowth }}% than last week

{{ $postCount }}

Active Posts

{{ $postGrowth >= 0 ? '+' : '' }}{{ $postGrowth }}% than last week

{{ $projectPostCount }}

Active Projects

{{ $projectGrowth >= 0 ? '+' : '' }}{{ is_numeric($projectGrowth) ? $projectGrowth : '∞' }}% than last week

Quick Actions
One-click access to common tasks
Add Post

Create new blog post

Add Service

Create new service

Add Client

Register new client

Add Project

Create new project

@endsection