The essential news about content management systems and mobile technology. Powered by Perfect Publisher and XT Search for Algolia.
The News Site publishes posts to the following channels: Facebook, Instagram, Twitter, Telegram, Web Push, Tumblr, and Blogger.
Taylor tweeted this morning:
"I'm excited to announce that Laravel has raised a $57M Series A in partnership with Accel."
"I believe that Laravel is the most productive way to build full-stack web applications, and Laravel Cloud will be the platform for shipping those applications that this community deserves."
Partnering with Accel has allowed Laravel start building a world-class engineering and leadership team that has resulted in Laravel Cloud (demoed at Laracon) and also another product that will be announced at Laracon AU in November.
He also follows up with some important takeaways from the announcement.
First, I’m not going anywhere. I’m still leading Laravel as CEO, and I’m working closely with all of our teams to ensure we’re building the best products possible for our community.
Second, we remain committed to open source. Since partnering with Accel, we’ve hired additional engineering support dedicated to open source development. I also remain the primary curator of all features in the Laravel framework. Inertia 2.0 and our first-party VS Code extension are a direct result of our increased open source engineering capacity. Accel deeply understands open source and developer focused tooling, with previous investments in Sentry, Vercel, and Linear.
For more info on this, they've made a special announcement video with answers to some common questions:
<iframe width="1238" height="696" src="https://www.youtube.com/embed/BCV_357WGaM" title="Laravel Special Announcement" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>**Where is the money going? **
Scaling up the team by hiring in many positions and building out the new Laravel Cloud. Also, they are putting paid employees on the open source side to continue working, building, and making Laravel even better.
This is a breaking story and we will update this as more information is out.
The post Laravel raises a $57 million Series A from Accel appeared first on Laravel News.
Join the Laravel Newsletter to get all the latest Laravel articles like this directly in your inbox.
Read more https://laravel-news.com/laravel-raises-57-million-series-a
The Laravel team released v11.22 this week, with the
chaperone()
Eloquent method for inverse relations,
support for passing backed Enums to Queuable methods, the ability
to pass backed Enums to route ->name()
and
->domain()
methods, and more.
Samuel Levy contributed the Eloquent inverse/chaperone model relation that Taylor demonstrated in his 2024 Larcon US keynote during the open-source part of the talk.
public function comments(): HasMany
{
return $this->hasMany(Comment::class)->chaperone('post');
}
The chaperone()
/inverse()
method
avoids unexpected N+1 queries by linking back to the parent after
the relationship query has run. The above relationship will link
the appropriate Post
model in the correct relation on
Comment
instances (with scopes intact).
See Pull Request #51582 for more details.
Seth Phat contributed support for BackedEnum in Queuable trait methods:
onQueue()
onConnection()
allOnQueue()
allOnConnection()
Here's an example from the pull request:
use App\Enums\QueueConnection;
use App\Enums\QueueName;
// Before
public function register()
{
$user = User::create([...]);
SendWelcomeEmailJob::dispatch($user)
->withConnection(QueueConnection::REDIS->value)
->onQueue(QueueName::HIGH->value);
}
// After
public function register()
{
$user = User::create([...]);
SendWelcomeEmailJob::dispatch($user)
->withConnection(QueueConnection::REDIS)
->onQueue(QueueName::HIGH);
}
@NickSdot contributed passing BackedEnum
to Route domain()
and name()
methods:
// Before
Route::domain(InterfaceDomain::Marketing->value)
->name(Routes::Home->value)
->get('/contact', ContactController::class);
// After
Route::domain(InterfaceDomain::Marketing)
->name(Routes::Home)
->get('/'contact, ContactController::class);
You can see the complete list of new features and updates below and the diff between 11.21.0 and 11.22.0 on GitHub. The following release notes are directly from the changelog:
Model::getEventDispatcher()
by
@inmula in https://github.com/laravel/framework/pull/52602withProgressBar
in
InteractsWithIO by @robinmoisson
in https://github.com/laravel/framework/pull/52623The post Chaperone Eloquent Models in Laravel 11.22 appeared first on Laravel News.
Join the Laravel Newsletter to get all the latest Laravel articles like this directly in your inbox.
Read more https://laravel-news.com/laravel-11-22-0
Since moving PostSecret to WordPress.com in 2013, Frank Warren’s iconic platform has empowered millions to share their secrets in a safe place. In the last ten years, that simple mission has propelled PostSecret to become one of the most highly trafficked ad-free blogs on the planet. In this video, Frank dives into the origins of his project and how Automattic’s tools help bring the mission to life.
Learn more about PostSecret and get an exclusive coupon when you click below:
Get 15% offOr, apply coupon code PostSecret15 at checkout for 15% off any plan.
Read more https://wordpress.com/blog/2024/09/03/postsecret-2/
The Laravel ERD package automatically generates Entity-Relationship Diagrams from your Laravel models and displays them using erd-editor. As someone who recently downloaded MySQL workbench to try to generate an ERD diagram, using this package is way easier, and the results look beautiful:
The project's readme has advanced instructions on excluding tables and generating an SVG file that you can distribute to your team or with your documentation. I noticed the SVG generation was not working for me (this package is still brand new and under development). To get started with this package, view the installation and usage instructions at recca0120/laravel-erd on GitHub.
The post Generate Entity-Relationship Diagrams with Laravel appeared first on Laravel News.
Join the Laravel Newsletter to get all the latest Laravel articles like this directly in your inbox.
Read more https://laravel-news.com/laravel-entity-relationshiop-diagrams
The team at Adeva is doing a Laravel Developer Survey.
The Laravel Developer Survey is designed to map out the entire Laravel ecosystem, providing insights into everything Laravel. Apart from tech stack and tool choices, it explores the framework usage across industries and product scales, the activity of local communities, and more. It seeks to inform CTOs about the adoption of Laravel in large-scale systems, offer hiring insights to talent professionals, provide developers with salary benchmarks, and map the local Laravel communities and events.
This survey is a key resource for anyone involved in the Laravel ecosystem, from decision-makers to developers. By participating, contributors will help build a clearer picture of the current state of Laravel, empowering the community with data that can drive informed decisions and strengthen the ecosystem as a whole.
To take part in the survey follow this link
The post Laravel Developer Survey appeared first on Laravel News.
Join the Laravel Newsletter to get all the latest Laravel articles like this directly in your inbox.
Read more https://laravel-news.com/laravel-developer-survey
Page 5 of 1348