@extends('admin::layouts.master') @php $pageTitle = 'داشبورد '; @endphp @section('css') @endsection @section('title', 'داشبورد ') @section('content') @php // دادههای فیک برای نمایش $stats = [ 'total_automations' => 47, 'active_automations' => 32, 'total_runs_today' => 1247, 'success_rate' => 87.5, 'pending_runs' => 23, 'failed_runs_today' => 18, 'total_messages_sent' => 8456, 'active_users' => 156 ]; $recent_automations = [ (object)[ 'id' => 1, 'name' => 'پاسخ به کامنت اینستاگرام', 'type' => 'instagram', 'status' => 'active', 'runs_today' => 245, 'success_rate' => 92 ], (object)[ 'id' => 2, 'name' => 'پیامک یادآوری پرداخت', 'type' => 'sms', 'status' => 'active', 'runs_today' => 189, 'success_rate' => 85 ], (object)[ 'id' => 3, 'name' => 'اتوماسیون تلگرام', 'type' => 'telegram', 'status' => 'inactive', 'runs_today' => 0, 'success_rate' => 0 ] ]; $platform_stats = [ 'instagram' => ['count' => 28, 'success' => 92, 'color' => 'danger'], 'telegram' => ['count' => 12, 'success' => 88, 'color' => 'info'], 'sms' => ['count' => 7, 'success' => 85, 'color' => 'success'] ]; @endphp
کل اتوماسیونها
اجراهای امروز
پیامهای ارسالی
کاربران فعال
| اتوماسیون | پلتفرم | اجراهای امروز | موفقیت | وضعیت |
|---|---|---|---|---|
{{ $automation->name }} |
{{ $automation->type == 'instagram' ? 'اینستاگرام' : ($automation->type == 'telegram' ? 'تلگرام' : 'SMS') }} | {{ $automation->runs_today }} |
{{ $automation->success_rate }}%
|
@if($automation->status == 'active') فعال @else غیرفعال @endif |