@extends('layouts.app') @section('page_title', $project->name) @section('content')

{{ $project->name }}

{{ $project->description }}

@foreach (['todo', 'in_progress', 'in_review', 'done'] as $status)
{{ str_replace('_', ' ', $status) }}
{{ $tasks[$status]->count() ?? 0 }}
@foreach ($tasks[$status] as $task)
{{ ucfirst($task->priority) }}
{{ $task->title }}

{{ $task->description }}

@if ($task->assignee) @else
@endif
@if ($task->due_date) {{ $task->due_date->format('M d') }} @endif
@endforeach
@endforeach
@push('styles') @endpush @push('scripts') @endpush @endsection