관리-도구
편집 파일: QuoteInput.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; class QuoteInput extends Model { protected $fillable = ['language_id', 'type', 'label', 'name', 'placeholder', 'required', 'active']; public function quote_input_options() { return $this->hasMany('App\QuoteInputOption'); } public function language() { return $this->belongsTo('App\Language'); } }