{{ $label }}●
{{ number_format($value) }}@extends('layouts.app') @section('title', $isTypist ? 'My Tasks' : 'Tasks & Approvals') @section('content')
{{ $isTypist ? 'Only work assigned to you is shown here. Update progress as you complete each customer action.' : 'Assign accountable work and retain an auditable decision trail for sensitive exceptions.' }}
Add a clear action, deadline and linked record.
Priority-sorted actions with accountable ownership and due dates.
| Task | Priority | Linked work | Owner | Due | Status / action |
|---|---|---|---|---|---|
| {{ $task->task_number }} · {{ $task->title }}{{ str($task->description)->limit(95) }} | {{ $task->priority }} | {{ $task->source_type ? str($task->source_type)->title() : 'General' }}{{ $task->source_id ? '#'.$task->source_id : ($task->branch?->name ?? 'No linked record') }} | {{ $task->assignedUser?->name ?? 'Unassigned' }}Created by {{ $task->creator?->name ?? 'System' }} | {{ $task->due_at?->format('d M Y, h:i A') ?? 'No deadline' }}@if($task->due_at){{ $task->due_at->diffForHumans() }}@endif | @if(auth()->user()->hasPermission('tasks.manage') && !in_array($task->status, ['completed','cancelled']))@else{{ str($task->status)->replace('_',' ') }}@endif |
| No assigned tasksYour workflow tasks and renewal follow-ups will appear here. | |||||
Submit exceptions for an authorized decision.
Permission-controlled decisions with permanent audit history.
| Request | Type / amount | Requested by | Reason | Status | Decision |
|---|---|---|---|---|---|
| {{ $approval->approval_number }}{{ $approval->created_at->format('d M Y, h:i A') }} | {{ str($approval->type)->replace('_',' ')->title() }}{{ $approval->amount !== null ? 'AED '.number_format((float) $approval->amount, 2) : 'No amount' }} | {{ $approval->requester?->name }} | {{ str($approval->reason)->limit(110) }} | {{ $approval->status }} | @if(auth()->user()->hasPermission('approvals.manage') && $approval->status === 'pending')Review |
| No approval requests. | |||||