예제 #1
0
 public function training()
 {
     $trg = Training::latest('created_at')->where('created_at', '<=', Carbon::now())->where('created_at', '<=', 'closing_date')->get();
     return view('job.training', compact('trg'));
 }