27 lines
424 B
PHP
27 lines
424 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* @property int id
|
|
* @property string name
|
|
*/
|
|
class Category extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'categories';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $fillable = [
|
|
'name',
|
|
];
|
|
}
|