Laravel 6 ajax form submit with Jquery validation example
Today, we will discuss form validation of jquery with ajax submit form handler in laravel 6. when the user submitted the form at that time required for input field validation. there are two types of validation, first is server-side and second is client-side. see below example of jquery validation (client-side).
In this example, we will make the jquery form validation in laravel 6. so you can follow the below step.
Overview
Step 1: Install Laravel
Step 2: Setting Database Configuration
Step 3: Create Table using migration
Step 4: Create Route
Step 5: Create a Model and Controller
Step 6: Create Blade Files
Step 7: Run The Application
Step 1: Install Laravel
We are going to install laravel 6, so first open the command prompt or terminal and go to go to xampp htdocs folder directory using the command prompt. after then run the below command.
1 | composer create-project --prefer-dist laravel/laravel larave6_form_validation |
Step 2: Setting Database Configuration
After the complete installation of laravel. we have to database configuration. now we will open the .env file and change the database name, username, password in the .env file. See below changes in a .env file.
1 2 3 4 5 6 | DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=Enter_Your_Database_Name(larave6_form_validation) DB_USERNAME=Enter_Your_Database_Username(root) DB_PASSWORD=Enter_Your_Database_Password(root) |
Step 3: Create Table using migration
Now, We need to create a migration. so we will below command using create the students table migration.
1 | php artisan make:migration create_students_table --create=students |
After complete migration. we need below changes in the database/migrations/create_students_table file.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateStudentsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('students', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('first_name'); $table->string('last_name'); $table->string('email'); $table->string('mobile'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('students'); } } ?> |
Run the below command. after the changes above file.
1 | php artisan migrate |
Step 4: Create Route
Add the following route code in the “routes/web.php” file.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ Route::get('student', 'StudentController@index'); Route::post('student', 'StudentController@save')->name('student.save'); ?> |
Step 5: Create a Model and Controller
Here below command help to create the controller and model.
1 | php artisan make:controller StudentController --resource --model=Student |
Student.php
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?php namespace App; use Illuminate\Database\Eloquent\Model; class Student extends Model { protected $fillable = [ 'first_name', 'last_name', 'email', 'mobile' ]; } ?> |
StudentController.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | <?php namespace App\Http\Controllers; use Illuminate\Http\Request; use Validator,Redirect,Response,File; use App\Student; class StudentController extends Controller { /** * Show the application dashboard. * * @return \Illuminate\Http\Response */ public function index() { return view('student'); } /** * Show the application dashboard. * * @return \Illuminate\Http\Response */ public function save(Request $request) { $student = new Student([ 'first_name' => $request->post('txtFirstName'), 'last_name'=> $request->post('txtLastName'), 'last_name'=> $request->post('txtLastName'), 'email'=> $request->post('txtEmail'), 'mobile'=> $request->post('txtMobile') ]); if($student->save()) { return Response()->json(["success" => true,"data"=>$student]); }else{ return Response()->json(["success" => false]); } } } ?> |
Step 6: Create Blade Files
So finally, first we will create the student.blade.php files in “resources/ views/student/” directory.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | <!DOCTYPE html> <html lang="en"> <head> <title>Laravel 6 ajax form submit with Jquery validation example - XpertPhp</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.microsoft.com/ajax/jQuery.Validate/1.6/jQuery.Validate.min.js"></script> <script> <!-- jQuery Form Validation code --> $(function() { $("#frmAdd").validate({ rules: { txtFname: { required: true, lettersonly: true }, txtLname:{ required:true }, txtEmail: { required: true, email: true }, txtMobile:{ required: true, number :true, minlength:10, maxlength:10 } }, // Specify the validation error messages messages: { txtFname: { required: "this field required" }, txtLname:{ required:'this field required' }, txtEmail: { required: 'this field required' }, txtMobile:{ required: 'this field required' } }, submitHandler: function(form) { var fomr = $('form')[0]; var form_action = $("form").attr("action"); var formData = new FormData(fomr); $.ajax({ type: 'POST', url: form_action, data:formData, cache:false, contentType: false, processData: false, success: function(data) { if(data==true) { alert("Data has been save successfully"); } } }); return false; } }); }); </script> </script> </head> <body> <div class="container"> <form method="post" name="frmAdd" id="frmAdd" action="{{ route('student.save') }}"> @csrf <div class="form-group"> <label for="txtFname">First Name:</label> <input type="text" name="txtFname" class="form-control" id="txtFname" value=""> </div> <div class="form-group"> <label for="txtLname">Last Name:</label> <input type="text" name="txtLname" class="form-control" id="txtLname" value=""> </div> <div class="form-group"> <label for="txtAddress">Address:</label> <textarea type="text" name="txtAddress" class="form-control" id="txtAddress" value=""></textarea> </div> <div class="form-group"> <label for="txtEmail">Email:</label> <input type="text" name="txtEmail" class="form-control" id="txtEmail" value=""> </div> <div class="form-group"> <label for="txtMobile">Mobile:</label> <input type="text" name="txtMobile" class="form-control" id="txtMobile" value=""> </div> <button type="submit" class="btn btn-default">Submit</button> </form> </div> </body> </html> |
Step 7: Run The Application
So finally, first we will create the image.blade.php files in “resources/ views/student/” directory.
1 | php artisan serve |
Now we will run our example using the below Url in the browser.
1 | http://127.0.0.1:8000/student |
Read Also Posts
Laravel 6 Ajax Image Upload example tutorial
Laravel 6 Pagination Example Tutorial
Laravel 6 pdf generator tutorial using dompdf