Customized Laravel Components
Apiato provides a refined organization for Laravel default class locations. Here, you can find the default Laravel components and their corresponding locations within Apiato.
Kernels
-
Http Kernel is moved from
app/Http
toapp/Ship/Kernels
and renamed toHttpKernel
. -
Console Kernel is moved from
app/Console
toapp/Ship/Kernels
and renamed toConsoleKernel
.
Middlewares
- Middlewares are moved from
app/Http/Middleware
toapp/Ship/Middlewares
.
Handler
- Exception Handler is moved from
app/Exceptions
toapp/Ship/Exceptions/Handlers
and renamed toExceptionsHandler
.
Providers
- For information about the new locations of Providers, please refer to this link.
Routes
Web and API
Apiato introduces a new approach to route organization and does not use the default routes/web.php
and routes/api.php
files. Therefore, you won't find these files in Apiato. To learn more, please visit this link.
Channels
- The channels.php file has been relocated from
routes
toapp/Ship/Broadcasts
.
Console
- The console.php file has been moved from
routes
toapp/Ship/Commands
and renamed toclosures.php
.