Hi @tluanga,
Your 'DeliveryServiceProvider' has been successfully registered. Just check with the routes on line number 22 and 23.
public function boot()
{
$this->loadRoutesFrom(__DIR__ . '/../Http/routes.php');
$this->loadViewsFrom(__DIR__ . '/../Resources/views', 'delivery');
}
OR
public function boot()
{
include __DIR__ . '/../Http/routes.php';
$this->loadViewsFrom(__DIR__ . '/../Resources/views', 'delivery');
}
After that hit 'localhost/Lushai/public/delivery' or just add 'dd('test')' on your 'routes.php' to check if your route file is hiting or not.
If you see same 'test' message on the page again. Then, your route file also successfully registered. Just check with the route names or caches.