Page 1 of 1

Laravel 11 Eloquent ORM: Useful but Lesser Known Features

Posted: Thu Jan 30, 2025 4:07 am
by sumaiyakhatun26
Ercole Palmeri 2024-12-11
Laravel 11 Eloquent ORM
Laravel is a feature-rich and constantly evolving MVC framework.
Eloquent ORM in Laravel provides a simple and efficient implementation of ActiveRecord for working with your database.
In this article we look at some lesser-known and very useful features.
Tables of contents
Deleted_at column for soft delete
How to handle soft deletes
Clone a model
Create a meeting agenda
This all brings us to the next topic, namely: the meeting agenda. Lately, indonesia rcs data I have become increasingly demanding when it comes to showing up at any meetings. And I always, absolutely always want to know the agenda before the meeting.

Because if a meeting doesn't have an agenda, what will it really be about?

I will discuss how we manage something like this – the meeting agenda – based on our cyclical or even daily meetings.

We have it organized in such a way that a separate project was created in Asana. In addition, I have my own management project, where I collect subtasks from those projects. So they are simultaneously attached to several projects.
Save models and relationships
How to get basic features
How to check if the model has changed
How to change attributes
3 minutes

Let's see in this article how Laravel 11 Eloquent ORM can help us solve specific problems.

deleted_atFor soft deletion of colon
Laravel handles soft deletes via a column deleted_at. This means that we have a property available that allows us to set the validity of soft deletes.