<?php

namespace App\Model\Master;

use Illuminate\Database\Eloquent\Model;

class LeadmineProRegistration extends Model
{
    protected $table = 'leadmiepro_registrations';
    protected $fillable = [
        'name',
        'email',
        'company_name',
        'phone',
        'password',
        'email_otp',
        'mobile_otp',
        'email_verified_at',
        'mobile_verified_at',
        'email_sent_admin',
        'email_sent_user',
        'message',
        'type'
    ];
}
