mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 22:52:32 +01:00
13 lines
224 B
PHP
13 lines
224 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Setting extends Model {
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = ['show_date', 'show_genre', 'episode_spoiler_protection'];
|
|
}
|