@extends(isset($location) ? 'layouts.location_app' : 'layouts.head_office_app') @section('title', 'Case '.$case->id) @section('content') @php use Illuminate\Support\Facades\Auth; $updated_records = $record->all_linked_records()->last(); if (isset($updated_records->raw_form)) { $questionsJson = json_decode($updated_records->raw_form, true); $updated_form = $updated_records; } else { $questionsJson = json_decode($record->raw_form, true); $updated_form = $record; } @endphp
Back @include('head_office.case_manager.notes.angular_form_emed')
@endsection