mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 07:17:22 +08:00
20 lines
291 B
PHP
20 lines
291 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
/**
|
||
|
* @property int $id
|
||
|
* @property string $name
|
||
|
* @property string $description
|
||
|
*/
|
||
|
class Scope extends Model
|
||
|
{
|
||
|
public $timestamps = false;
|
||
|
|
||
|
protected $fillable = [
|
||
|
'name', 'description',
|
||
|
];
|
||
|
}
|