/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $estabelecimentos = \App\Estabelecimento::orderBy('nome')->get();
     return compact('estabelecimentos');
 }