File: /var/www/html/fieldsblaze-heroku/app/Models/Product.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
public $timestamps = false;
protected $table = 'tbl_products';
protected $fillable = [
'Description',
'Family',
'ProductName',
'ProductCode',
'ThumbnailUrl',
'Unit',
'GstSlab',
'CrmId',
'IsDeleted',
'Status',
'Created_by',
'Created_at',
'Updated_by',
'Updated_at',
'DeviceName'
];
function getCreatedByAttribute($value)
{
return ucFirst($value);
}
function getUpdatedByAttribute($value)
{
return ucFirst($value);
}
}