Skip to content

Instantly share code, notes, and snippets.

@dadamssg
Created October 18, 2013 03:28
Show Gist options
  • Save dadamssg/7036086 to your computer and use it in GitHub Desktop.
Save dadamssg/7036086 to your computer and use it in GitHub Desktop.
<?php
//change this
Route::get('/blog', function()
{
Route::get( 'blog', 'BlogController@index' );
});
//to this
Route::get( 'blog', 'BlogController@index' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment