@extends('layout.main') @section('content')

{{__('nav.appointment')}}
# {{$data->issue_id}}

@if ($data->status == 0)
@csrf @method('PUT')
@else @if($data->status == 3)
@csrf @method('PUT')
@endif @endif
{{__('nav.title')}}
{{ $data->title}}
{{__('nav.client')}}
{{$data->client->name}}
@if($data->type == 2)
{{__('nav.uploaded_file')}}
{{ $data->file_name}}
@endif
Status
{{__('nav.created_on')}}
{{$data->created_at->diffForHumans()}}
{{__('nav.last_update')}}
{{$data->updated_at->diffForHumans()}}
@if($data->status == 1) {{--

{{__('nav.comment')}}
@csrf
@error('file')
{{$message}}
@enderror
--}} @endif
@if( Auth::user()->can('legal-issues-pending-view'))

{{__('nav.other_appointments')}}

    @forelse($others as $other)
  • {{$other->title}}
  • @empty
  • {{__('nav.not_found')}}
  • @endforelse
@endif
@endsection