Skip to content

Instantly share code, notes, and snippets.

@soarecostin
Created November 20, 2019 11:10
Show Gist options
  • Select an option

  • Save soarecostin/81ce5a3e41161ac61621e105c73c4761 to your computer and use it in GitHub Desktop.

Select an option

Save soarecostin/81ce5a3e41161ac61621e105c73c4761 to your computer and use it in GitHub Desktop.
Index method of HomeController
<?php
/**
* Show the application dashboard.
*
* @return \Illuminate\Contracts\Support\Renderable
*/
public function index()
{
$files = Storage::files('files/' . auth()->user()->id);
return view('home', compact('files'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment