Cetaklabel/Entities/DocumentDetail.php
daeng.deni@dharma.or.id a9556ffdd3 Update Module Document
- Add Cetak Label
- Add Cetak Odner
- Add Generate QRCode
- Add Cetak Segel
- Add List Document Setiap Cetak Labeld Dus Atau Odner
2023-05-25 08:53:06 +07:00

43 lines
980 B
PHP

<?php
namespace Modules\Cetaklabel\Entities;
class DocumentDetail extends BaseModel
{
protected $fillable = [
'kode',
'document_id',
'document_type_id',
'nama_nasabah',
'no_rekening',
'no_cif',
'group',
'group',
'tanggal_upload',
'tanggal_dokumen',
'nomor_dokumen',
'perihal',
'kode_cabang',
'jumlah_halaman',
'custom_field_1',
'custom_field_2',
'custom_field_3',
'custom_field_4',
'file',
'no_urut',
'kategori',
'keterangan',
'status'
];
public function document()
{
return $this->belongsTo(Document::class);
}
public function document_type()
{
return $this->belongsTo(DocumentType::class);
}
}