@extends('layouts.panel')
@section('title','Board')
@php
$cols = [
'todo' => 'Todo',
'doing' => 'Doing',
'blocked' => 'Blocked',
'done' => 'Done',
];
@endphp
@section('content')
Board
Sürükle-bırak ile görevleri taşı.
@foreach($cols as $key => $label)
{{ $label }}
{{ ($grouped[$key] ?? collect())->count() }}
@foreach(($grouped[$key] ?? collect()) as $t)
@if($t->assignee)
{{ $t->assignee->name }}
@endif
{{ strtoupper($t->priority) }}
@endforeach
@endforeach
@endsection