middleware(['auth','verified']); } /** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index() { return view('home'); } public function downloadArquivo(Request $request){ return response()->download(storage_path('app/'.$request->file)); } }