Using custom HTTP controllers

Use your own controllers instead of the Laravel Admin Panel controllers

You can use your own Controller, extending the Laravel Admin Panel's Controllers. To do this, first determine the controller namespace in config/admin.php:

    'controllers' => [
        'namespace' => 'App\\Http\\Controllers\\LaravelAdminPanel',
    ],

then run php artisan admin:controllers, the admin panel will now use the child controllers that will be created in App/Http/Controllers/Admin


What’s Next