Laravel Toggle Switch Inside Bootstrap Ajax Example – Technology

Laravel Toggle Switch Inside Bootstrap Ajax Example – Technology

In this post we will give you information about Laravel Toggle Switch Inside Bootstrap Ajax Example – Technology. Hear we will give you detail about Laravel Toggle Switch Inside Bootstrap Ajax Example – TechnologyAnd how to use it also give you demo for it if it is necessary.

Today, We want to share with you Laravel Toggle Switch Inside Bootstrap Ajax Example from scratch.In this post we will show you Toggle Switches using Laravel Ajax and jQuery, hear for Bootstrap switch toggle in Laravel 5.7 example from scratch we will give you demo and example for implement.In this post, we will learn about Laravel Manage data using switch/toggle button on html with an example.

Laravel Toggle Switch Inside Bootstrap Ajax Example from scratch

There are the Following The simple About Laravel Toggle Switch Inside Bootstrap Ajax Example from scratch Full Information With Example and source code.

Another must read:  PHP LinkedIn Authentication AccessToken – LinkedIn OAuth 2.0

As I will cover this Post with live Working example to develop How to Create a Toggle Switch using Laravel 5.7, so the Laravel Flip Toggle Switch for this example is following below.

Step 1: Laravel Blade View Files

<div >
  <input id="switch-primary-{{$comments->id}}" value="{{$products->id}}" name="toggle" type="checkbox" {{ $products->product_status === 1 ? 'checked' : '' }}>

  <label for="switch-primary-{{$products->id}}" ></label>
  </div>
 

Step 2: JavaScript Source Code

 
 $('input[name=toggle]').change(function(){
    var mode= $(this).prop('checked');
    var id=$( this ).val();

        var productObj = {};
        productObj.mode = $(this).prop('checked');
        productObj.comment_id = $( this ).val();
        productObj._token = '{{csrf_token()}}';

    $.ajax({
      type:"POST",
      dataType:"JSON",
      url:"{{ url('/updateProductStatus') }}",
      data:productObj,
      success:function(data)
      {
      }
    });
  });  
 

Step 3: Laravel Define a Route

List of all Google Adsense, VueJS, AngularJS, PHP, Laravel Examples.

route/web.php

Route::post ( '/updateProductStatus', '[email protected]' ); 

Step 4: Laravel Create a Controller

 
app/Http/Controllers/ProductsController.php 
  
 public function updateProductStatus(Request $request)
{
  //dd($request->mode);
  if($request->mode == "true")
  {
    $affected_products = DB::table('products')->where('id', '=', $request->comment_id)->update(array('product_status' => 1));
  }
  else
  {
     $affected_products = DB::table('products')->where('id', '=', $request->comment_id)->update(array('product_status' => 0));
  }
}

Step 5: Custom Add Css using material

Here Simple Toggle Button material CSS DemoCreate Stylish Toggles Checkboxes & Use in Form with Laravel jQuery Ajax

Another must read:  Class HTML not found laravel
<style type="text/css">
.material-switch > input[type="checkbox"] {
  display: none;
}

.material-switch > label {
  cursor: pointer;
  height: 0px;
  position: relative;
  top: 2px;
  width: 40px;
}

.material-switch > label::before {
  background: rgb(0, 0, 0);
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  content: '';
  height: 16px;
  margin-top: -8px;
  position: absolute;
  opacity: 0.3;
  transition: all 0.4s ease-in-out;
  width: 40px;
}

.material-switch > label::after {
  background: rgb(255, 255, 255);
  border-radius: 16px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  content: '';
  height: 24px;
  left: -4px;
  margin-top: -8px;
  position: absolute;
  top: -4px;
  transition: all 0.3s ease-in-out;
  width: 24px;
}

.material-switch > input[type="checkbox"]:checked + label::before {
  background: inherit;
  opacity: 0.5;
}

.material-switch > input[type="checkbox"]:checked + label::after {
  background: inherit;
  left: 20px;
}

</style>
Angular 6 CRUD Operations Application Tutorials

Read :

Another must read:  Vuejs check if Element Exists Example

Summary

You can also read about AngularJS, ASP.NET, VueJs, PHP.

I hope you get an idea about Laravel Toggle Switch Inside Bootstrap Ajax Example from scratch.
I would like to have feedback on my onlinecode blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Hope this code and post will helped you for implement Laravel Toggle Switch Inside Bootstrap Ajax Example – Technology. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

Leave a Comment

Your email address will not be published. Required fields are marked *

  +  21  =  25

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US