Skip to content

Instantly share code, notes, and snippets.

@KunalGautam
Last active February 20, 2017 17:44
Show Gist options
  • Save KunalGautam/3991855383b067466f27064ae3fab95a to your computer and use it in GitHub Desktop.
Save KunalGautam/3991855383b067466f27064ae3fab95a to your computer and use it in GitHub Desktop.
class UsersController extends Controller
{
public function list(){
$users = [
'0' => [
'fname' => 'Kunal',
'lname' => 'Gautam',
'location' => 'India'
],
'1' => [
'fname' => 'Anurag',
'lname' => 'Upadhaya',
'location' => 'USA'
],
];
return view('users' compact('users));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment