@extends('front.template.master') @section('title', $title) @section('content')
Are you a Jobseeker ?
@if (Auth::check())
@else
@endif
Searching Candidates ?
@foreach($advertisement as $a)
@if(!empty($a->image)) @else @endif
{{ $a->title }}
@endforeach
{{csrf_field()}}

Search Results

@foreach($posts as $c)
{{ $c->job_title }}
{{ $c->organisation }}
3 to 5 yrs
{{ $c->job_location }}
Last date to apply {{ $c->closing_date }}

{{ str_limit(strip_tags($c->job_description), $limit = 300, $end = '...') }}

@endforeach {{ $posts->links() }}

Prime Jobs

@foreach($premiumjobs as $j)
@foreach($users as $k=>$us) @if($j->organisation == $us->id) @if($us->user_image) @else @endif @endif @endforeach
{{ $j->job_title }}
@foreach($users as $k=>$us) @if($j->organisation == $us->id) {{ $us->name }} @endif @endforeach
@if(!empty($j->experience)) {{ $j->experience }} year's @else 1 year @endif
@foreach($jobscity as $c) @if($c->city_id == $j->id) {{ $c->city }}, @endif @endforeach @foreach($jobsstate as $s) @if($s->state_id == $j->id) {{ $s->name }}, @endif @endforeach @foreach($jobscountry as $k) @if($k->job_id == $j->id) {{ $k->name }} @endif @endforeach
Last date to apply : {{ Carbon\Carbon::parse($j->closing_date)->format('d-M-Y') }} @if (Auth::check()) @php $userId = Auth::user()->id; @endphp @foreach($savedjob as $s) @if($s->job_id == $j->id && $s->user_id == $userId) Applied @endif @endforeach @endif
@endforeach {{ $premiumjobs->links() }}

Featured Jobs

@foreach($featuredjobs as $j)
@foreach($users as $k=>$us) @if($j->organisation == $us->id) @if($us->user_image) @else @endif @endif @endforeach
{{ $j->job_title }}
@foreach($users as $k=>$us) @if($j->organisation == $us->id) {{ $us->name }} @endif @endforeach
@if(!empty($j->experience)) {{ $j->experience }} year's @else 1 year @endif
@foreach($jobscity as $c) @if($c->city_id == $j->id) {{ $c->city }}, @endif @endforeach @foreach($jobsstate as $s) @if($s->state_id == $j->id) {{ $s->name }}, @endif @endforeach @foreach($jobscountry as $k) @if($k->job_id == $j->id) {{ $k->name }} @endif @endforeach
Last date to apply : {{ Carbon\Carbon::parse($j->closing_date)->format('d-M-Y') }} @if (Auth::check()) @php $userId = Auth::user()->id; @endphp @foreach($savedjob as $s) @if($s->job_id == $j->id && $s->user_id == $userId) Applied @endif @endforeach @endif
@endforeach {{ $featuredjobs->links() }}
Get regular updates in your mailbox
{{csrf_field()}}
@endsection