@extends('locationAdmin.layouts.auth') @section('title') {{ env('APP_NAME') }} | Location Admin Message @endsection @section('styles') @endsection @section('content') @if ($errors->any())
@endif

Employee

{{ $employeeDetails->name }}

 

@csrf

Reply

Upload Message Image

@if(count($messageThreads) > 0)
Messages:
@foreach($messageThreads as $key => $thread) @if($thread->sender_type == 3)
{{ $thread->message }}

{{ $thread->created_at }}

 

@elseif($thread->sender_type == 4)
{{ $thread->message }}

{{ $thread->created_at }}

 

@endif @endforeach
@endif
@endsection @section('scripts') @endsection