mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-03-14 16:01:44 +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',
|
||
|
];
|
||
|
}
|