update history corporate

This commit is contained in:
2023-09-22 10:53:03 +07:00
parent 969eb93509
commit 72958019f1
8 changed files with 87 additions and 11 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Altek\Accountant\Contracts\Recordable;
class ExclusionImport extends Model
{
use HasFactory;
protected $fillable = [
'corporate_id',
'file_name',
'file_path',
];
protected $hidden = [
'created_at',
'updated_at',
];
}