1,467,851 questions
-1
votes
0
answers
8
views
How activate darkMode with tailwind in Laravel 12
How add darkMode : class in tailwind.config.js , it is missing in Laravel 12
0
votes
0
answers
10
views
How to avoid issues with step updates in upsertGroupedSteps caused by array reindexing when using dynamic fields? Livewire 3
I have a dynamic form fields logic in my Livewire 3 class:
public properties:
public $steps = [
['image' => null, 'text' => null],
];
public $step = ['image' => null, 'text' => null];
...
1
vote
1
answer
10
views
Add a specific category in Elementor Category Archive Template page for a Widget
In the archive page, I would like to show in a loop grid widget ONLY the posts that belong either to the displayed archive category and also to a specific category which slug is "special-one"...
0
votes
0
answers
4
views
Google Wallet: How to create generic pass object
I'm using library chiiya/passes to generate membership cards for my project. The github page has an example to create a generic object but, maybe I'm wrong, some information is missing.
$object = new ...
1
vote
0
answers
12
views
How can I dynamically display and update form fields in Symfony EasyAdmin?
I'm working on a Symfony 7 project with EasyAdmin, and I'm trying to allow users to build article pages with different types of content, such as text blocks, image blocks, blocks with links, etc. To ...
0
votes
0
answers
7
views
Unexpected Redirect to /home in Laravel Multi-Guard Auth - Route Not Working (302)
I'm facing an issue with my multi-guard authentication setup in Laravel involving impersonation. I have four guards defined: admin, distributor, customer, and user. My system allows a customer to ...
-3
votes
0
answers
19
views
PHP Code. Breadcrumb not explainable. There is the closing bracelet ? it work´s [closed]
I´ve got a code and can´t explain it to me anymore..
It´s a working code but i can´t find the closing bracelet and the breadcrumb appears magicly on my website.
It´s PHP (HyperTextPREProcessor) ;)
can ...
-2
votes
0
answers
32
views
Why does the backend not pick up parameter
app/cafsapp/src/include/users.js -
getTeachers(options = {}) {
console.log("getTeachers called with options:", options);
return new Promise((resolve) => {
if (options....
1
vote
1
answer
28
views
Display Chart.js chart(s) depending on Livewire form submission
I am trying to display one or more charts using Chart.js and Laravel Livewire. My issue is that the chart isn't displayed, even if the chart object receive data (when I console.log(chart) I can see ...
-1
votes
0
answers
8
views
How to ask a Question on Stack Overflow without getting it deleted? [migrated]
I'm new to Stack Overflow, and I'm trying to learn how to properly phrase my questions and comments. Recently, I replied to a question asking for clarification because the author had done something ...
0
votes
0
answers
41
views
Transfer Session between Javascript and PHP [closed]
Is there possible to convert Seesion data from Javascript to PHP and vice versa? Something like (I'm not sure about the input format in javascript.):
<script>
session.setAttribute("...
0
votes
0
answers
35
views
Proper way to deploy Node.js [closed]
I'm a bit confused on how I should deploy my Node.JS chat on my domain.
I currently got a website with php files which im using with mySQL, it works fine.
Now I want to implement a chatapp i built ...
-4
votes
0
answers
54
views
SPA with laravel [closed]
Is it possible to build SPA (single page application) with Laravel?
I want to build single page app that submits a form to that page, inserts a new number (into db) to the list and updates the list ...
-3
votes
0
answers
26
views
Photo gallery Page [closed]
I am creating a website for a gaming server. One of the pages on the site is a photo gallery. I've created the gallery layout in a page called PhotoGallery.php. There are 3 options. The 1st is a radio ...
0
votes
0
answers
26
views
How can be used TagsInput component to store related data using model hasmany relationship?
I have eloquent model to store specific car brand model years:
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
class CarModel ...