@if ($ticket->status != 'done')
{{-- Re-Assign User --}}
@if (auth()->user()->type == 'admin' ||
auth()->user()->role->hasPermission('tickets-assignUser'))
@endif
{{-- Change Status --}}
@if (auth()->user()->type == 'admin' ||
auth()->user()->role->hasPermission('tickets-changeStatus'))
@endif
@endif
{{-- Ticket Data --}}
| ID : |
{{ $ticket->id }}
{{ $ticket->delay == 1 ? 'Delay ticket' : '' }}
|
| Client ID : |
{{ $ticket->client->name }}
|
| Assigned User: |
{{ $ticket->assigned_to->name }}
|
| Created By: |
{{ $ticket->ticket_created_by->name }}
|
| Project: |
{{ $ticket->project->name }}
|
| Unit: |
{{ $ticket->unit->name }}
|
| Description: |
{{ $ticket->description }}
|
| Communication Method : |
{{ $ticket->method->name }}
|
| Ticket Type : |
{{ $ticket->ticket_type->name }}
|
| Status : |
{{ $ticket->status }}
|
| Call Date: |
{{ Carbon\Carbon::parse($ticket->call_date)->format('Y-m-d') ?? '' }}
|
| Created at : |
{{ Carbon\Carbon::parse($ticket->created_at)->format('Y-m-d H:i:s') ?? '' }}
|
| Deadline : |
{{ Carbon\Carbon::parse($ticket->deadline)->format('Y-m-d') ?? '' }}
|
| Total Impression : |
{{ $ticket->client->tag?->name ?? '' }}
|
@if (count($ticket->files) != 0)
Attached Files
@endif