The dashboard login was failing with "Method Not Allowed" error because Cachet's service providers were not properly registered in Laravel 11's bootstrap/providers.php file. This caused Filament authentication routes to not be loaded, resulting in only GET routes being available for login. This commit adds the missing CachetCoreServiceProvider and CachetDashboardServiceProvider to the providers array, which resolves the login functionality and ensures all Filament routes are properly registered. Fixes #4533
17 lines
366 B
PHP
17 lines
366 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
return [
|
|
App\Providers\AppServiceProvider::class,
|
|
Cachet\CachetCoreServiceProvider::class,
|
|
Cachet\CachetDashboardServiceProvider::class,
|
|
];
|