File: /var/www/html/fieldblaze-customers/app/Models/Customer.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Customer extends Model
{
public $timestamps = false;
protected $table = "tbl_customer";
protected $fillable = [
'id', 'UserId', 'FirstName', 'LastName', 'Email', 'Mobile', 'Password', 'TempPassword', 'OtpPassword', 'OtpVerified', 'OtpCreatedDate', 'Address', 'City', 'Country', 'State', 'PostalCode', 'UserProfileImage', 'CompanyName', 'CompanyCode', 'RegDate', 'RegExpDate', 'Status', 'UserType', 'isActive', 'EmailVerified', 'IsDeleted', 'CrmId', 'ManagerId', 'Updated_by', 'Updated_at', 'ModifiedDate', 'Created_by', 'Created_at'
];
}