/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $regiuni = Regiuni::paginate(15);
     return view('backend/geografie.regiuni.index', compact('regiuni'));
 }