All Questions
55 questions
1
vote
1
answer
102
views
How to Display Item Quantity Based on Product Selection in Laravel 11?
How to display the quantity of items from the 'item_amount' column when a product name is selected from the 'item_name' selector in Laravel 11, based on the data in the database?
Database
id
item_code
...
0
votes
0
answers
38
views
Generate PDF and append into database [duplicate]
The issue I encounter is that when I try to upload it as blob into the database. The blob generated in the database seems not working (just some C::location data instead of the PDF content).Hence, I ...
0
votes
0
answers
200
views
Gantt chart with parent-child structure with dhtmlxgantt-with-laravel
<div id="gantt-chart" style="width: 100%; height: 500px;"></div>
@vite('node_modules/dhtmlx-gantt/codebase/sources/dhtmlxgantt.css')
<script src="{{Vite::asset('...
0
votes
0
answers
185
views
Laravel 9 website Form data not saving to database and getting server error 500
I have Laravel website, then there have form for passing data to database. But while fill the form and trying to submit the data, I getting server error 500. So after I enable debug value as a 'true'. ...
1
vote
0
answers
85
views
Array to string conversion error - Angular and Laravel
I'm submitting a contact form using Angular and Laravel. In the form, there is some checkboxes. User can select multiple options (services) and the request will go to Laravel controller through API. ...
1
vote
1
answer
102
views
Displaying the array from the controller as a table in the view
In the controller, I receive the data from the database and then I assign the relevant list to the function that will run all the functions in this controller. This list returns to view here I will ...
0
votes
3
answers
236
views
vlaue of checkbox to database in vue laravel
i have this input:
<div class="d-flex justify-content-between align-items-center">
<label for="patymentTerms">Payment Terms</label>
<b-form-checkbox id="...
0
votes
2
answers
45
views
a problem is sending data to database with ajax and laravel
i m trying to build a sortable drag and drop list and the order must change everytime i drop the element in the his new area
i m using ajax and laravel but when i drop the element i got the following ...
0
votes
2
answers
221
views
How can I create a destroy function to delete from database and if its saved change color of button
How can I create a destroy function to delete from the database, and if it is saved in the database, the color of the button changes to red, otherwise green. My form stores data correctly, but I can ...
0
votes
0
answers
132
views
How to save multiple checkbox Label Text into database in Laravel
I'm trying to save multiple Label Text of Checkboxes.
First, I'm saving chechbox value in a column of database table. But other than that, I have to save Label of each those checkbox checked in ...
1
vote
1
answer
365
views
I want to check the value of the input field in the database and put the text of the second column of this value to another field using laravel
I want to check the value of the input field in the database and put the text of the second column of this value to another field using laravel.
html code
<input type="text" name=&...
1
vote
0
answers
208
views
Retrieve data from database to view in laravel 8
Hi every one my problem is, I try to retrieve data from database and wanna show them on view but I get some problem because the data that I retrieved it from two tables the tables has one to one ...
0
votes
1
answer
39
views
remove character on database
i'm trying to submit longtext value with laravel and JS.I've tried to create a text value who is send to my phpmyadmin but when i store my text backslash appear in my text.
var text;
var val;
...
0
votes
0
answers
51
views
MYSQL filter for 200 Fields/Columns
I am tasked by a client (A mortgage/real estate company) to make a form that inserts over 200 fields in the database. I have done that by heavily normalizing the database for this form and I currently ...
-1
votes
1
answer
73
views
why value is not being inserted into table
$(document).ready(function(){
$("#first_form").submit(feedtable);
function feedtable(e){
e.preventDefault();
var task = $("#fname").val(),
male = $("input[type='...