| | |
| | | ->with(['logo', 'category']) |
| | | ->find(); |
| | | if ($detail) { |
| | | $detail['logos'] = $detail['logo']['file_path']; |
| | | $detail['logos'] = $detail['logo']?$detail['logo']['file_path']:''; |
| | | $detail['category_name'] = $detail['category']['name']; |
| | | unset($detail['logo']); |
| | | unset($detail['category']); |
| | |
| | | ->order(['create_time' => 'desc']) |
| | | ->paginate($params); |
| | | } |
| | | public static function getUserStore($user_id) |
| | | { |
| | | $model = new self(); |
| | | return $model->where('user_id', '=', $user_id) |
| | | ->where('is_delete', '=', 0) |
| | | ->where('is_recycle', '=', 0) |
| | | ->find(); |
| | | } |
| | | } |