/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $datas = Model::all();
     return view($this->viewDir . 'all', compact('datas'));
 }