Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Ready the dependencies for use with laravel
//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