Hello fellow developers! π
The Laravel community is known for its continual growth and evolution. Laravelβs latest release, Laravel 10.x, brings a host of new improvements and features that are sure to make your web development tasks more manageable than ever before. So, fasten your seatbelts and let's dive into the new Laravel 10.x! π
- Revamped Exception Report Method π:
In Laravel 10.x, you can now add context to your exception reports. This feature is helpful for debugging, as you may now add extra information to the exception context.
This is how you can leverage this feature:
public function report(Exception $exception)
{
$this->context(['account_id' => 1]);
parent::report($exception);
}
- Eloquent hasManyThrough Deep Relationship π οΈ:
Laravel 10.x has extended the potential of Eloquent by introducing a new "deep" relationship: hasManyDeepThrough
. You can use this to access distant relationships through a pivot table.
Here is how you can use it:
class Country extends Model
{
public function posts()
{
return $this->hasManyDeepThrough(Post::class, User::class, City::class);
}
}
So, in the code snippet above, even though Country
and Post
are not directly linked, by using hasManyDeepThrough
, you can retrieve all posts from all users in a country. Excellent, isn't it? πͺ
- Unique On Delete Validation Rule π©:
This is an interesting feature Laravel 10.x introduces. You can now leverage the rule UniqueOnDelete
that validates unique fields only when the model is deleted.
Simply use it like so:
public function rules()
{
return [
'username' => ['unique_on_delete:users,username,NULL,id,account_id,' . $this->account->id],
];
}
The new Laravel 10.x is definitely a game changer, making your web developments tasks smoother and easier. These are only a few of the many exciting changes this new Laravel version introduces. So do not hesitate to explore these features further.
Below are some references where you can find more in-depth information on these topics. (Please note that since technology evolves rapidly, some of these links may not be up-to-date):
- Laravel Docs: Exception Handling
- Laravel Docs: Eloquent Relationships
- Laravel Docs: Validation Rules
Happy coding, and remember, great developers are forever students! π
Keep learning and keep sharing the knowledge! π‘π₯