### Installing Frontend Dependencies - NPM - Shell Source: https://github.com/cruip/laravel-tailwindcss-admin-dashboard-template/blob/main/README.md This command is necessary to install all frontend dependencies specified in the project's package.json file. These dependencies are typically required for compiling CSS (Tailwind CSS) and JavaScript assets. ```Shell npm install ``` -------------------------------- ### Starting Frontend Dev Server - NPM - Shell Source: https://github.com/cruip/laravel-tailwindcss-admin-dashboard-template/blob/main/README.md Execute this NPM script to run a development server or process that watches for changes in frontend files (like CSS or JS) and automatically recompiles them. This is useful for rapid development iteration. ```Shell npm run dev ``` -------------------------------- ### Installing Laravel Dependencies - Composer - Shell Source: https://github.com/cruip/laravel-tailwindcss-admin-dashboard-template/blob/main/README.md This command is used in the project's root directory to install all necessary PHP dependencies for the Laravel application as defined in the composer.json file. You can use either `php composer.phar install` if Composer is not globally installed, or `composer install` if it is. ```Shell php composer.phar install ``` ```Shell composer install ``` -------------------------------- ### Launching Laravel Dev Server - Artisan - Shell Source: https://github.com/cruip/laravel-tailwindcss-admin-dashboard-template/blob/main/README.md This Artisan command starts Laravel's built-in development server, allowing you to serve the application locally without configuring a web server like Apache or Nginx. It typically makes the application accessible at http://127.0.0.1:8000. ```Shell php artisan serve ``` -------------------------------- ### Running Database Migrations - Artisan - Shell Source: https://github.com/cruip/laravel-tailwindcss-admin-dashboard-template/blob/main/README.md Execute this Artisan command from the terminal within the project directory to run all pending database migrations. This sets up the required database tables and schema based on the migration files in the project. ```Shell php artisan migrate ``` -------------------------------- ### Building Frontend Assets - NPM - Shell Source: https://github.com/cruip/laravel-tailwindcss-admin-dashboard-template/blob/main/README.md Use this command to compile and minify frontend assets for production deployment. It runs the build script defined in package.json, optimizing CSS and JavaScript for performance. ```Shell npm run build ``` -------------------------------- ### Generating Test Data - Artisan - Shell Source: https://github.com/cruip/laravel-tailwindcss-admin-dashboard-template/blob/main/README.md Run this Artisan command to execute the database seeders. This populates the database with predefined test data, useful for development and demonstration purposes. Be aware that running this command multiple times without truncating tables will duplicate data. ```Shell php artisan db:seed ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.