As long as use SoftDelete; is written in the model, the data cannot be queried in pages. How is this going? ? ? ? ?
Waiting online........................
God helps those who help themselves.
Soft deletion and real deletion
$user?=?model('User'); $user::destroy(1);???//?軟刪除$user::destroy(1,true);???//?真實刪除$user->delete();?????//?軟刪除$user->delete(true);??//?真實刪除
By default, the query data does not include soft deleted data. If it needs to be included, query like this:
$user?=?model('User');$data?=?$user::withTrashed()->select();
If you only query soft deleted data, use this:
$user?=?model('User');$data?=?$user::onlyTrashed()->select();