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

Company Admin

@csrf

Reply

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

{{ $thread->created_at }}

 

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

{{ $thread->created_at }}

 

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