skip to Main Content

Store tag input values in a single column into database using Laravel8 – Jquery ajax

I Have the following form with a tag input. <form id="filialeform" action="filiales" enctype="multipart/form-data"> {{ csrf_field() }} <input type="hidden" id="id_hidden" name="id" /> <div class="form-group"> <label>Filiale</label> <input type="text" class="form-control" name="filiale" id="filiale" placeholder="Filiale"> </div> <div class="form-group"> <label>Adm_Email</label> <input data-role="tagsinput" type="text" name="adm_email" id="adm_email"> </div>…

VIEW QUESTION

Send string data with jQuery AJAX

I am working on a web project for the university, so I am dealing with AJAX for the first time. Basically, I would like to create a platform for restaurant employees to manage orders, tables, reservations, and so on. This…

VIEW QUESTION

GET http://localhost:8000/= 404 (Not Found) using Laravel/ajax – Jquery ajax

Ihave the following code which displays the notifications : <div class="position-relative d-inline-block"> <button class="header-icon btn btn-empty" type="button" id="notificationButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="simple-icon-bell"></i> <span class="count">{{$contrats_expires_count}}</span> </button> <div class="dropdown-menu dropdown-menu-right mt-3 position-absolute abc" id="notificationDropdown"> @foreach($contrats_expires as $contrats_expires) <a href="{{ route('getcontrat', $contrats_expires->id_contrat)…

VIEW QUESTION
Back To Top
Search