Laravel snippets

The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

routes/web.php

Add extra routes (e.g. dev.php) if the route file exists.

if (file_exists($rpath = base_path('routes').'/dev.php')) {
    Route::group(['prefix' => 'dev'],function() use ($rpath) {
        include_once($rpath);
    });
}