Insert (Create) Operation Laravel without refresh page Using Jquery OR Javascript

Through this tutorial we will tell you today that how to save the data into database with refreshing page.

So let us explain step by step today.

1. First of all, make a blade file in which you add the code of the html below.

insert.blade.php

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>CURD Operation laravel without refresh page Using Jquery OR Javascript.</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css">
<!-- font awesome-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.1/css/all.css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<!-- bx-slider--> 
<link rel="stylesheet" href="https://cdn.jsdelivr.net/bxslider/4.2.12/jquery.bxslider.css">
<!-- google font-->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<div class="s-f-mid-sec">
<div class="container">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<div class="s-f-inner-sec">
<div class="s-f-form-sec">
<form id="myform">
<input type="hidden" name="_token" value="<?php echo csrf_token(); ?>">
<div class="form-group">
<label>1. First Name <span>*</span></label>
<input type="text" class="form-control" name="firstname" placeholder="Enter full first name of the applicant/ student">
</div>
<!-- form-group-->
<div class="form-group">
<label>2. Last Name <span>*</span></label>
<input type="text" name="secondname" class="form-control" placeholder="Enter surname of the applicant/ student">
</div>
<div class="form-group">
<label>3. Nationality <span>*</span></label>
<select class="form-control" name="nationality">
<option value="indian">Indian</option>
</select>
</div>
<!-- form-group-->
<div class="form-group">
<label>4. Address <span>*</span></label>
<textarea class="form-control" name="address" placeholder="Enter Your address"></textarea>
</div>
<button id="btn-moreqq" class="submit_btnqq class="btn">SUBMIT</button>
<p id="display_info"></p>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
</html>

2.After that, add the script code below to the blade file itself.

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$(".submit_btnqq").click('#btn-moreqq',function(e){
e.preventDefault();
var _token      = $("input[name='_token']").val();
var firstname   = $("input[name='firstname']").val();
var secondname  = $("input[name='secondname']").val();
var nationality = $("select[name='nationality']").val();
var address     = $("textarea[name='address']").val();
if (firstname == "") {
alert('First Name is Required');
} else if (secondname == "") {
alert('Last Name is Required');
} else if (nationality == "") {
alert('Nationality is Required');
} else if (address == "") {
alert('Address is Required');
} else {
$.ajax({
url: "www.website.com/savedata",
type:'POST',
data: {_token:_token, firstname:firstname, secondname:secondname, nationality:nationality, address:address},
success: function(data) {
$('#btn-moreqq').html("Register");
$('#display_info').html('Successfully Scholarship Form is Submitted.');
$("#myform")[0].reset(); 
}
});
}
}); 
});
</script>

3.Then add the following url code to your web.php file.

web.php

Route::post('savedata', 'insertcontroller@savedata');

4.And then after you create a file of a controller, add the code below.

insertcontroller.php

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Requests;
use DB;
use Redirect;
use View;
use File;
class insertcontroller extends Controller
{
public function savedata(Request $request)
{
$firstname    = $request->firstname; 
$secondname   = $request->secondname;
$nationality  = $request->nationality;
$address      = $request->address;
DB::table('blog')->insert([
'firstname'   => $firstname,
'secondname'  => $secondname,
'nationality' => $nationality,
'address'     => $address
]);
}
}
Cialis (Tadalafil) är den främsta konkurrenten till Viagra (Sildenafil) på marknaden för erektil dysfunktion. köpa Cialis i Sverige föredras av många på grund av sin längre varaktighet och anses vara det mest kostnadseffektiva varumärkesbaserade ED-läkemedlet som finns tillgängligt i Sverige. Cialis finns i två varianter: Cialis och Cialis Daily, och fyra olika doseringar: 2,5 mg, 5 mg, 10 mg och 20 mg, erbjuder Cialis också en rad olika alternativ för att passa patientens behov.