@extends('layouts.main_dashboard.app') @section('title', __('dashboard.View Inquiry')) @section('page_heading', __('dashboard.View Inquiry')) @section('breadcrumb') @endsection @section('actions') {{ __('dashboard.Back to Inquiries') }} @endsection @section('content')

{{ $inquiry->title }}

@if($inquiry->status == 'replied') {{ __('dashboard.Replied') }} @else {{ __('dashboard.New') }} @endif
{{ $inquiry->student->name }}
{{ $inquiry->student->name }} {{ $inquiry->created_at->format('d M, Y h:i A') }}

{{ __('dashboard.Student Message') }}:

{!! nl2br(e($inquiry->message)) !!}

@if($inquiry->studentFiles->isNotEmpty())
{{ __('dashboard.Student Attachments') }}:
@foreach($inquiry->studentFiles as $file) {{ $file->file_name }} @endforeach
@endif
@if($inquiry->status == 'replied')

{{ __('dashboard.Your Reply') }}:

{!! nl2br(e($inquiry->teacher_reply)) !!}

@if($inquiry->teacherFiles->isNotEmpty())
{{ __('dashboard.Your Attachments') }}:
@foreach($inquiry->teacherFiles as $file) {{ $file->file_name }} @endforeach
@endif
@else
@csrf

{{ __('dashboard.Write your reply') }}

@endif
@endsection