Create variations for ecommerce using laravel and javascript

  <!-- create variations start --> <input type="hidden" name="select_attributes" id="select_attributes" /> <div class="dropdown"> <input type="text" name="" class="tf-button dropdown-toggle" type="button" id="multiSelectDropdown" data-bs-toggle="dropdown" aria-expanded="false" placeholder="Select" id="" /> <!-- </button> --> <ul class="dropdown-menu"…

0 Comments

Comment form reply using laravel ajax

  <script> $(document).ready(function(){ // $('#replyid{{ $comment->user->id }}').click(function(){ $('.child_cmnt2').click(function(){ let uname = $(this).attr('uname'); let parentCommentid = $(this).attr('parentCommentid'); // alert(parentCommentid); let addclass = 'addclass'+parentCommentid; let addID = '#addclass'+parentCommentid; let targetclass = '.comment-box'+parentCommentid;…

0 Comments

SMS api using php laravel

Your customers are craving a personalized experience. Add value to their journey in the most reliable way possible. Land SMS in customers’ inbox within seconds! Win them over with Sinch…

0 Comments

Logout link in laravel

  <a href="{{ route('logout') }}" onclick="event.preventDefault(); document.getElementById('logout-form').submit();"> Logout </a> <form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;"> {{ csrf_field() }} </form>    

0 Comments