@extends('layout.main') @section('content')
{{__('nav.issue')}}
# {{$data->issue_id}}
@if (Auth::user()->hasRole('admin')) @if ($data->status == 0) @if($data->assigned_to != null)
@csrf @method('PUT')
{{__('nav.process')}}
@else
{{__('nav.assign')}}
@endif @endif @else @if ($data->status == 0)
@csrf @method('PUT')
{{__('nav.process')}}
@endif @endif
{{__('nav.title')}}
{{ $data->title}}
{{__('nav.reported_by')}}
{{ $data->clients->name}}
{{__('nav.assigned_to')}}
@if($data->assigned_to != null) {{ $data->assignee->name}} @else @endif
{{__('nav.uploaded_file')}}
{{ $data->uploaded_file_name}}
{{__('nav.view_doc')}}
Status
{{ $data->issue_status}}
{{__('nav.created_on')}}
{{$data->created_at->diffForHumans()}}
{{__('nav.last_update')}}
{{$data->updated_at->diffForHumans()}}
@if($data->status == 2)
{{__('nav.advised_file')}}
{{ $data->certified_file_name}}
{{__('nav.view_doc')}}
{{__('nav.comment')}}
{{ $data->comment}}
@endif
@if($data->status == 1)
{{__('nav.comment')}}
@csrf
{{--
Email Notification
--}}
{{--
--}}
{{--
--}} @error('file')
{{$message}}
@enderror
Submit
@endif
@if( Auth::user()->can('legal-issues-pending-view'))
Other Client Certifications
@forelse($others as $other)
{{$other->title}}
@empty
{{__('nav.not_found')}}
@endforelse
@endif
{{__('nav.assign_to_user')}}
×
@csrf
{{__('nav.users')}}
Select User
@foreach($users as $role)
{{$role->name}}
@endforeach
@error('user')
{{$message}}
@enderror
@endsection