To get all rows from a table, I have to use Model::all() but (from good reason) this doesn\'t gives me back the soft deleted rows. Is there a way I can accomplish t
Model::all()
Model::withTrashed()->get();
Property::withTrashed()->find($list->property_id); or
// 1 is unique id of the table
Model::withTrashed()->find(1);