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