mdbpanel/app/Schedule.php

17 lines
227 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Schedule extends Model
{
/**
* The attributes that are not mass assignable.
*
* @var array
*/
protected $guarded = [ 'id' ];
}