Laravel 8 模型结构
2021-07-08 09:52 更新
接下来,再看看建立关联的模型定义:
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Image extends Model
{
/**
* 获取拥有此图片的模型
*/
public function imageable()
{
return $this->morphTo();
}
}
class Post extends Model
{
/**
* 获取文章图片
*/
public function image()
{
return $this->morphOne('App\Models\Image', 'imageable');
}
}
class User extends Model
{
/**
* 获取用户图片
*/
public function image()
{
return $this->morphOne('App\Models\Image', 'imageable');
}
}
以上内容是否对您有帮助:
更多建议: