atcheck/app/Subject.php

13 lines
195 B
PHP
Raw Normal View History

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Subject extends Model
{
protected $fillable = [
2019-12-01 19:31:49 +01:00
'name', 'type', 'weekday', 'time', 'room_id', 'user_id'
];
}