File: /var/www/html/fieldsblaze-heroku/app/Models/Contact.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Contact extends Model
{
public $timestamps = false;
protected $table = 'tbl_contact';
protected $fillable = [
'FirstName',
'LastName',
'Mobile',
'AlternateMobile',
'Email',
'AlternateEmail',
'DateOfBirth',
'WeddingAnniversary',
'Customer',
'IsPrimary',
'StreetAddress',
'City',
'Country',
'State',
'PostalCode',
'Description',
'Status',
'Created_by',
'Created_at',
'Updated_by',
'Updated_at',
'IsDeleted',
'CrmId',
'DeviceName'
];
function getCreatedByAttribute($value)
{
return ucFirst($value);
}
function getUpdatedByAttribute($value)
{
return ucFirst($value);
}
}