관리-도구
편집 파일: Promotion.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Promotion extends Model { public $fillable = ['thema', 'body', ' saloon_id ', 'type_tattoo', 'type_piercing', 'user_id', 'counts']; public function saloons() { return $this->belongsTo('App\Saloon', 'saloon_id'); } public function emails(){ return $this->hasMany('App\PromotionEmail', 'promotion_id'); } }