/**
  * Remove the specified resource from storage.
  *
  * @param  int $id
  * @return Response
  */
 public function openings()
 {
     $job = Job::latest('created_at')->where('created_at', '<=', Carbon::now())->where('created_at', '<=', 'closing_date')->get();
     return view('job.opening', compact('job'));
 }