@extends('layouts.app') @section('title', 'Otomatik Görevler Yönetim Paneli') @section('page-title', 'Otomatik Görevler Yönetim Paneli') @section('content')
Scheduled task'ları görüntüleyin ve yönetin
| Görev Adı | Tip | Zamanlama | Son Çalışma | Sonraki Çalışma | Durum | İstatistikler | İşlemler |
|---|---|---|---|---|---|---|---|
|
@if($task->description)
{{ Str::limit($task->description, 60) }}
@endif
|
{{ $task->type === 'command' ? 'Komut' : 'Job' }} |
{{ $task->schedule_description ?? $task->schedule_expression }}
|
@if($task->last_run_at) {{ $task->last_run_at->format('d.m.Y H:i') }} @else Henüz çalışmadı @endif |
@if($task->next_run_at)
{{ $task->next_run_at->format('d.m.Y H:i') }}
@if($task->next_run_at->isPast())
(Gecikmiş)
@endif
@else
-
@endif
|
{{ $task->status_label }} |
Çalışma: {{ $task->run_count ?? 0 }}
@if($task->failure_count > 0)
Hata: {{ $task->failure_count }}
@endif
|
|
|
Henüz görev bulunmuyor "Kernel'den Senkronize Et" butonuna tıklayarak görevleri yükleyin. |
|||||||