Files
numstation-web/app/Models/BookkeepingDocumentCategory.php
2023-12-22 12:35:55 +08:00

22 lines
374 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class BookkeepingDocumentCategory extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'name',
'status',
];
}