Quickstart: Artisan cmd

  • This command covers all the steps in a "Manual installation" (see sidebar).

  • It works for a plain Laravel 8, Jetstream or Breeze project.

  • The command will install/upgrade Livewire, Tailwind and Alpine

  • The command installs Tailwind 3

Preparations

  • Install a fresh Laravel 8 project (Jetstream or Breeze is optional)

  • Backup your project before running this command.

  • If you use git, it will exec() a git commi^t before and after installation.

Installing the package

composer require tanthammar/tall-forms

Run the installation command.

php artisan make:tall-forms-installation

Compile css & js

When installation is complete, compile your css/js

npm install && npm run dev

Summary

The artisan command alters the following files:

  • app.blade.php

  • tailwind.config.js

  • webpack.mix.js

  • app.css

  • app.js

  • views/components/pages/default.blade.php

After you installed the package. Get acquainted with the various "CreateForms->Form types".

Last updated