@extends('layouts.head_office_app') @section('title', 'Case '.$case->id) @section('sub-header') @include('head_office.case_manager.notes.sub-header') @endsection @section('content')
@include('layouts.error')

Form:

{{$case->form_name ?? ' '}}

Created

{{$case->created_at->format('d M Y, h:i a')}}

@if (isset($case->getReporter()->id) && $case->getReporter()->email != 'external@qitech.com') Reported by

{{$case->getReporter()->name ?? 'External User'}}

Reported from @else Reported from @endif

getReporter()->id) && $case->getReporter()->email != 'external@qitech.com') title="{{$case->location_full_address}}"@endif> @if (isset($case->saved_loc)) {{ isset($case->saved_loc->location_id) ? $case->saved_loc->location_id : $case->saved_loc->trading_name}} @else {{ isset($case->location->location_id) ? $case->location->location_id : $case->location_name}} @endif

Last Updated

{{ $case->updated_at->diffForHumans() }}

Information Requests

@if($case->case_request_informations->isEmpty())

You have no Request Information.

@else @foreach ($case->case_request_informations as $case_request_information) @endforeach
Date Sent to Requested by Status Action
{{$case_request_information->created_at->format('d/m/y')}}
{{ $case_request_information->created_at->diffForHumans()}}
{{$case_request_information->user->email}} / {{$case_request_information->user->name}} {{$case_request_information->case->case_head_office->company_name}} @if($case_request_information->status == 0) Waiting @else Received @endif @if($case_request_information->status == 0) Edit Request
Cancel Request @else View Response @endif
@endif
@section('styles') @endsection @section('scripts') @endsection @endsection