/**
  * Store a newly created.
  *
  * @param  CountryRequest $request
  * @return Response
  */
 public function store(CountryRequest $request)
 {
     if ($this->country->save($request->all())) {
         return redirect()->route('country.index')->with('success', 'Country saved successfully.');
     }
     return redirect('country')->with('error', 'There is some problem saving country.');
 }