mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 14:42:31 +01:00
11 lines
137 B
PHP
11 lines
137 B
PHP
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class Setting extends Model {
|
||
|
|
||
|
public $timestamps = false;
|
||
|
}
|