/**
  * Show the form for creating a new resource.
  *
  * @param  App\Repositories\CountryRepository $countryRepository
  * @return Response
  */
 public function create(CountryRepository $countryRepository)
 {
     $countries = $countryRepository->getAllSelect();
     return view($this->base . '.create', compact('countries'));
 }