@extends('employer::layouts.master') @section('pagetitle','Manage Interviews') @section('content')

{{ ucfirst($candidate->first_name) }} {{ ucfirst($candidate->last_name) }}

@include('employer::candidate.pageheader')

Comments & Activity

@csrf
@if($candidatecomment->count()>0) @foreach($candidatecomment as $candidatecomments)
@if($candidatecomments->system_msg !='') @elseif($candidatecomments->comments !='') {{nameFirstLetter($candidatecomments->employer->first_name)}}{{nameFirstLetter($candidatecomments->employer->last_name)}} @endif
@if($candidatecomments->system_msg !='') System Message @elseif($candidatecomments->comments !='') Comment @endif {{converdate($candidatecomments->created_at)}}
@if($candidatecomments->system_msg !='') {{$candidatecomments->system_msg}} @elseif($candidatecomments->comments !='') {{nameFirstLetter($candidatecomments->employer->first_name)}}{{nameFirstLetter($candidatecomments->employer->last_name)}} added a comment: {{$candidatecomments->comments}} @endif
@endforeach @endif
@endsection @section('scripts') @endsection