Skip to content

Instantly share code, notes, and snippets.

@milon
Created February 16, 2016 01:34
Show Gist options
  • Select an option

  • Save milon/71894ae3390ad2375f28 to your computer and use it in GitHub Desktop.

Select an option

Save milon/71894ae3390ad2375f28 to your computer and use it in GitHub Desktop.
Laravel Route Example
<?php
Route::get('/', function() {
return 'Hello World';
});
Route::get('/login', 'AuthController@loginForm');
Route::post('/login', 'AuthController@postLogin');
Route::delete('/logout', 'AuthController@logout');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment