/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $titles = Job::All();
     return view('backend.setup.job.index', compact('titles'));
 }