Exemplo n.º 1
0
 public function allJobPost()
 {
     try {
         $current_date = date('Y-m-d');
         return CompanyJob::with('job_locations', 'job_skills', 'job_skills.skill', 'company')->where('post_status', '=', 'published')->where('end_date', '>=', $current_date)->get()->toArray();
     } catch (Exception $e) {
         return Response::json(['error' => $e->getMessage()]);
     }
 }