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

Rupali06's avatar

What is the duration of React course?

Hi everyone! I'm a beginner and I really want to learn React, but I don't know where to start. I have basic knowledge of HTML, CS and a little JavaScript, can anyone suggest a good course or roadmap for me?

Rupali06's avatar
Rupali06's avatar Anurag01mo agoAI
2
1
Last reply by Anurag0 1mo ago
shadkamel's avatar

Football streaming

hello every one, can you suggest a platform or a website than can provide live football streaming to websites please? i want to connect that live to my website.

shadkamel's avatar
shadkamel's avatar martinbean1mo agoGeneral
11
1
Last reply by martinbean 1mo ago
alihamzahq's avatar

Open-source Laravel 12 + React 19 multi-tenant SaaS starter — feedback welcome on the architecture

Hi all, I’ve been working on an open-source multi-tenant SaaS starter kit and finally got it to a point where I’m comfortable sharing it publicly. It’s built with Laravel 12, React 19, Inertia.js, and Stancl/Tenancy, using a database-per-tenant approach. Repo: https://github.com/alihamzahq/laravel-multi-tenant-saas-starter The main reason I built it is that most multi-tenant L

alihamzahq's avatar
alihamzahq's avatar alihamzahq1mo agoGeneral
0
38
marinarusalka's avatar

Adding optional fields to user registration

Hello. I'm using Laravel 13.5.0 with Livewire starter kit. I've added four new fields to my users model in Laravel: "organization", which is required, "orcid" and "orgurl", which are optional, and "role", which is optional and also not entered by the user on the registration page but to be left as null until set separately by the website

marinarusalka's avatar
marinarusalka's avatar ghabriel251mo agoLivewire
4
1
Last reply by ghabriel25 1mo ago
Mastertech01's avatar

php artisan error(failed to open stream: No such file or directory)

hello everyone, I am cloning a project on Github, I followed the tutorial steps listed bellow clone the repo $ git clone https://github.com/coreui/coreui-free-laravel-admin-template.git my-project go into app's directory $ cd my-project install app's dependencies $ composer install install app's dependencies $ npm install the above stages were successful and I have connected th

Mastertech01's avatar
Mastertech01's avatar vincent150...1mo agoGeneral
7
184
Last reply by vincent15000 1mo ago
vincent15000's avatar

How to obsfucate a Laravel application's code ?

Hello, Do you know how to obfuscate a Laravel application's code and how to maintain great performances for a real time application ? I know IonCube, but there is perhaps other ways ? Furthermore when the code is obfuscated, the performances are lower. Is Octane a good way to get better performances when the code is obfuscated ? Does Octane work well with docker ? If I use Octa

vincent15000's avatar
vincent15000's avatar imrandevbd1mo agoLaravel
5
152
Last reply by imrandevbd 1mo ago
dhanikk's avatar

🚀 DBStan Now Supports PostgreSQL

Hi everyone 👋 I wanted to share a quick update on DBStan — the database analysis tool for Laravel. We’ve just added support for PostgreSQL 🎉 🔍 What’s New DBStan can now analyze PostgreSQL databases and detect issues like: Missing indexes (e.g., on foreign keys) Incorrect or missing relationships Risky nullable columns Inefficient data types (like using JSON instead of JSONB) 💡

dhanikk's avatar
dhanikk's avatar imrandevbd1mo agoLaravel
1
1
Last reply by imrandevbd 1mo ago
vincent15000's avatar

Some comments disappear from the posts ?

Hello, I read once again some old posts I had posted. For example this one. https://laracasts.com/discuss/channels/laravel/fortify-and-password-confirmation Sure I had answers some comments, but I don't see any other comments than my comments. Where are the other comments ? Any bug ? Thanks ;). V

vincent15000's avatar
vincent15000's avatar imrandevbd1mo agoFeedback
1
1
Last reply by imrandevbd 1mo ago
vincent15000's avatar

Use a policy with only the model id and avoiding N+1

Hello, Hmmm ... I wonder how I could use a policy with only a model id. Gate::authorize('update', $model_id); Sure this way it can't work because the Gate doesn't know the model. What could be a solution to do that ? Thanks for your help. V

vincent15000's avatar
vincent15000's avatar kimberlymc...1mo agoLaravel
4
1
Last reply by kimberlymcnamee 1mo ago
vincent15000's avatar

Plan subscription and Stripe

Hello, Hmmm ... what's the best approach ? For the same SaaS, I have different plans : plan A, plan B and plan C. Are these plans differents products or the same product with different prices ? Thanks for your answer ;). V

vincent15000's avatar
vincent15000's avatar vincent150...1mo agoGeneral
5
1
Last reply by vincent15000 1mo ago
vincent15000's avatar

Larapex-Charts

Hello, I already use ChartJS, it's just wonderful. I just discovered Larapex-Charts and I'm trying to use it, it seems interesting. http://larapex-charts.netlify.app/ I have followed exactly what is in the documentation and it works fine. But ... I'd like to use it without any CDN, but it's not so easy for me : I have installed the apexcharts library with npm and then I have ad

vincent15000's avatar
vincent15000's avatar vincent150...1mo agoLaravel
2
3
Last reply by vincent15000 1mo ago
vincent15000's avatar

Code obfuscation for Laravel / VueJS / Docker

Hello, Last year I worked on a real-time application with Laravel / VueJS / Docker and some additionnal packages like MariaDB, RabbitMQ, websockets, supervisor, ... The application is distributed via a Docker package. My client wants to obfuscate the code. Has anybody already obfuscated a real-time Laravel / VueJS application's code ? Here are my first researches : it's possi

vincent15000's avatar
vincent15000's avatar vincent150...1mo agoLaravel
4
1
Last reply by vincent15000 1mo ago
vincent15000's avatar

About the new Livewire (v4) version

Hello, I just discover the new version of Livewire (v4). Hmmm ... I'm disappointed that there isn't any store management system to share data between all views. I also see that Volt is now totally integrated inside Livewire, it's not an option anymore. Livewire evolves towards a VueJS-like framework. I use both technologies and I wonder what is the real benefits provided by Liv

vincent15000's avatar
vincent15000's avatar Snapey1mo agoLivewire
1
1
Last reply by Snapey 1mo ago
vincent15000's avatar

Passing only an ID vs passing the entire object

Hello, I have this database : tables articles : table_id groups : table_id variables : group_id article_group : article_id, group_id, pivot datas I have to display on the same page the articles, the groups, the variables for each group and the articles with the pivot datas for each group. In the TablePage Livewire component, I load the table and its relationships as a compute

vincent15000's avatar
vincent15000's avatar martinbean1mo agoLivewire
3
5
Last reply by martinbean 1mo ago
vincent15000's avatar

How to retrieve only some pivot values (not all)

Hello, I have this relationship. public function articles(): BelongsToMany { return $this->belongsToMany(Article::class, 'group_article')->using(GroupArticle::class)->withPivot('formula', 'rounding_rule', 'precision'); } public function publicArticles(): BelongsToMany { return $this->belongsToMany(Article::class, 'group_article')->as('articles')->usi

vincent15000's avatar
vincent15000's avatar vincent150...1mo agoEloquent
3
1
Last reply by vincent15000 1mo ago
vincent15000's avatar

How to send a response without any redirection ?

Hello, form.post( route('player.quest.step.challenge.validate', { quest: props.quest_id, step: props.step_id, challenge: props.challenge }), { preserveScroll: true, onSuccess: (page) => { validated.value = page.flash.validated; }, }, ); public function validate(PlayerChallengeValidationRequest $request, Quest $quest, Step $ste

vincent15000's avatar
vincent15000's avatar vincent150...1mo agoInertia
2
1
Last reply by vincent15000 1mo ago
vincent15000's avatar

How does the optimistic updates work ?

Hello, I'm trying to use the optimistic updates with InertiaJS v3. https://inertiajs.com/docs/v3/the-basics/optimistic-updates#form-helper const save = async () => { form.optimistic((props) => ({ category: props.category, name: form.name })).put(route('admin.categories.update', { category: props.category })); editMode.value = false; updated.value = true; };

vincent15000's avatar
vincent15000's avatar vincent150...1mo agoInertia
3
1
Last reply by vincent15000 1mo ago
jalaf11201's avatar

How do we handle this repetition?

Hi, I'm having a hard time to handle little pages. And I have to take user data in all the pages. I will take different data in other pages just like in communities. And also should I put everything community related to community service and use it in community controllers and profile community pages or etc? or Can I just do it like this. Where can I see some examples for this

jalaf11201's avatar
jalaf11201's avatar vincent150...1mo agoLaravel
5
2
Last reply by vincent15000 1mo ago
imrandevbd's avatar

Migrating from Laragon to Flyenv for local dev anyone using it?

Hey everyone, After relying on Laragon for years, I’m looking at moving my local workflow over to Flyenv. As my stack has gotten more complex over the last decade, I want a cleaner containerized setup, but ideally with less friction than managing raw Docker compose files or Sail for every single project. For those of you actively using Flyenv how is it holding up as your daily

imrandevbd's avatar
imrandevbd's avatar Robstar1mo agoDevOps
4
10
Last reply by Robstar 1mo ago
vincej's avatar

Upgrading to L13 using AI Confusion

I have two machines to upgrade. The docs say using Laravel-boost 2.0+ it has instructions in it which will help and AI. It also says to share this with your agent. "use the /upgrade-laravel-v13 slash command". Well, when upgrading my Linux server, I used Claude code agent, and Claude told me that Boost has nothing in it, and it had no idea what the slash command was

vincej's avatar
vincej's avatar imrandevbd1mo agoLaravel
4
12
Last reply by imrandevbd 1mo ago
RogerManich's avatar

Toast question

Hi, After I watched the last Laravel course I wanted to try to build something with Laravel + LiveWire. My first goal was expanding the user preferences to accept language and color scheme. It works but in my first design I wanted to use a route + controller to update the user preferences instead of doing it insde the component settings. It worked but I realized that flux::toas

RogerManich's avatar
RogerManich's avatar ghabriel251mo agoLivewire
5
41
Last reply by ghabriel25 1mo ago
vincent15000's avatar

Hidden field not sent to the server ?

Hello, I have this field. <input type="hidden" name="{{ $fieldName }}" wire:model.live="item_key"> If I keep the type hidden, the value isn't sent to the server. But if I replace by the type text, the value is sent to the server. I don't understand why ... it worked fine in Livewire v2, but not any more in Livewire v3. Or is there any other

vincent15000's avatar
vincent15000's avatar vincent150...1mo agoLivewire
3
4
Last reply by vincent15000 1mo ago
vincent15000's avatar

This post seems to be broken

Hello, I posted this post some time ago. https://laracasts.com/discuss/channels/laravel/nativephp-jump When I try to open it, I am redirected to Error 500 page. Something seems to be broken. V

vincent15000's avatar
vincent15000's avatar jlrdw1mo agoFeedback
1
6
Last reply by jlrdw 1mo ago
skeith22's avatar

I wanted to query nested data until level 2 on a single model

Guys I have this model and I wanted to get the level 2 data, BUT this says relationship doesn't exist. phpnamespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasManyThrough; class Agent extends Model { protected $table = 'agents'; /** * The attributes that are mass assignable. * * @var list<string> */ protected $fil

skeith22's avatar
skeith22's avatar skeith221mo agoEloquent
7
4
Last reply by skeith22 1mo ago
vincent15000's avatar

How is it possible to prevent TailwindCSS from loading Figtree font from google ?

Hello, How is it possible to prevent TailwindCSS from loading Figtree font from google ? Any idea ? UPDATE => I think that it's not TailwindCSS which loads the font, it's the browser. So how is it possible to prevent the browser from injecting a font ? Thanks for your help. V

vincent15000's avatar
vincent15000's avatar vincent150...1mo agoGeneral
6
1
Last reply by vincent15000 1mo 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.