Skip to content

Instantly share code, notes, and snippets.

@jackley
jackley / Laravel Routers
Created June 11, 2013 14:43
Laravel Routers
Route::get( 'admin', function()
{
return Redirect::to('admin/dashboard');
});
Route::any( 'login/(:all?)', 'auth@login' );
Route::get( '/projects', 'home@projects' );
Route::filter('pattern: admin/*', 'auth');
@jackley
jackley / PHP INI
Created June 11, 2013 14:30
PHP INI SETS
error_reporting(0);
ini_set("SMTP", "00.00.00.00");
ini_set('display_errors', '0');