add crud signer
This commit is contained in:
30
Entities/Signer.php
Normal file
30
Entities/Signer.php
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Konfirmasibank\Entities;
|
||||
|
||||
use Spatie\Activitylog\LogOptions;
|
||||
use Spatie\Activitylog\Traits\LogsActivity;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
class Signer extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $primaryKey = 'id';
|
||||
|
||||
//public $incrementing = false;
|
||||
|
||||
protected $fillable = [
|
||||
"'id',
|
||||
'nomor_cif'
|
||||
'deputy_director_name',
|
||||
'executive_officer_name',
|
||||
'keterangan',
|
||||
'status',"
|
||||
];
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user