Replies: 6 comments 8 replies
-
There is a saying in marketing: "Don't make it better, make it different!" |
Beta Was this translation helpful? Give feedback.
-
IMO the design introduced in Laravel 11 is great for the folks who are sticking close to the framework and only adding capabilities (installing new packages, adding new middleware, etc.). It's not so great if you're making customizations to the default install (removing unused config, removing unused components, changing the default middleware stack for web, etc.) and the more you try to customize the quicker it feels like the solution is to move back toward the Laravel 10 scaffolding and own the full configuration and own your kernels. The application builder just feels too opinionated for anything more complex than the "clone a starter kit and get going" approach. |
Beta Was this translation helpful? Give feedback.
-
@bhojkamal You made us courious and we started creating a laravel 12 from scratch for our free crud lib suite. First big question: // RouteServiceProviders
public function boot(): void
{
$this->routes(function () {
Route::middleware('api')
->prefix('api')
->group(base_path('routes/api.php'));
Route::middleware('api')
->prefix('api-decorated')
->group(base_path('routes/api-decorated.php')); // how to register this?
Route::middleware('web')->prefix('laravel-lumen-crud-wizard')
->group(base_path('routes/web.php'));
});
} //app.php
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
web: __DIR__.'/../routes/web.php',
api: __DIR__.'/../routes/api.php',
commands: __DIR__.'/../routes/console.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware) {
//
})
->withExceptions(function (Exceptions $exceptions) {
//
})->create(); |
Beta Was this translation helpful? Give feedback.
-
I need to apply IdentifyTenant::class middleware to the api files totally. better with domian to config('config.domain.api') too. |
Beta Was this translation helpful? Give feedback.
-
The laravel should have options to apply middleware to specific route files too.
|
Beta Was this translation helpful? Give feedback.
-
@bhojkamal Here is the beautiful documentation for it. And if it is now working on your end then you need to clear the cache. |
Beta Was this translation helpful? Give feedback.
-
In Laravel 11 and 12, making routes custom files and applying middleware, add domain to route files is difficult; may be it is possible for some or few developers, However, I am also senior developer working on Laravel for 4 years and php for 7 years. I am trying to add middleware to just api or just api.php for few day, but I could not apply the custom middleware to routes files and also applying the domain to particular route file. It was quite easy in laravel 8, 9 or 10. Are you making laravel framework harder for such customizing or adding such bit thing, I could not understand.
I tried to apply ItendifyTenant class to api.php files. but it was not succeed.
Beta Was this translation helpful? Give feedback.
All reactions