Tagged articles
2 articles
Page 1 of 1
21CTO
21CTO
Feb 13, 2024 · Backend Development

How Laravel 11 Introduces a Built‑in Health Check Route (/up)

Laravel 11 adds a default health‑check endpoint accessible via the /up route, configured in bootstrap/app.php, which dispatches a DiagnosingHealth event and returns an animated "Application up" page to verify application status.

LaravelLaravel 11PHP
0 likes · 2 min read
How Laravel 11 Introduces a Built‑in Health Check Route (/up)
php Courses
php Courses
Feb 6, 2024 · Backend Development

Method‑Based Model Casting in Laravel 11

Laravel 11 introduces a method‑based model casting system that replaces the traditional $casts property, allowing developers to define type conversions via Attribute methods, which improves code clarity, flexibility, testability, and overall maintainability of Eloquent models.

EloquentLaravelLaravel 11
0 likes · 7 min read
Method‑Based Model Casting in Laravel 11