Hey guys,
I'm using a belongsToMany() relation where the pivot table contain a deleted_at column.
But in the result, I get all the entities including the deleted ones.
return $this->belongsToMany(View::class, 'view_users'); // return me the entities with a deleted_at != NULL in 'view_users'
Do you know if there is a solution for that ?