Ready the dependencies for use with laravel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Run this command in the root directory of the project installed using composer | |
//This command adds ui scaffoldings for the application | |
php artisan ui bootstrap | |
//This commands sets up the ui to use bootstrap for authentication | |
php artisan ui bootstrap --auth | |
//This commands install node dependencies and compiles frontend assets for laravel default auth functionalities | |
npm install && npm run dev | |
//This command installs telescope module into laravel to ready it for its functions | |
php artisan telescope:install | |
//This command publishes frontend/ui assets to the public folder for ui rendering. | |
php artisan telescope:publish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment