1.第一个问题。
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
public function phone(){
return $this->hasOne('App\Phone', 'foreign_key', 'local_key');
}
}
如果我需要local_key 来作为判断条件的话,那么foreign_key我需要怎么填写?
是return $this->hasOne('App\Phone', '', 'user_id');吗?
2.第二个问题。
比如我的的News表里面有多个tags,如果我的tags_id是以字符串逗号相隔的形式来存储属性的,那么,我如果用elq来获取 某个文章拥有的所有属性,我应该怎么查询? 或者说我的news对应多个属性值,我应该如何存储。。
麻烦了教主。。