Insert Or Create Record Using Livewire | Crud Livewire
Today we are going to see how we can use livewire to create a record, A simple livewire creates action.
We gonna use the livewire I have created a dummy project. Let's go together.
Install lara...
Gurpreet Kait
Author
Today we are going to see how we can use livewire to create a record, A simple livewire creates action.
We gonna use the livewire I have created a dummy project. Let's go together.
Install laravel and Livewire and set the basic layout
First, we need to install Laravel composer create-project laravel/laravel create-livewire and then we can install Livewire composer require livewire/livewire because now we are using Livewire I'm gonna create an unstyled form just gonna use name,email,password and submit button.
Create Livewire Component
Now we have to create a livewire component to make sure that we are able to save data into db. But first of all we need to run php artisan migrate command which will create laravel predefined tables into your db that you have mentioned in .env file. If not please first make sure you have added credentials to the .env file.
I have created public properties that represent the form wire:model property. This way you can get the elements data direct into your class, livewire handles this all under the hood.
We have seen wire:model above but now the wire:submit handles the form submit action which is the calling save() method. It's straightforward to use. I hope it will help you.
Make sure you include @livewireStyles and @livewireScripts tags accordingly it will load inbuilt styles and scripts for livewire. This way you can achieve the final output and endup saving records in db.