My Workflows
Manage and track your workflow tasks
My Workflow Tasks
@forelse($tasks as $task)
@if($task->status !== 'completed')
...existing code...
@endif
@empty
No workflow tasks assigned to you.
@endforelse
Workflows I Created
| Document Title | Workflow | Created At | View | Tasks |
|---|---|---|---|---|
|
{{ $doc->title }}
{{ $doc->description }}
|
{{ $doc->workflow ? $doc->workflow->name : '-' }} | {{ $doc->created_at ? $doc->created_at->format('Y-m-d H:i') : '-' }} | @if($doc->file_path) View @else No file @endif | @if($doc->tasks && $doc->tasks->count()) @else No tasks @endif | @empty
| No documents found for workflows you created. | ||||