27 lines
1.0 KiB
PHP
27 lines
1.0 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @property int $id
|
||
|
|
* @property string $name
|
||
|
|
* @property string $slug
|
||
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
||
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
||
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Level newModelQuery()
|
||
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Level newQuery()
|
||
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Level query()
|
||
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Level whereCreatedAt($value)
|
||
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Level whereId($value)
|
||
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Level whereName($value)
|
||
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Level whereSlug($value)
|
||
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Level whereUpdatedAt($value)
|
||
|
|
* @mixin \Eloquent
|
||
|
|
*/
|
||
|
|
class Level extends Model
|
||
|
|
{
|
||
|
|
protected $fillable = ['name', 'slug'];
|
||
|
|
}
|