laravel创建,删除,更新hasMany有很多字段

时间:2016-02-02 09:03:09

标签: php laravel has-many

我是laravel的新手。我有2张桌子

class Client extends Model
{
    protected $fillable = ['name'];

    public function clientmoreinfo()
    {
        return $this->hasMany('App\Moreinfoclient');
    }
}

class Moreinfoclient extends Model
{

    protected $table = 'clients_additionalfield';
    protected $fillable = ['client_id', 'nameinput', 'valueinput'];

    public function clients()
    {
        return $this->belongsTo('App\Client');
    }
}

我需要能够一次添加许多其他字段,如下所示: enter image description here

这是我添加任意数量条目的方式,更重要的是,我如何在以后更新或删除它们?

提前谢谢大家!

0 个答案:

没有答案
相关问题