Skip to content

Instantly share code, notes, and snippets.

@Brandonxy
Created December 11, 2017 01:44
Show Gist options
  • Save Brandonxy/92cae35faea1d31987fc53969e595b2e to your computer and use it in GitHub Desktop.
Save Brandonxy/92cae35faea1d31987fc53969e595b2e to your computer and use it in GitHub Desktop.
<?php
Route::get('/', function () {
$user = App\User::find(1); // Usaremos 1 usuario para probar
return view('welcome')->with('user', $user);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment