관리-도구
편집 파일: Size.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Size extends Model { use SoftDeletes; /** * The attributes that should be mutated to dates. * * @var array */ protected $dates = ['deleted_at']; protected $table = 'size'; protected $fillable = [ 'size', 'catalogs_id', 'price', 'coef' ]; public function catalogs() { return $this->hasOne('App\Catalogs', 'id', 'catalogs_id'); } }