Skip to content

Instantly share code, notes, and snippets.

@jtallant
Created April 13, 2016 16:21
Show Gist options
  • Save jtallant/106955e38a0b5cc8e41272030d571b6d to your computer and use it in GitHub Desktop.
Save jtallant/106955e38a0b5cc8e41272030d571b6d to your computer and use it in GitHub Desktop.
route-anonymous-function
<?php
Route::get('projects/messages', function() {
$data = [
'messages' => [
'title' => 'Sidebar is cut off',
'author' => ['name' => 'John Doe', 'email' => 'foo@example.com']
]
];
return view('projects.messages', $data); # views/projects/messages.twig
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment