Reputation: 1
I have created a module to handle authentication, this module will contain Laravel Breeze package.
I tried specifying the path to the module during installation (using php artisan breeze:install "path-to-module"
) but it kept installing breeze in the main project.
How can I install it into the authentication module instead of main project?
Upvotes: -1
Views: 107
Reputation: 1
To install Breeze into a specific module directory, you can follow these steps:
composer require laravel/breeze --working-dir=path/to/module # replace path/to/module with the actual path to your authentication module directory.
Upvotes: -1