Browse AI Field GuideForum Podcast
All ThreadsLeaderboard
  1. Discussions

    1. Popular This Week
    2. Popular All Time
    3. Solved
    4. Unsolved
    5. No Replies Yet

abinash889's avatar

I built a free queue debugging dashboard for Laravel — no Redis needed

Hey everyone, I got tired of debugging Laravel database queues blind — no visibility, just raw SQL queries and crossed fingers. Horizon is great but requires Redis, which isn't always an option on shared hosting or smaller projects. So I built a lightweight alternative. What it does Lightweight Queue Inspector gives you a debugging dashboard for Laravel apps using the database

abinash889's avatar
abinash889's avatar abinash8892mos agoLaravel
0
1
Chron's avatar

RateLimiting in Tests

Currently, I'm just using a simple request in a for loop to trigger 429. Is there a "cleaner" way to do the test?

Chron's avatar
Chron's avatar Sergiu172mos agoLaravel
2
1
Last reply by Sergiu17 2mos ago
davy_yg's avatar

I wonder why I didn't receive any email

My Codes are the following: views/admin/contact.blade.php @extends('layout.master') @section('content') @if($message = Session::get('flash')) <div class="alert alert-success"> {{ $message }} </div> @endif @if($errors->any()) @foreach($errors->all() as $error) <div class="alert alert-danger">

davy_yg's avatar
davy_yg's avatar Jsanwo642mos agoCode Review
5
12
Last reply by Jsanwo64 2mos ago
Developer654079525's avatar

Link storage

If a CMS stores raw HTML, and some anchor links, or their parts (not many but a few of them) might change in the future, what is the preferred approach to store such links? Use some made up syntax/templating like {:something1}, {:something2} and then regex replace these in the future? Currently I keep the hard coded full URLs and replace parts where they change in the future.

Developer654079525's avatar
Developer654079525's avatar vincent150...2mos agoLaravel
4
17
Last reply by vincent15000 2mos ago
arrrssssss's avatar

Delete with inertia2, wayfinder, vue

Hi community, I want to delete a record via inertia2 Form component, and wayfinder controller, but I get stuck here in some forms like this we have <script setup> import { Form } from '@inertiajs/vue3' import { store } from 'App/Http/Controllers/UserController' </script> <template> <Form v-bind="store().form" v-slot="{ errors, proces

arrrssssss's avatar
arrrssssss's avatar M1chael302mos agoInertia
1
1
Last reply by M1chael30 2mos ago
lukgol26's avatar

Page is broken on mobile.

As in title. https://imgur.com/a/XhPybpo

lukgol26's avatar
lukgol26's avatar steks892mos agoFeedback
5
1
Last reply by steks89 2mos ago
juanborras's avatar

FilamentPHP. Laravel Cloud or Forge?

Dear all, I have to deploy a filament php and I have to choose between laravel cloud and forge. Anyone has any experience? Thanks in advance!

juanborras's avatar
juanborras's avatar LaryAI2mos agoFilament
1
2
Last reply by LaryAI 2mos ago
M1chael30's avatar

New to Laravel

Share me some tips to improve my coding in Laravel.

M1chael30's avatar
M1chael30's avatar kupce2mos agoLaravel
7
4
Last reply by kupce 2mos ago
jwhoami's avatar

How to format currency in laravel

Hi, In my .env, my locale is set as APP_LOCALE=es However, when I format the currency, I get the following 8,00 US$ when I set the locale to 'us', I get the following $ 8.00 How can I maintain my locale as es and format the number in us format Thanks

jwhoami's avatar
jwhoami's avatar martinbean2mos agoLaravel
8
2
Last reply by martinbean 2mos ago
adamnet's avatar

Parse XML data into model

Hello everyone. Hello everyone. Does anyone have practical knowledge on how to import xml data into a database? Any example/instructions would be valuable.

adamnet's avatar
adamnet's avatar jlrdw2mos agoLaravel
5
1
Last reply by jlrdw 2mos ago
Nuno_O's avatar

Read values from one OPC UA server, in Laravel

Hello. It is possible to read values from one OPC UA server, in Laravel? Thank you.

Nuno_O's avatar
Nuno_O's avatar GianfriAur2mos agoLaravel
1
1
Last reply by GianfriAur 2mos ago
oliverbusk's avatar

Vite manifest not found - deployment on Forge

I am trying to deploy a brand new Laravel 9 site with Vite. I have the site running locally just fine, and the deployment is running via Laravel forge using the default deployment script: cd /home/forge/default git pull origin $FORGE_SITE_BRANCH $FORGE_COMPOSER install --no-interaction --prefer-dist --optimize-autoloader ( flock -w 10 9 || exit 1 echo 'Restarting FPM...';

oliverbusk's avatar
oliverbusk's avatar stuartcusa...2mos agoForge
16
4
Last reply by stuartcusack 2mos ago
TimeSocks's avatar

Defining a table's relationship ... to itself

I have an Events table containing event information, and I want to show a list of related events. I have a table consisting of the Event Ids and a 'Related' Id, which is of course simply the Id of another event. Each event can have many related events. I am going around in circles trying to work out how to relate them though. How can I do it?

TimeSocks's avatar
TimeSocks's avatar martinbean2mos agoEloquent
23
6
Last reply by martinbean 2mos ago
kupce's avatar

Organising Custom UI Components

What is the recommended approach to maintain custom built UI components and be able to show available UI components to the designer to build/ improve a page upon those available resources? What are your approaches ? Currently all features/component I construct from top of my head, non visual. I just find them in the app. ( Non scalable ) I am thinking of building a visual rep

kupce's avatar
kupce's avatar kupce2mos agoDesign
8
19
Last reply by kupce 2mos ago
djallits's avatar

Microseconds with Laravel's Timestamp

PHP 5.6.10 check! MYSQL 5.6.19 check! LARAVEL 5.1.7 check! Timestamps with precision FAIL I know it has been asked before, but I have yet to see any one say it cannot be done. Can someone point me in the right direction please? Thank you

djallits's avatar
djallits's avatar ScotchDesi...2mos agoLaravel
4
1
Last reply by ScotchDesign1 2mos ago
MohamedKamal's avatar

Slugs in SEO

I Know that slugs make better SEO But I am confused about using slugs in api endpoints that front end app will use it, how it can improve SEO while it doesn't appear in web browser? and just front end using it to deal with database Anyone can help me to understand it?

MohamedKamal's avatar
MohamedKamal's avatar CapPerez2mos agoLaravel
4
1
Last reply by CapPerez 2mos ago
kaiserkais's avatar

inertia navigation take too long

hi guys im using inertia with react, this problem is new, never happened before. when i navigate in some of my pages it is very slow and when i check the network tab in the console, i see that the resource for the get request is too big like 5MB and it take 42 seconds its like it take too long to get the data from mysql, but not in all pages please check the image https://ibb.c

kaiserkais's avatar
kaiserkais's avatar JussiManni...2mos agoLaravel
2
1
Last reply by JussiMannisto 2mos ago
ahmed_abdalbaky's avatar

Download Issue in the laracast websit

there are problrm in download the vidoes it redirect to another page and with dummy name for the video with large size please fix it thanks

ahmed_abdalbaky's avatar
ahmed_abdalbaky's avatar LaryAI2mos agoFeedback
1
4
Last reply by LaryAI 2mos ago
hsehjal's avatar

Using Laravel Horizon with Upstash Redis - Any Gotchas?

Hi everyone, I'm looking into using Upstash Redis (Serverless) to power Laravel Horizon for a new project. Based on the Laravel Documentation - "Horizon is not compatible with Redis Cluster at this time."; Furthered researched and found that Horizon has some specific requirements regarding Lua scripts and doesn't typically play well with Redis Clustering. Since Upstas

hsehjal's avatar
hsehjal's avatar hsehjal2mos agoLaravel
0
1
Lara_Love's avatar

word SEO in Laravel

Hello . In WordPress, when creating a post, there is a place to write SEO words that cannot be seen on the post page. In Laravel, how should we hide these SEO words in the front while they increase our SEO?

Lara_Love's avatar
Lara_Love's avatar Srohen2mos agoLaravel
5
1
Last reply by Srohen 2mos ago
Chron's avatar

Default Error messages

I already know about the validation.php that holds all the default error messages for form inputs. But I also noticed there are other files with validation.php; auth.php, pagination.php, and passwords.php. How can I make Laravel use these messages as defaults?

Chron's avatar
Chron's avatar Mega_Aleks...2mos agoLaravel
4
1
Last reply by Mega_Aleksandar 2mos ago
Timothy_Makori's avatar

Laravel Based HMIS

Hello All, I have written a proposal for the development of a Health Management Information System that will run in our hospital once completed, with possible integrations to all laboratory machines and imaging. Advice how capable Laravel can be so that it is not personal ideas for something that might not work. The specific technologies we intend to use include: Backend: Lara

Timothy_Makori's avatar
Timothy_Makori's avatar Timothy_Ma...3mos agoDesign
2
1
Last reply by Timothy_Makori 3mos ago
auau012's avatar

Laravel to create HMS hotels management system

please guide me i want to create new HMS. can i divide it to like 4 parts, front office, reservation, housekeeping and other, each part like individual website with its database and connect all this database to each other without any problems? or can i make it all together and what is solution if it is too slow?

auau012's avatar
auau012's avatar CapPerez3mos agoGeneral
10
1
Last reply by CapPerez 3mos ago
tarcisiodev1's avatar

Laravel Tailwind tables (like Yajra, no Livewire)

Good evening, everyone! I’m looking for recommendations for libraries or packages to create tables in Laravel using Tailwind CSS. Previously, I used Yajra Laravel DataTables with Bootstrap, but now I want to switch to a solution that works well with Tailwind and, preferably, doesn’t rely on Livewire. Does anyone have suggestions for packages or approaches that can replace Yajra

tarcisiodev1's avatar
tarcisiodev1's avatar jlrdw3mos agoLaravel
1
1
Last reply by jlrdw 3mos ago
birdietorerik's avatar

Route::middleware('auth:sanctum') problem

Hi! Making a Laravel application using Laravel 12.x and Vue3 Have big problem with -> Route::middleware('auth:sanctum') api.php <?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\Api\AuthController; use App\Http\Controllers\Api\ChurchController; use Illuminate\Support\Facades\Auth; use Laravel\Sanctum\PersonalAccessToken; use App\Models\User; use Illumi

birdietorerik's avatar
birdietorerik's avatar quintinmor...3mos agoLaravel
2
1
Last reply by quintinmorrow 3mos ago

Want us to email you occasionally with Laracasts news?

Nine out of ten doctors recommend Laracasts over competing brands. Come inside, see for yourself, and massively level up your development skills in the process.

Learn
BrowseSeriesCreatorSeriesLaravel PathLarabitsPlayground
Discuss
ForumPodcastSupport
Extras
Gift CertificatesApparelFAQiOS AppTerms
Social
X(Twitter)TikTokYoutube

© Laracasts 2026. All rights reserved. Yes, all of them. That means you, Todd.

Proudly hosted with Laravel Forge and DigitalOcean.

Want us to email you occasionally with Laracasts news?

Nine out of ten doctors recommend Laracasts over competing brands. Come inside, see for yourself, and massively level up your development skills in the process.

Learn
BrowseSeriesCreatorSeriesLaravel PathLarabitsPlayground
Discuss
ForumPodcastSupport
Extras
Gift CertificatesApparelFAQiOS AppTerms
Social
X(Twitter)TikTokYoutube

© Laracasts 2026. All rights reserved. Yes, all of them. That means you, Todd.

Proudly hosted with Laravel Forge and DigitalOcean.