@foreach($notes as $note)
@php
$url = 'javascript:;';
if($note->type == 'Job_Application'){
$url = route('applications.show', $note->job_application_id).'?notes=true';
}elseif($note->type == 'My Jobs'){
$url = route('pjobs.jobs.show', $note->job_id).'?notes=true';
}elseif($note->type == 'My Candidates' || $note->type == 'Person'){
$url = route('peopleViewMarketPlace', $note->person_id).'?notes=true';
}
@endphp
{!!Str::limit($note->notes, 50)!!}
Created by {{$note->username}} on {{$note->created_at}}
@endforeach
@endif