Created
November 20, 2019 11:10
-
-
Save soarecostin/81ce5a3e41161ac61621e105c73c4761 to your computer and use it in GitHub Desktop.
Index method of HomeController
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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