@extends('layouts.master') @section('title') {{ __('View Contact Inquiry') }} @endsection @section('content')

{{ __('Contact Inquiry Details') }} {{ __('Back to List') }}

{{ $inquiry->name }}
{{ $inquiry->email }}
@if(!Auth::user()->hasRole('Super Admin') || $inquiry->subject)
{{ $inquiry->subject ?? 'N/A' }}
@endif @if(Auth::user()->hasRole('Super Admin'))
{{ $inquiry->school ? $inquiry->school->name : 'N/A' }}
{{ $inquiry->type == 'super_admin' ? 'Super Admin' : 'School' }}
@endif
{{ $inquiry->description }}
{{ $inquiry->created_at->format('d-m-Y H:i') }}
@csrf @method('DELETE')
{{ __('Back') }}
@endsection