@extends('layouts.master') @section('content')

Quick Search Results

JobOrders

@if(count($joborders)) @foreach($joborders as $joborder) @endforeach
Title Company Type Status Start Recruiter Owner Created Modified
{{ $joborder->designation }} {{ $joborder->company_name }} {{ $joborder->recruitment_type }} {{ $joborder->Status }} {{ $joborder->recruiterName }} {{ $joborder->ownerName }} {{ $joborder->dateCreated }} {{ $joborder->dateModified }}
@else

No matching record found.

@endif

Candidates

@if(count($candidates)) @foreach($candidates as $candidate) @endforeach
First Name Last Name Home Cell Owner Created Modified
{{ $candidate->first_name }} {{ $candidate->last_name }} {{ $candidate->phone_home }} {{ $candidate->phone_cell }} {{ $candidate->ownerName }} {{ $candidate->dateCreated }} {{ $candidate->dateModified }}
@else

No matching record found.

@endif

Companies

@if(count($companies)) @foreach($companies as $company) @endforeach
Name Primary Phone Owner Created Modified
{{ $company->company_name }} {{ $company->mobile1 }} {{ $company->ownerName }} {{ $company->dateCreated }} {{ $company->dateModified }}
@else

No matching record found.

@endif

Contacts

@if(count($contacts)) @foreach($contacts as $contact) @endforeach
First Name Last Name Title Company Work Cell Owner Created Modified
{{ $contact->first_name }} {{ $contact->last_name }} {{ $contact->phone_cell }} {{ $contact->ownerName }} {{ $contact->dateCreated }} {{ $contact->dateModified }}
@else

No matching record found.

@endif
@endsection