@extends('layouts.app') @section('title','Échéancier · '.$organization->name) @section('eyebrow','Gestion') @section('heading','Échéancier direction') @section('content')
{{ $tasks->where('status','open')->count() }} tâche(s) ouverte(s)
Vue Gestion
@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' }}
@csrf @method('PATCH')
@csrf @method('PATCH')
@csrf @method('DELETE')
@empty
Aucune échéance.
@endforelse
@endsection