<?php if($position) { $jobs = Job::where('title', 'LIKE', '%' . $position . '%'); $jobs->where('status', '<', 2); if($location) { $jobs->whereMetaIn("location", (array)$location); } if ($employment) { $jobs->withAnyTag($employment); } if ($jobs->get()->count()) { $jobsBy = "position"; } } // if no jobs by position, try with location... if($location && !$jobsBy) { $jobs = Job::whereMetaIn('location', (array)$location); $jobs->where('status', '<', 2); if($employment) { $jobs->withAnyTag($employment); } if ($jobs->get()->count()) { $jobsBy = "location"; } }
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`