@extends('layouts.app')
@section('title','Échéancier · '.$organization->name)
@section('eyebrow','Gestion')
@section('heading','Échéancier direction')
@section('content')
@forelse($tasks as $task)
{{ $task->title }}{{ $task->category }} · {{ $task->due_date?->format('d/m/Y') ?: 'Sans échéance' }} @if($task->assignee) · {{ $task->assignee }} @endif
{{ $task->status==='done'?'Terminée':'Ouverte' }}›
@empty
Aucune échéance.
@endforelse
@endsection