Writeoff/Entities/Product.php

21 lines
402 B
PHP
Raw Normal View History

2023-11-15 08:00:51 +00:00
<?php
namespace Modules\Writeoff\Entities;
class Product extends BaseModel
{
protected $fillable = [
'kode',
'name',
'status',
'authorized_at',
'authorized_status',
'authorized_by',
];
public function rekenings()
{
return $this->hasMany(Rekening::class);
}
}