/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $checklist = \App\Checklist::with('position')->get();
     return $checklist;
 }