@extends('layouts.panel') @section('content') @php $statusLabels = [ 'todo' => 'Todo', 'doing' => 'Doing', 'blocked' => 'Blocked', 'done' => 'Done', ]; $statusCounts = []; foreach ($statusLabels as $k => $v) { $statusCounts[$k] = (int)($tasksByStatus[$k] ?? 0); } @endphp
Veritabanındaki gerçek verilerden özet.
| Görev | Durum | Tarih | Aç |
|---|---|---|---|
|
{{ $t->title }}
@if(!empty($t->project?->name))
{{ $t->project->name }}
@endif
|
{{ $statusLabels[$t->status] ?? $t->status }} | {{ \Carbon\Carbon::parse($t->due_date)->format('d.m.Y') }} | Detay |
| Görev | Durum | Son Tarih | Aç |
|---|---|---|---|
|
{{ $t->title }}
@if(!empty($t->project?->name))
{{ $t->project->name }}
@endif
|
{{ $statusLabels[$t->status] ?? $t->status }} | {{ \Carbon\Carbon::parse($t->due_date)->format('d.m.Y') }} | Detay |