Commands

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.

Install

This command is utilized to internally install the extension within your application.

php artisan admin:install

Make Administration User

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.

Make Controller

Creates a resource controller for the extension application.

php artisan admin:controller

Parameters:

  • [name] - Name of the generated controller.