标签: php laravel
使用此语法连接模型是否存在缺点:
return $this->belongsToMany(Role::class, 'role_permission');
取代标准字符串变体:
return $this->belongsToMany('Admin\Model\Role', 'role_permission');
我更喜欢第一种语法,因为它简洁,也是IDE的一个很好的功能,可以将类识别为类,而不是字符串。