@if($notes->count() > 0)
@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
{{$note->name}} | {{$note->source}}
{!!Str::limit($note->notes, 50)!!} Created by {{$note->username}} on {{$note->created_at}}
@endforeach
@endif