Laravel 3 : Looking for explanation how to use the model

The best statement on the subject of Frameworks I’ve heard is due to Uncle Bob: A good Architecture allows major decisions to be deferred! Specifically: A good Architecture delays choosing a Framework! Another great piece to think about: MVC is not an Architecture! It is a Delivery Design Pattern. Watch his video – it is … Read more

Laravel – Using (:any?) wildcard for ALL routes?

Laravel 5 This solution works fine on Laravel 5: Route::get(‘/admin’, function () { // url /admin }); Route::get(‘/{any}’, function ($any) { // any other url, subfolders also })->where(‘any’, ‘.*’); Lumen 5 This is for Lumen instead: $app->get(‘/admin’, function () use ($app) { // }); $app->get(‘/{any:.*}’, function ($any) use ($app) { // });

tech