File: /var/www/html/fieldsblaze-heroku/app/Models/TermsConditions.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TermsConditions extends Model
{
protected $table = 'tbl_terms_conditions';
protected $fillable = [
'TermsId',
'TermsCategory',
'Description',
'Status',
'IsDeleted',
'DeviceName',
'Created_by',
'Created_at',
'Updated_by',
'Updated_at',
'CrmId'
];
function getCreatedByAttribute($value)
{
return ucFirst($value);
}
function getUpdatedByAttribute($value)
{
return ucFirst($value);
}
}