1

一对一关联

表 demo_users

idusernamepasswordemail
1tom123456tom123@qq.com

定义关联

class User extends Model
{
    protected $table = 'demo_users';

    /*
    *    若希望在User界面访问到Profile的内容,则必须定义下面的关系
    *    即:User hasOne Profile 【一个User 可以有一个 Profile】
    *   (Profile::class,'user_id','id')
    *   (关联模型,从表外键,主表主键)
    *   注意:无论是主模型还是从模型,其主外键定义都是一样的
    */
    public function profile(){
        return $this->hasOne(Profile::class,'user_id','id');
    }
}

控制器中访问关联表数据


// 在 User 控制器中展示 Profie 的数据
// Grid
    $grid->column('profile.nick_name',__('NickName'));
    $grid->column('profile.avatar_url',__('Avatar'));
// Show
    $show = new Show(User::with('profile')->findOrFail($id));
    ...
    $show->field('anyName',__('Nick Name'))->as(function (){
        return $this->getRelation('profile')->nick_name;
    });
    $show->field('someName',__('Avatar'))->as(function (){
        return $this->getRelation('profile')->avatar_url;
    });
    ...

表 demo_profiles

iduser_idnick_nameavatar_url
11tom cathttp://.......

定义关联

class Profile extends Model
{
    protected $table = 'demo_profiles';
    /*
    *    若希望在 Profile 界面访问到 User 的内容,则必须定义下面的关系
    *    即:Profile belongsTo User 【一个Profle 属于 一个User】
    *   (User::class,'user_id','id')
    *   (关联模型,从表外键,主表主键)
    *   注意:无论是主模型还是从模型,其主外键定义都是一样的
    */
    public function user(){
        return $this->belongsTo(User::class,'user_id','id');
    }
}

控制器中访问关联表数据

// 在 Profie 控制器中展示 User 的数据
// Grid
    $grid->column('user.username', __('User Name'));
    $grid->column('user.email', __('Email'));
// Show
    $show = new Show(User::with('profile')->findOrFail($id));
    ...
    $show->field('anyName', __('User name'))->as(function (){
        return $this->getRelation('user')->username;
    });
    $show->field('someName', __('Email'))->as(function (){
        return $this->getRelation('user')->email;
    });
    ...

后山人
272 声望39 粉丝

这个是一个典型的,前后端分离的开发框架,而且很多前后端代码,都可以很好的生成,无需写代码,大大减少程序员编写代码的数量。提高效率,降低成本!