rsabhk-blade/app/Models/DocumentType.php
2025-04-27 07:27:50 +07:00

22 lines
420 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class DocumentType extends Model
{
use HasFactory, SoftDeletes;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $table = "document_types";
protected $guarded = ["id"];
}