@extends('tracker::layouts.master')
@section('title','Board')
@section('content')
Board — {{ $trackerCurrentProject->name ?? 'All Projects' }}
Switch project in the sidebar
@foreach($columns as $key => $label)
{{ $label }}
{{ $grouped[$key]->count() }}
@forelse($grouped[$key] as $issue)
{{ $issue->title }}
{{ ucfirst($issue->priority) }}
{{ $issue->assignee->name ?? 'Unassigned' }}
@if($key !== 'done')
@endif
@empty
No issues
@endforelse
@endforeach
@endsection