@include('livewire.tenant.lemarex.task.partials._header')
@include('livewire.tenant.lemarex.task.partials._tools')
| @if ($manageColumns['title']) |
|
@endif
@if ($manageColumns['due_date'])
|
@endif
@if ($manageColumns['module'])
Type | @endif @if ($manageColumns['completed_at'])
|
@endif
@if ($manageColumns['status'])
Status | @endif @if ($manageColumns['user_id'])Created By | @endif @if ($manageColumns['created_at'])
|
@endif
@if ($manageColumns['updated_at'])
|
@endif
@if ($manageColumns['action'])
Action | @endif
|---|---|---|---|---|---|---|---|---|---|
| @if ($manageColumns['title']) | {{ $task->title }} | @endif @if ($manageColumns['due_date']){{ $task->due_date }} | @endif @if ($manageColumns['module']){{ $task->holder_type }} | @endif @if ($manageColumns['completed_at']){{ $task->completed_at }} | @endif @if ($manageColumns['status']){{ $task->trashed() ? 'Deleted' : ($task->status == 1 ? 'Active' : 'Inactive') }} | @endif @if ($manageColumns['user_id']){{ $task->user->display_name }} | @endif @if ($manageColumns['created_at']){{ $task->created_at }} | @endif @if ($manageColumns['updated_at']){{ $task->updated_at }} | @endif @if ($manageColumns['action'])@endif |
{{ $tasks->links() }}