takielias / tablar

Tablar: A Laravel Dashboard Preset Based on Tabler HTML Template + Vite. https://tablar.ebuz.xyz/docs
https://tablar.ebuz.xyz
MIT License
272 stars 33 forks source link

Problem with fresh installation of Laravel 11 #64

Closed pepo-ec closed 2 months ago

pepo-ec commented 2 months ago

Hello. I have followed the steps to install "Tablar" in a fresh installation of Laravel-11 but when I enter the "Login" or "Register" menus I get errors:

Login: Call to undefined method App\Http\Controllers\Auth\LoginController::middleware()

Register: Call to undefined method App\Http\Controllers\Auth\RegisterController::middleware()

Please, is it a bug in "Tablar" or is there some step I'm skipping?

takielias commented 2 months ago

@pepo-ec Could you please replace your controller.php with the following code?


namespace App\Http\Controllers;

abstract class Controller extends \Illuminate\Routing\Controller
{
    //
}
pepo-ec commented 2 months ago

Yes. I change to:

namespace App\Http\Controllers;

/* abstract class Controller */
abstract class Controller extends \Illuminate\Routing\Controller
{
    //
}

And now it works. Thank you!