@extends('adminlte::page') @section('title', 'Tasks') @section('content_header')

Tasks

@endsection @include('partials.datatables') @section('content')
@if($status) @endif
@if($status) @endif
Reset

All Tasks

@foreach($tasks as $t) @endforeach
# Case Title Assignee Status Due Actions
{{ $t->id }} {{ Str::limit($t->case?->title, 50) }} {{ Str::limit($t->title, 60) }} {{ $t->assignee?->name ?? '-' }} {{ ucfirst(str_replace('_',' ',$t->status)) }} {{ optional($t->due_date)->format('Y-m-d') ?? '-' }} View Edit
@csrf @method('DELETE')
@endsection