https://github.com/blockpc/multi-step-form-students
Simple multi step form for students table
https://github.com/blockpc/multi-step-form-students
Last synced: about 1 month ago
JSON representation
Simple multi step form for students table
- Host: GitHub
- URL: https://github.com/blockpc/multi-step-form-students
- Owner: blockpc
- Created: 2021-10-08T18:40:07.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-08T22:31:00.000Z (over 4 years ago)
- Last Synced: 2025-02-25T19:47:00.093Z (over 1 year ago)
- Language: PHP
- Size: 670 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Laravel Multi Step Form
Simple multi step form for students table
– Creating Database & Model
`php artisan make:model Students -m`
`php artisan migrate`
– Make registration page
install tailwind from [here](https://tailwindcss.com/docs/guides/laravel)
add route to register form.
– Install Livewire in laravel project
Install livewire from [here](https://laravel-livewire.com/docs/2.x/quickstart)
– Creating livewire component
`php artisan make:livewire MultiStepForm`
– Create register form
– Define form properties
– Split register form into steps
– Validate multi step form
– Saving data into database
– Create thank you page
– Ending point