Update Master Formularium dan Corporate formularium

This commit is contained in:
2023-09-25 16:21:38 +07:00
parent 72958019f1
commit 738392c143
33 changed files with 2807 additions and 261 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Altek\Accountant\Contracts\Recordable;
class FormulariumTemplate extends Model
{
use HasFactory;
protected $fillable = [
'name',
'description',
];
protected $hidden = [
'created_at',
'updated_at',
// 'deleted_at',
'created_by',
'updated_by',
// 'deleted_by',
];
}