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

danielpetrica's avatar

Feedback request

Hi everyone, I’ve been working on a site to help fellow Laravel developers, and I’d really appreciate your feedback and suggestions to make it better. The site is laraplugins.io. Its goal is to help developers quickly and easily assess the health and reliability of Laravel plugins—ideally in under five minutes, without needing to dive into the GitHub source code. Right now, eve

danielpetrica's avatar
danielpetrica's avatar danielpetr...5mos agoGeneral
3
1
Last reply by danielpetrica 5mos ago
enadabuzaid's avatar

Want to select php 8.4 on forge

Why, when create new website, does the selected PHP version just have PHP 8.3? how can select PHP 8.4 or PHP 8.5

enadabuzaid's avatar
enadabuzaid's avatar NoLAstNamE5mos agoForge
3
5
Last reply by NoLAstNamE 5mos ago
Tempestad's avatar

Does Laravel Cloud support Snappy PDF/Image Wrapper for Laravel?

I'm currently deploying a Laravel application to Laravel Cloud, I want to use barryvdh/laravel-snappy to generate PDFs and images. Since this package relies on wkhtmltopdf and wkhtmltoimage binaries, I would like to know: Are these binaries already available on Laravel Cloud servers? If not, is it possible to install them manually? Has anyone successfully used Snappy PDF on Lar

Tempestad's avatar
Tempestad's avatar olotintemi...5mos agoLaravel
1
1
Last reply by olotintemitope 5mos ago
thesnakebite's avatar

Media Uploads for Workshop the Laravel Course - Best Approach?

Following Jeffrey, Jeremy, and Simon's Workshop the Laravel, I extended the application with search, bookmarks, and guest access. Now I want to add image/video uploads to posts. Stack: Laravel 12 + Inertia v2 + Vue 3 Requirements: 1-4 images OR 1 video per post Image preview before publishing Display in the timeline Options I'm considering: Native Inertia useForm() + file in

thesnakebite's avatar
thesnakebite's avatar thesnakebi...5mos agoLaravel
0
1
mozew's avatar

React: MUI Menu does not render although data exists (object vs array issue)

I am working on a React shopping cart component. I pass a cart item as a prop to my CartItem component: <CartItem item={item} qty={item.quantity} /> I confirmed with console.log that props.item exists and contains data: { _id: "...", productTitle: "...", price: 15000000, ram: "6GB" } I want to show a Material-UI Menu that lists all

mozew's avatar
mozew's avatar JussiManni...5mos agoReact
2
1
Last reply by JussiMannisto 5mos ago
Shubbi's avatar

Resolved AlpineJs + Ajax plugin $slot-issue: not replacing x-target

I've encountered an issue that took me hours to resolve - and for me, it was a weird one. I just wanna share it and hopefully someone (1) can explain it, or/and (2) maybe this post will help someone to find a solution to the same issue. My layout component file is a simple one, without any clutter it's structured like this: <html> <head> // scripts and styles </h

Shubbi's avatar
Shubbi's avatar Shubbi5mos agoJavaScript
2
2
Last reply by Shubbi 5mos ago
raobilal4822's avatar

Get $get data in other section from an another section in filament

Section::make('How your Property Looks like') ->schema([ Select::make('meta.contains_unit') ->label('') ->options([ PropertyContainsUnitEnum::SingleRentable->value => 'Single Unit', PropertyContainsUnitEnum::MultipleRentable->value => 'Multiple Units', ]) // ->default(PropertyContainsUnitEnum::

raobilal4822's avatar
raobilal4822's avatar LaryAI5mos agoFilament
1
1
Last reply by LaryAI 5mos ago
raobilal4822's avatar

why live data is not updating on select box in filament

Select::make('meta.contains_unit') ->label('') ->options([ PropertyContainsUnitEnum::SingleRentable->value => 'Single Unit', PropertyContainsUnitEnum::MultipleRentable->value => 'Multiple Units', ]) ->default( PropertyContainsUnitEnum::MultipleRentable->value) ->required() ->reactive() ->columns(2) ->formatStateUsing(fn (string $state): strin

raobilal4822's avatar
raobilal4822's avatar LaryAI5mos agoFilament
1
1
Last reply by LaryAI 5mos ago
reeju619's avatar

Not working multi-filter system in my real estate laravel 10 project

Hello everyone! i hope you all are doing well. I am developing a real estate website, there is a property page. In this page the requirement is that there will be a multi filtering system. User can filter properties by category, price range, parking spots, and BHK(Bedroom, Hall and Kitchen). Suppose user first will select apartment category, according to that category every pro

reeju619's avatar
reeju619's avatar reeju6195mos agoJavaScript
5
1
Last reply by reeju619 5mos ago
damoramo's avatar

Laravel not sending emails from 365 after I changed Godaddy Server

I upgraded my EOL server from Godaddy, now all of my subsites can't send emails. I'm using exchange online. My DNS is correct on Godaddy. Failed to authenticate on SMTP server with username "[email protected]" using the following authenticators: "LOGIN", "PLAIN". Authenticator "LOGIN" returned "Expected response code "235"

damoramo's avatar
damoramo's avatar jlrdw5mos agoFeedback
1
1
Last reply by jlrdw 5mos ago
jewelhuq's avatar

How to handle mutliple browser session in redis instead of database

https://jetstream.laravel.com/2.x/features/browser-sessions.html You can say it is saying use session driver database, instead if we use redis can we do it?

jewelhuq's avatar
jewelhuq's avatar vpuentem5mos agoGeneral
1
1
Last reply by vpuentem 5mos ago
anjanesh's avatar

Lead Generation via Landing Page System

Is there some composer package or some boilerplate code for using Laravel just for marketing purpose ? (No WordPress). I want to use Laravel for a landing page for lead generation and have some sort of simple CRM platform as a dashboard for the leads generated via the Landing page. One I've come across is krayincrm but how do I have to wire it to krayin or the likes ?

anjanesh's avatar
anjanesh's avatar anjanesh5mos agoGeneral
4
3
Last reply by anjanesh 5mos ago
JasonYao's avatar

Concurrency::run return error: Trying to access array offset on value of type null

I upgrade laravel from 9 to 12 to use Concurrency, but when I run the code below, it shows error "Trying to access array offset on value of type null" $result = Concurrency::run([ 'task-1' => fn() => 1 + 1, 'task-2' => fn() => 2 + 2, ]); dd($result); What could be the reason for this? Thank you very much.

JasonYao's avatar
JasonYao's avatar Niush5mos agoCode Review
2
1
Last reply by Niush 5mos ago
bishtyogeshsingh's avatar

Correct way to include seo tags in laravel blade

I'm building a website using Laravel 11 and a component-based structure. Here is an example of the structure I'm using: Directory Structure: Views ├── Components │ ├── header │ │ └── header.blade.php │ ├── navbar │ │ ├── navbar.blade.php │ │ └── navbarlink.blade.php │ └── app.blade.php ├── Frontend │ ├── about.blade.php │ └── home.blade.php I want to imple

bishtyogeshsingh's avatar
bishtyogeshsingh's avatar catrin215mos agoLaravel
5
3
Last reply by catrin21 5mos ago
Vanni7544's avatar

I built a safer way to manage .env files in Laravel (export, validate, backup, rollback)

Manage .env files in Laravel (export, validate, backup, rollback) Over the last few weeks, I’ve been working on a small tool for Laravel that was born from a real-world problem I kept running into: safely managing .env files across multiple environments (local, staging, production). I noticed how little it takes — a missing value, a wrong variable, a rushed copy-paste — to brea

Vanni7544's avatar
Vanni7544's avatar Vanni75445mos agoDevOps
0
1
HungryBus's avatar

PUT method returns 405

Hello :) A very strange bug appears on production. When calling the Laravel 12 API via PUT, the return is 405 Not Allowed, however changing the same method to POST works fine for some reason. Locally, it works both with PUT/POST. This is the routes file: Route::prefix('payers') ->name('payers.') ->controller(PayerController::class) ->

HungryBus's avatar
HungryBus's avatar DigitalArt...5mos agoDevOps
6
2
Last reply by DigitalArtisan 5mos ago
earmsby's avatar

Recommendations for connecting WooCommerce data to Laravel application

I need to pull data from a WooCommerce store into a laravel (filament) application. Looks like the easiest/best way to do this is using a pre-built package like codexshaper/laravel-woocommerce to connect to the WooCommerce API. Are there other packages I should consider? codexshaper/laravel-woocommerce was the main one I found in doing Google searches but perhaps I'm missing a

earmsby's avatar
earmsby's avatar LaryAI5mos agoLaravel
1
1
Last reply by LaryAI 5mos ago
an.leclerc's avatar

Custom properties in notifications

Hi, I'd like to add custom properties in laravel notifications (laravel 12). I tried with : ... $message = (new MailMessage) ->line('The introduction to the notification.') ->action('Notification Action', url('/')) ->line('Thank you for using our application!') ; $message->viewData['logo'] = 'https://dummyimage.co

an.leclerc's avatar
an.leclerc's avatar an.leclerc5mos agoLaravel
2
1
Last reply by an.leclerc 5mos ago
rudiwer's avatar

Is it a bad practice for SEO when i make a livewire component from the <head> section of a page?

When i make a livewire component from the head section of a webpage, there are some livewire related attributes added to the tag. ex: Is this a bad practice for SEO ?

rudiwer's avatar
rudiwer's avatar CapPerez5mos agoLivewire
2
1
Last reply by CapPerez 5mos ago
jasonb's avatar

Auto build CRUD?

Is there a way to build out CRUD from artisan based on a Database Table? In Cake PHP there was an option in the Bake tool that would build the scaffolding and give you boilerplate CRUD. -J

jasonb's avatar
jasonb's avatar clifordper...5mos agoLaravel
4
1
Last reply by clifordpereira 5mos ago
vincent15000's avatar

Happy New Year To Everyone !

Happy New Year To Everyone ! public function happy() { $new = 'Year'; Log::info('To Everyone'); }

vincent15000's avatar
vincent15000's avatar Snapey5mos agoGeneral
1
1
Last reply by Snapey 5mos ago
successdav's avatar

Conflicting server name

I was not having this problem until I tried to reinstall my ssl certificate then this error shows up now when I try to visit sp-movies.com/wp-admin it will redirect me to nigeriaschoolinfo.com when I run this code sudo nginx -t then this error shows up nginx: [warn] conflicting server name "www.sp-movies.com" on 0.0.0.0:80, ignored nginx: [warn] conflicting server n

successdav's avatar
successdav's avatar KanakaDurg...5mos agoServers
3
1
Last reply by KanakaDurgaAkula 5mos ago
BSP's avatar

"broadcasting/auth" returns empty response to laravel echo over 443 (SSL)

The authentication on the private channel is working fine on my localhost (port 80) - it's returning a json like {'auth' : 'longstringasdasdasd'} and notifications work fine. On the live site however, where everything is https, the "broadcasting/auth" route returns an empty response. The response header says Content Length : 0 Not sure which way to go and what to look

BSP's avatar
BSP's avatar saaydev5mos agoLaravel
8
1
Last reply by saaydev 5mos ago
KiwiNFLFan555's avatar

Deploying Livewire project on Vercel - JS/CSS not being served

I’m trying to deploy a Laravel Livewire app to Vercel. I configured the app using this guide and managed to get the app pushed to Vercel (haven’t configured the DB yet though). I can access the web app on the URL Vercel gave me, but the CSS and JavaScript are not downloading, although the HTML is. This means there is no styling on the page, but more importantly, the buttons and

KiwiNFLFan555's avatar
KiwiNFLFan555's avatar martinbean5mos agoDevOps
3
2
Last reply by martinbean 5mos ago
danasg's avatar

Capitalization or not of pages/vue routing files in a Laravel-Inertia-Vue application

Hello. Is there any specific reason for capitalizing the names of vue page files, i.e. Index, Create, Show etc instead of index, create and show. I can accept that the components themselves are capitalized but capitalizing these traditionally "route pages" can cause issues (and did) when I was testing my solution with nuxt/vue which recommends that route pages are not

danasg's avatar
danasg's avatar vincent150...5mos agoInertia
2
6
Last reply by vincent15000 5mos 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.