1
0

CRUD Ticket Insidace Type

This commit is contained in:
Wian Drs
2026-06-25 13:06:24 +07:00
parent faab64e0dd
commit ad472a9880
10 changed files with 338 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class TicketIncidentType extends Model
{
use SoftDeletes;
protected $fillable = [
'name',
'is_active'
];
protected $casts = [
'is_active' => 'boolean'
];
}