use Illuminate\Database\Eloquent\Model;
class User extends Model
{
/**
* 重写toArray方法
*/
public function toArray(){
//获取api用户
$me=app(Request::class)->user("api");
if ($me!=null)
{
if ($me instanceof AdminUser)
{
//如果是admin用户
//TODO:使用admin用户的显示规则
}else if($me instanceof User){
if ($me->id==$this->id)
{
//如果是自己
//TODO:使用面向自己的显示规则
}else{
//如果是其他普通用户
//TODO:使用面向其他普通用户的显示规则
}
}
}
return parent::toArray();
}
}