*/ protected $fillable = [ 'name', 'legal_name', 'cnpj', 'profile_image_path', 'pbx_hosting', 'activation_date', 'carrier', 'access_type', 'server_ip', 'root_password', // Lembre-se de criptografar isso! 'has_call_center', 'has_voice_gateway', 'has_fop2', 'modules', 'whatsapp_number', 'whatsapp_activation_date', ]; /** * Os atributos que devem ser convertidos para tipos nativos. * * @var array */ protected $casts = [ 'modules' => 'array', 'has_call_center' => 'boolean', 'has_voice_gateway' => 'boolean', 'has_fop2' => 'boolean', 'activation_date' => 'date', 'whatsapp_activation_date' => 'date', ]; }