3v4l.org

run code in 300+ PHP versions simultaneously
<?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"; } }

This is an error 500

Value for `_results` contains invalid data `array`


preferences:
137.33 ms | 2112 KiB | 8 Q