Skip to content

Instantly share code, notes, and snippets.

@EmmanuelObua
Last active May 27, 2021 10:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EmmanuelObua/f5b57ce4d682ba31253cca9d125c4665 to your computer and use it in GitHub Desktop.
Save EmmanuelObua/f5b57ce4d682ba31253cca9d125c4665 to your computer and use it in GitHub Desktop.
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