<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PaymentTerm extends Model
{
public $timestamps = false;
protected $table = "tbl_payment_terms";
protected $fillable = [
'Name',
'Description',
'Created_by',
'Updated_by',
'Status',
'IsDeleted'
];
function getCreatedByAttribute($value)
{
return ucFirst($value);
}
function getUpdatedByAttribute($value)
{
return ucFirst($value);
}
}