mustang-framework/location-container

Mustang 框架的位置容器。

安装: 710

依赖项: 0

建议者: 0

安全性: 0

星星: 0

关注者: 1

分支: 0

公开问题: 0

类型:mustang-container

dev-master 2023-04-24 09:38 UTC

This package is auto-updated.

Last update: 2024-09-24 12:40:46 UTC


README

Mustang 位置容器

将地址添加到所需的模型中,例如 UserCustomer 等。

    /**
     * Get all of the models addresses.
     */
    public function addresses(): MorphMany
    {
        return $this->morphMany(Address::class, 'addressable');
    }