@extends('layouts.app') @section('content')
{{ $todayDisplay }}
{{ __('dashboard.active_projects') }}
{{ app()->getLocale() === 'fa' ? persian_num($activeProjectsCount) : $activeProjectsCount }}
{{ $projectTrend > 0 ? '↑' : '↓' }} {{ abs($projectTrend) }}% {{ __('dashboard.vs_last_month') }}
@endif{{ __('dashboard.total_budget') }}
{{ $totalBudgetFormatted }}
{{ __('dashboard.pending_tasks') }}
{{ app()->getLocale() === 'fa' ? persian_num($pendingTasksCount) : $pendingTasksCount }}
{{ $taskTrend > 0 ? '↑' : '↓' }} {{ abs($taskTrend) }}% {{ __('dashboard.vs_last_month') }}
@endif{{ __('dashboard.active_employees') }}
{{ app()->getLocale() === 'fa' ? persian_num($activeEmployeesCount) : $activeEmployeesCount }}
{{ $employeeTrend > 0 ? '↑' : '↓' }} {{ abs($employeeTrend) }}% {{ __('dashboard.vs_last_month') }}
@endif{{ __('dashboard.no_projects') }}
@endforelse{{ __('dashboard.no_tasks') }}
@endforelse{{ $activity->user?->name }} — {{ $activity->description }}
{{ calendar_date($activity->created_at) }}
{{ __('dashboard.no_activity') }}
@endforelse{{ __('dashboard.calendar_system') }}
{{ $currentCalendar === 'jalali' ? __('calendar.jalali') : __('calendar.gregorian') }}
{{ __('dashboard.today') }}: {{ $todayDisplay }}
{{ __('dashboard.number_format') }}
{{ app()->getLocale() === 'fa' ? persian_num(1234567.89) : number_format(1234567.89, 2) }}
{{ __('dashboard.currency_format') }}
{{ format_currency(150000000, $currencyCode) }}