@extends('layouts.app') @section('content') @php $masterData = getMasterData(); @endphp
@include('includes.job_list_side_bar_sv',['industries'=>$industries,'segment_arr'=>$segment_arr]) @if(!empty($keywords_location) && count($keywords_location) > 0) @endif @if(!empty($industry_location) && count($industry_location) > 0) @endif @if(!empty($location_title) && count($location_title) > 0) @endif @if(!empty($location_company) && count($location_company) > 0) @endif
@if($total_count == 0)

No Jobs Found

@else
@if($total_count < $lastNumber)
{{__('joblist.showing')}} : {{ $firstNumber }} - {{ $total_count }} {{__('joblist.of')}} {{$total_count}} {{__('joblist.jobs')}}
@else
{{__('joblist.showing')}} : {{ $firstNumber }} - {{ $lastNumber }} {{__('joblist.of')}} {{$total_count}} {{__('joblist.jobs')}}
@endif
@if(isset($jobs) && count($jobs)) @foreach($jobs as $job) @if(isset($segment_arr['search']) && !empty($segment_arr['search']) && ( isset($segment_arr['city_id'])?$segment_arr['city_id']:settings('other_city_id'))) @if($loop->index%5 == 0 && $loop->index > 1)

@endif @endif
{!! getJobTitleLink($job); !!}
    @if($job->company_name)
  • via {{str_limit(strip_tags($job->company_name), 100, '...')}}
  • @endif @if(isset($job->city_id) && $job->city_id)
  • {{ getCityNameById($masterData['cityList'],$job->city_id) }}
  • @endif @if(isset($job->jobType) && $job->jobType)
  • {{$job->jobType->job_type}}
  • @endif @if (\Auth::user() && \Auth::user()->hasRole('super admin'))
  • Feed ID: {{$job->feed_id}}
  • Job ID: {{$job->_id}}
  • @endif
@if($job->description)

{{str_limit(strip_tags($job->description), 150, '...')}}

@endif
{{__('joblist.read_more')}} {!! getApplyNowLink($job); !!}
@endforeach @endif
@if(isset($jobs) && count($jobs)) @endif
@endif
@if(isset($segment_arr['search']) && !empty($segment_arr['search']) && ( isset($segment_arr['city_id'])?$segment_arr['city_id']:settings('other_city_id')))

Receive job offers before anyone else!
Create a Job Alert for {{$segment_arr['search']}}, {{ $segment_arr['city_name'] }}

By signing up, you agree to the Privacy policy and Terms and conditions of Careerwallet.


@endif @if(Request::segment(2)=='location' || Request::segment(2)=='industry' || Request::segment(2)=='keyword') @include('includes.job_list_faq',['city_names'=>$city_names,'industry_names'=>$industry_names]) @endif @endsection @section('styles') @endsection @section('script') @endsection