Files
mareike/app/RelationModels/EventEatingHabits.php

12 lines
228 B
PHP

<?php
namespace App\RelationModels;
use App\Scopes\CommonModel;
class EventEatingHabits extends CommonModel
{
protected $table = 'event_allowed_eating_habits';
protected $fillable = ['event_id', 'eating_habit_id'];
}