30 lines
577 B
PHP
30 lines
577 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Billing\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
use Modules\Billing\Database\Factories\BillingComponentFactory;
|
||
|
|
||
|
class BillingComponent extends Model
|
||
|
{
|
||
|
use HasFactory;
|
||
|
|
||
|
protected $table = 'tbl_billing_components';
|
||
|
/**
|
||
|
* The attributes that are mass assignable.
|
||
|
*/
|
||
|
protected $fillable = [
|
||
|
'title',
|
||
|
'alias',
|
||
|
'unit',
|
||
|
'price',
|
||
|
'taxable',
|
||
|
'createdBy',
|
||
|
'updatedBy',
|
||
|
'remarks',
|
||
|
'status'
|
||
|
];
|
||
|
|
||
|
}
|