An open API service indexing awesome lists of open source software.

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

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