To streamline the development process of your extension app, a series of helpful commands are available. These commands are designed to assist in various aspects of extension development, from installation to user and controller generation.
This command is utilized to internally install the extension within your application.
php artisan admin:install
Generates a new user for the extension.
php artisan admin:user
Parameters:
[email]
- Email address of the generated user.[name]
- Name of the generated user.Creates a resource controller for the extension application.
php artisan admin:controller
Parameters:
[name]
- Name of the generated controller.