About the new starter kits
I have two Laravel projects. One already has Inertia set up with Breeze, while the other only has APIs in the controllers without any frontend setup.
I'm looking for a way (or a tutorial) to install Inertia on the existing API-only project and properly integrate it. Also, for the project that already has Inertia, I want to update the styling and bring in the new design.
Does anyone know the best approach or have any recommended resources for this?
https://redd.it/1iy0t8w
@r_php
I have two Laravel projects. One already has Inertia set up with Breeze, while the other only has APIs in the controllers without any frontend setup.
I'm looking for a way (or a tutorial) to install Inertia on the existing API-only project and properly integrate it. Also, for the project that already has Inertia, I want to update the styling and bring in the new design.
Does anyone know the best approach or have any recommended resources for this?
https://redd.it/1iy0t8w
@r_php
Reddit
From the laravel community on Reddit
Explore this post and more from the laravel community
What are you thoughts on this Laravel "best practices" article that I see linked every now and again? My personal, albeit small, critique is that it takes subjective opinions and passes them off as how things should always be done. But I'd like to hear your thoughts!
https://github.com/alexeymezenin/laravel-best-practices
https://redd.it/1iy3kd1
@r_php
https://github.com/alexeymezenin/laravel-best-practices
https://redd.it/1iy3kd1
@r_php
GitHub
GitHub - alexeymezenin/laravel-best-practices: Laravel best practices
Laravel best practices. Contribute to alexeymezenin/laravel-best-practices development by creating an account on GitHub.
Laravel Lift alternative
Hi
I've discovered Lift :
Lift is a package that boosts your Eloquent Models in Laravel.
It lets you create public properties in Eloquent Models that match your table schema. This makes your models easier to read and work with in any IDE.
It provides a simple way to set up your models, focusing on simplicity and ease of use by using PHP 8’s attributes.
The package depends on Eloquent Events to work. This means the package fits easily into your project without needing any major changes (unless you’ve turned off event triggering).
However, I've tried to implement in on a model, in an existing project, but I did have an issue with a foreign ID, that I never figured to make working.
Two similar unanswered issues in the github repo makes me think this is either unreliable or abandoned.
Do anyone know and use some equivalent package, that allows to define properties and their attributes (fillable, cast, etc...) directly inside the model ?
If you haven't heard about it, have a look at the docs, or the laravel news blog post that describe it :https://laravel-news.com/laravel-lift. I love the idea of this package, but it seems it needs some polishing...
https://redd.it/1iy57gq
@r_php
Hi
I've discovered Lift :
Lift is a package that boosts your Eloquent Models in Laravel.
It lets you create public properties in Eloquent Models that match your table schema. This makes your models easier to read and work with in any IDE.
It provides a simple way to set up your models, focusing on simplicity and ease of use by using PHP 8’s attributes.
The package depends on Eloquent Events to work. This means the package fits easily into your project without needing any major changes (unless you’ve turned off event triggering).
However, I've tried to implement in on a model, in an existing project, but I did have an issue with a foreign ID, that I never figured to make working.
Two similar unanswered issues in the github repo makes me think this is either unreliable or abandoned.
Do anyone know and use some equivalent package, that allows to define properties and their attributes (fillable, cast, etc...) directly inside the model ?
If you haven't heard about it, have a look at the docs, or the laravel news blog post that describe it :https://laravel-news.com/laravel-lift. I love the idea of this package, but it seems it needs some polishing...
https://redd.it/1iy57gq
@r_php
Laravel News
Writing to the Database with Eloquent - Laravel News
Eloquent is one of the most powerful and amazing features in a modern framework today. From casting data to value objects, transactions, and relationships.
For those using Laravel with Svelte, what’s your stack/workflow like?
I’ve seen two stacks so far:
- Laravel + Inertia with Svelte. The downside seems to be 1) backend and frontend is coupled together (could be a positive). 2) Can’t use SvelteKit
- Separate SvelteKit app consuming an API powered by Laravel
https://redd.it/1iye1wo
@r_php
I’ve seen two stacks so far:
- Laravel + Inertia with Svelte. The downside seems to be 1) backend and frontend is coupled together (could be a positive). 2) Can’t use SvelteKit
- Separate SvelteKit app consuming an API powered by Laravel
https://redd.it/1iye1wo
@r_php
Reddit
From the laravel community on Reddit
Explore this post and more from the laravel community
A mod that adds saving & reloading to
I used to use the app https://tinkerwell.app/ until my new company refused to buy it for me! I wanted to recreate the basic work flow of interactive development that tinkerwell provides.
# Without the Mod
Say you are working with a user in tinker:
>$joe = User::where('username', 'joe')->first()
>$joe->fullName
Smith Joe // Oh no! Theres a bug!
Fix the bug:
function getFullNameAttribute() {
return $this->firstname . ' ' . $this->lastname;
}
And tinker is using your old session:
>$joe->fullName
Smith Joe // Oh no! The bug is still there!
In normal Tinker you would have to fix the bug, close the session, reopen the session, and then rerun the query to get
# With the Mod
>$joe = User::where('username', 'joe')->first()
>$joe->fullName
Smith Joe // Oh no! Theres a bug!
Fix the bug:
function getFullNameAttribute() {
return $this->firstname . ' ' . $this->lastname;
}
Now back to tinker:
>$joe = User::where('username', 'joe')->first()
>$joe->fullName
Smith Joe // Oh no! Theres a bug!
>eval(RELOAD)
INFO Goodbye.
Psy Shell v0.12.4 (PHP 8.4.1 — cli) by Justin Hileman
Tinker Reload Mod
Vars: $joe
> $joe
= App\Models\User {#5175
name: "Joe",
}
> $joe->fullName
Joe Smith
This allows the developer to constantly test and tweak and develop interactively!
This mod saves me at least 30 minutes a day and I love it.
Check it out here: https://github.com/benfaerber/laravel-tinker-reload-mod
https://redd.it/1iyjd4g
@r_php
php artisan tinkerI used to use the app https://tinkerwell.app/ until my new company refused to buy it for me! I wanted to recreate the basic work flow of interactive development that tinkerwell provides.
# Without the Mod
Say you are working with a user in tinker:
>$joe = User::where('username', 'joe')->first()
>$joe->fullName
Smith Joe // Oh no! Theres a bug!
Fix the bug:
function getFullNameAttribute() {
return $this->firstname . ' ' . $this->lastname;
}
And tinker is using your old session:
>$joe->fullName
Smith Joe // Oh no! The bug is still there!
In normal Tinker you would have to fix the bug, close the session, reopen the session, and then rerun the query to get
$joe again! This makes interactive development difficult and you will find your self Ctrl+C to close, press up to reload previous commands, and repeat.# With the Mod
>$joe = User::where('username', 'joe')->first()
>$joe->fullName
Smith Joe // Oh no! Theres a bug!
Fix the bug:
function getFullNameAttribute() {
return $this->firstname . ' ' . $this->lastname;
}
Now back to tinker:
>$joe = User::where('username', 'joe')->first()
>$joe->fullName
Smith Joe // Oh no! Theres a bug!
>eval(RELOAD)
INFO Goodbye.
Psy Shell v0.12.4 (PHP 8.4.1 — cli) by Justin Hileman
Tinker Reload Mod
Vars: $joe
> $joe
= App\Models\User {#5175
name: "Joe",
}
> $joe->fullName
Joe Smith
This allows the developer to constantly test and tweak and develop interactively!
This mod saves me at least 30 minutes a day and I love it.
Check it out here: https://github.com/benfaerber/laravel-tinker-reload-mod
https://redd.it/1iyjd4g
@r_php
Tinkerwell
The code runner for PHP 💫
Quickly iterate on PHP code within the context of your web application with Tinkerwell – the must-have companion for your favorite IDE.
SymfonyLive Paris 2025 : Async avec Messenger, AMQP et Mercure
https://symfony.com/blog/symfonylive-paris-2025-async-avec-messenger-amqp-et-mercure?utm_source=Symfony%20Blog%20Feed&utm_medium=feed
https://redd.it/1iyo555
@r_php
https://symfony.com/blog/symfonylive-paris-2025-async-avec-messenger-amqp-et-mercure?utm_source=Symfony%20Blog%20Feed&utm_medium=feed
https://redd.it/1iyo555
@r_php
Symfony
SymfonyLive Paris 2025 : Async avec Messenger, AMQP et Mercure (Symfony Blog)
Boost performance with async processing in Symfony with Grégoire Pineau ! Learn how Messenger handles heavy tasks and Mercure keeps clients updated in real time—even in a SPA!
How to Run a Laravel Application With Reverb in an Azure Web App
https://cypressnorth.com/web-programming-and-development/how-to-run-a-laravel-application-with-reverb-in-an-azure-web-app/
https://redd.it/1iyov3q
@r_php
https://cypressnorth.com/web-programming-and-development/how-to-run-a-laravel-application-with-reverb-in-an-azure-web-app/
https://redd.it/1iyov3q
@r_php
Cypress North
Host a Laravel Application on an Azure Web App | Cypress North
Deploying a Laravel application to an Azure web app works great, but the setup can be tricky. In this tutorial, we walk you through how to configure an Azure web app to host your Laravel + Reverb application.
Opensource project with paid version. What workflow?
I have a few personal, private projects (mainly Symfony based) with some commercial potential. I'm considdering releasing a opensource base version, but would also like to explore the possibility of maintaining a paid, more advanced version.
How would one organize the development workflow of something like this? If I were to maintain 2 seperate repositories/codebases, changes affecting both versions would need to be applied to both codebases. Depending on the difference, there might be common parts, parts that behave differently between versions, of parts that are only present in one of the two versions.
I assume some problems can be solved with a good branching strategy in a single repository, others maybe with git submodules. But which would be "leading"? The advanced version that is then stripped down to the base version, of the base version that is then enriched with the advanced features?
I assume there's not single right way to do this, and for me it's a first. So if anyone has done something similar, I would really like to hear your experience with this.
https://redd.it/1iyvion
@r_php
I have a few personal, private projects (mainly Symfony based) with some commercial potential. I'm considdering releasing a opensource base version, but would also like to explore the possibility of maintaining a paid, more advanced version.
How would one organize the development workflow of something like this? If I were to maintain 2 seperate repositories/codebases, changes affecting both versions would need to be applied to both codebases. Depending on the difference, there might be common parts, parts that behave differently between versions, of parts that are only present in one of the two versions.
I assume some problems can be solved with a good branching strategy in a single repository, others maybe with git submodules. But which would be "leading"? The advanced version that is then stripped down to the base version, of the base version that is then enriched with the advanced features?
I assume there's not single right way to do this, and for me it's a first. So if anyone has done something similar, I would really like to hear your experience with this.
https://redd.it/1iyvion
@r_php
Reddit
From the PHP community on Reddit
Explore this post and more from the PHP community
Bester Laravel practices — a commentary on the best practices
https://github.com/tontonsb/laravel-bester-practices
https://redd.it/1iyvxmm
@r_php
https://github.com/tontonsb/laravel-bester-practices
https://redd.it/1iyvxmm
@r_php
GitHub
GitHub - tontonsb/laravel-bester-practices
Contribute to tontonsb/laravel-bester-practices development by creating an account on GitHub.
Choosing a DB for Laravel production
I am relatively new to Laravel and my experience with DB in the past have been small personal projects that ran fine on SQLite. I am planning on launching my first SaaS soon and even though I am not expecting hundreds of thousands of users, it will be more than my previous projects. I have never used a MySQL or Postgres DB before. I have developed my project on my Mac using SQLite, but should I use MySQL or Postgres in production? Will there be hurdles when switching DBs from dev to production? Is there much difficulty in using MySQL instead of SQLite besides the connection environment variables?
https://redd.it/1iywwpd
@r_php
I am relatively new to Laravel and my experience with DB in the past have been small personal projects that ran fine on SQLite. I am planning on launching my first SaaS soon and even though I am not expecting hundreds of thousands of users, it will be more than my previous projects. I have never used a MySQL or Postgres DB before. I have developed my project on my Mac using SQLite, but should I use MySQL or Postgres in production? Will there be hurdles when switching DBs from dev to production? Is there much difficulty in using MySQL instead of SQLite besides the connection environment variables?
https://redd.it/1iywwpd
@r_php
Reddit
From the laravel community on Reddit
Explore this post and more from the laravel community
Laravel is going in the wrong direction IMHO
People will probably downvote me for this and say it's a skill issue, and maybe it is... But I think Laravel is going in the wrong direction.
I installed a new Laravel 12 app today and have no clue what the heck I am looking at.
1. Jetstream is end of life (why?) and the replacement starter kits come without basic things like 2FA. Instead now Laravel is pushing a 3rd party API called "WorkOS". WorkOS claims the first million users are free (until it's not and you're locked in...) but I just want my auth to be local, not having to rely on some third party. This should have been made optional IMHO.
2. I am looking at the Livewire starter kit. Which is now relying on Volt, so now I have to deal with PHP + HTML + JS in the same file. I thought we stopped doing this back in 2004?
3. Too much magic going on to understand basic things. The starter kits login.blade.php:
new #Layout('components.layouts.auth') class extends Component {
#Validate('required|string|email')
What is this?! Why is it using an attribute for the class name?
4. This starter kit now uses Flux for it's UI instead of just plain Tailwind. Now I don't particularly dislike Flux, but it feels this was done to push users to buy Calebs "Pro" plan.
It used to be so easy. Install Laravel, perhaps use a starter kit like Jetstream to quickly scaffold some auth and UI and you could build. It was always fairly easy to rip out Tailwind and use whatever you wanted instead too. Now it's way too complicated with Volt, Flux, no Jetstream, unclear PHP attributes, mixing HTML/PHP/JS etc...
Am I the only one?
https://redd.it/1iyyxk4
@r_php
People will probably downvote me for this and say it's a skill issue, and maybe it is... But I think Laravel is going in the wrong direction.
I installed a new Laravel 12 app today and have no clue what the heck I am looking at.
1. Jetstream is end of life (why?) and the replacement starter kits come without basic things like 2FA. Instead now Laravel is pushing a 3rd party API called "WorkOS". WorkOS claims the first million users are free (until it's not and you're locked in...) but I just want my auth to be local, not having to rely on some third party. This should have been made optional IMHO.
2. I am looking at the Livewire starter kit. Which is now relying on Volt, so now I have to deal with PHP + HTML + JS in the same file. I thought we stopped doing this back in 2004?
3. Too much magic going on to understand basic things. The starter kits login.blade.php:
new #Layout('components.layouts.auth') class extends Component {
#Validate('required|string|email')
What is this?! Why is it using an attribute for the class name?
4. This starter kit now uses Flux for it's UI instead of just plain Tailwind. Now I don't particularly dislike Flux, but it feels this was done to push users to buy Calebs "Pro" plan.
It used to be so easy. Install Laravel, perhaps use a starter kit like Jetstream to quickly scaffold some auth and UI and you could build. It was always fairly easy to rip out Tailwind and use whatever you wanted instead too. Now it's way too complicated with Volt, Flux, no Jetstream, unclear PHP attributes, mixing HTML/PHP/JS etc...
Am I the only one?
https://redd.it/1iyyxk4
@r_php
Reddit
From the laravel community on Reddit
Explore this post and more from the laravel community
I got DeepSeek running with PHP (the model, not an API call)
Hey everyone!
I found this library that runs ONNX models inside of vanilla PHP code, and decided to try and make it my mission to get an LLM model running with it.
Here's a video showing it off.
Ended up accomplishing it (kind of) with a distilled 1.5B DeepSeek model and a custom tokenizer class that was drawn up like 80% with Claude.
The model returns back generated text successfully, although it gets stuck in some weird repetitive loops. That could probably be optimized out, I think it's due to the way that the existing generated text is fed back into the model, but I'm happy with the proof of concept!
Full source code is here if you would like to play around with it, or see it for yourself.
https://redd.it/1iz1n59
@r_php
Hey everyone!
I found this library that runs ONNX models inside of vanilla PHP code, and decided to try and make it my mission to get an LLM model running with it.
Here's a video showing it off.
Ended up accomplishing it (kind of) with a distilled 1.5B DeepSeek model and a custom tokenizer class that was drawn up like 80% with Claude.
The model returns back generated text successfully, although it gets stuck in some weird repetitive loops. That could probably be optimized out, I think it's due to the way that the existing generated text is fed back into the model, but I'm happy with the proof of concept!
Full source code is here if you would like to play around with it, or see it for yourself.
https://redd.it/1iz1n59
@r_php
GitHub
GitHub - ankane/onnxruntime-php: Run ONNX models in PHP
Run ONNX models in PHP . Contribute to ankane/onnxruntime-php development by creating an account on GitHub.
What's the point in using a starter kit?
I'm not asking about the new starter kits, but rather just starter kits in general.
With the Laravel 12 release, we saw that Jetstream and Breeze were effectively deprecated. What's to say that 3-4 years from now, these new starters kits won't get deprecated in favor of the next new thing?
Using a starter kit to hit the ground running sounds great on paper, but I feel like it's not sustainable. I might use a starter kit for a hobby project that I'll realistically abandon at some point, but I don't think I'd ever recommend a business to use one.
Was anyone using Breeze or Jetstream for business? How are you taking the news? If you could go back in time and choose differently, would you roll your own website without a starter kit?
https://redd.it/1iz1sgg
@r_php
I'm not asking about the new starter kits, but rather just starter kits in general.
With the Laravel 12 release, we saw that Jetstream and Breeze were effectively deprecated. What's to say that 3-4 years from now, these new starters kits won't get deprecated in favor of the next new thing?
Using a starter kit to hit the ground running sounds great on paper, but I feel like it's not sustainable. I might use a starter kit for a hobby project that I'll realistically abandon at some point, but I don't think I'd ever recommend a business to use one.
Was anyone using Breeze or Jetstream for business? How are you taking the news? If you could go back in time and choose differently, would you roll your own website without a starter kit?
https://redd.it/1iz1sgg
@r_php
Reddit
From the laravel community on Reddit
Explore this post and more from the laravel community
PHP Impersonate is a powerful PHP package designed to mimic real browser behavior when making HTTP requests using cURL. With advanced user-agent spoofing & TLS fingerprinting
https://github.com/hamaadraza/php-impersonate
https://redd.it/1iz96to
@r_php
https://github.com/hamaadraza/php-impersonate
https://redd.it/1iz96to
@r_php
GitHub
GitHub - hamaadraza/php-impersonate: PHP Impersonate is a powerful PHP package designed to mimic real browser behavior when making…
PHP Impersonate is a powerful PHP package designed to mimic real browser behavior when making HTTP requests using cURL. With advanced user-agent spoofing, TLS fingerprinting, and header manipulatio...
Improving Filament’s Docs & Education in v4
Hey everyone! As we gear up for Filament v4, one of our big priorities is rewriting the documentation to make it clearer, more complete, and easier to navigate. At the same time, we’re planning a wider education strategy, probably including official video courses.
But we need your feedback! If you've learned Filament - whether recently or way back in v1 - what were the biggest pain points?
🔸 What parts of the docs confused you or felt incomplete?
🔸 What concepts took you the longest to understand?
🔸 What would have helped you get productive with Filament faster?
One thing we are for sure improving is the accessibility of the "utility injection" parameters you have available in each configuration function. In v4 it will be clear exactly which can be injected in each function.
Some topics might not fit perfectly in the docs, but they could be covered in video examples - so if you’ve ever thought, "I wish there was a video demonstrating a use case for X!", let us know!
We want to make sure Filament v4 is as accessible as possible, whether you're building your first admin panel or scaling a complex multi-panel app. Your feedback will directly shape the next generation of learning resources.
Drop your thoughts in the comments! We’re listening.
https://redd.it/1izdfkm
@r_php
Hey everyone! As we gear up for Filament v4, one of our big priorities is rewriting the documentation to make it clearer, more complete, and easier to navigate. At the same time, we’re planning a wider education strategy, probably including official video courses.
But we need your feedback! If you've learned Filament - whether recently or way back in v1 - what were the biggest pain points?
🔸 What parts of the docs confused you or felt incomplete?
🔸 What concepts took you the longest to understand?
🔸 What would have helped you get productive with Filament faster?
One thing we are for sure improving is the accessibility of the "utility injection" parameters you have available in each configuration function. In v4 it will be clear exactly which can be injected in each function.
Some topics might not fit perfectly in the docs, but they could be covered in video examples - so if you’ve ever thought, "I wish there was a video demonstrating a use case for X!", let us know!
We want to make sure Filament v4 is as accessible as possible, whether you're building your first admin panel or scaling a complex multi-panel app. Your feedback will directly shape the next generation of learning resources.
Drop your thoughts in the comments! We’re listening.
https://redd.it/1izdfkm
@r_php
Reddit
From the laravel community on Reddit
Explore this post and more from the laravel community
The Laravel VS Code Extension is (officially) HERE presented by Josh Cirre
Discover it in this video :
https://www.youtube.com/watch?v=4CI1zfEiImI
https://redd.it/1izdu7g
@r_php
Discover it in this video :
https://www.youtube.com/watch?v=4CI1zfEiImI
https://redd.it/1izdu7g
@r_php
YouTube
The Laravel VS Code Extension is (officially) HERE
If you're a VS Code user, then the Laravel VS Code extension is one of the first things you'll want to install as a Laravel developer. So here's 5 things that the Laravel VS Code official extension brings to you.
To install, search for "Laravel" in the VS…
To install, search for "Laravel" in the VS…
SymfonyLive Berlin 2025: Building really fast applications
https://symfony.com/blog/symfonylive-berlin-2025-building-really-fast-applications?utm_source=Symfony%20Blog%20Feed&utm_medium=feed
https://redd.it/1izgf95
@r_php
https://symfony.com/blog/symfonylive-berlin-2025-building-really-fast-applications?utm_source=Symfony%20Blog%20Feed&utm_medium=feed
https://redd.it/1izgf95
@r_php
Symfony
SymfonyLive Berlin 2025: Building really fast applications (Symfony Blog)
Build ultra-fast applications with Tobias Nyholm! Learn key strategies, quick wins, and deep optimizations to achieve response times under 15ms—without relying on Varnish!
Avoiding invalid state with guard clauses
https://www.youtube.com/watch?v=YyEqE_m7i9w
https://redd.it/1izht1i
@r_php
https://www.youtube.com/watch?v=YyEqE_m7i9w
https://redd.it/1izht1i
@r_php
YouTube
Avoiding invalid state with guard clauses
👨💻 Learn Test-Driven Development with Laravel!
https://tddwithlaravel.com
Sign up to 30 Days of Laravel 👉🏻 https://30daysoflaravel.com
👨💻 Sign up to my newsletter and receive PHP, JS and Laravel news in a weekly-basis:
https://subscribe.mateusguimaraes.com…
https://tddwithlaravel.com
Sign up to 30 Days of Laravel 👉🏻 https://30daysoflaravel.com
👨💻 Sign up to my newsletter and receive PHP, JS and Laravel news in a weekly-basis:
https://subscribe.mateusguimaraes.com…