public function restore()
{
$car=new CarModel;
$map['brand_name']=['=',session('brand_name')];
$data2=CarModel::onlyTrashed()->select();
$ff=$car->where($map)->where($data2)->select();
dump($ff);die;
return $this->fetch();
}单独查询当前用户的数据我会,单独查询软删除也会,但是一起查询就不会了,请问怎么查?