├── .circleci └── config.yml ├── .docker ├── config │ ├── conf.d │ │ └── default.conf │ ├── config │ │ ├── conf.d │ │ │ └── default.conf │ │ ├── fpm-pool.conf │ │ ├── nginx.conf │ │ ├── php.ini │ │ └── supervisord.conf │ ├── fpm-pool.conf │ ├── nginx.conf │ ├── php.ini │ └── supervisord.conf ├── octane │ ├── .rr.prod.yaml │ ├── FrankenPHP │ │ └── supervisord.frankenphp.conf │ ├── RoadRunner │ │ ├── .rr.prod.yaml │ │ └── supervisord.roadrunner.conf │ ├── Swoole │ │ └── supervisord.swoole.conf │ ├── entrypoint.sh │ ├── opcache.ini │ ├── php.ini │ ├── supervisord.app.conf │ ├── supervisord.app.roadrunner.conf │ ├── supervisord.horizon.conf │ └── utilities.sh ├── php.ini ├── start-container ├── supervisord.conf ├── supervisord.horizon.conf ├── supervisord.scheduler.conf ├── supervisord.worker.conf └── utilities.sh ├── .env.example ├── .env.testing ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── sweep-template.yml ├── dependabot.yml ├── issue_template.md └── workflows │ ├── install.yml │ ├── main.yml │ ├── security.yml │ └── tests.yml ├── .gitignore ├── Dockerfile ├── README.md ├── app ├── Actions │ ├── Fortify │ │ ├── CreateNewUser.php │ │ ├── CreateNewUserWithTeams.php │ │ ├── PasswordValidationRules.php │ │ ├── ResetUserPassword.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php │ ├── Helpdesk │ │ └── CreateTicketFromEmail.php │ ├── Jetstream │ │ ├── AddTeamMember.php │ │ ├── CreateTeam.php │ │ ├── DeleteTeam.php │ │ ├── DeleteUser.php │ │ ├── DeleteUserWithTeams.php │ │ ├── InviteTeamMember.php │ │ ├── RemoveTeamMember.php │ │ └── UpdateTeamName.php │ └── Socialstream │ │ ├── CreateConnectedAccount.php │ │ ├── CreateUserFromProvider.php │ │ ├── CreateUserWithTeamsFromProvider.php │ │ ├── GenerateRedirectForProvider.php │ │ ├── HandleInvalidState.php │ │ ├── ResolveSocialiteUser.php │ │ ├── SetUserPassword.php │ │ └── UpdateConnectedAccount.php ├── Console │ ├── Commands │ │ ├── ModuleCommand.php │ │ ├── PublishScheduledPosts.php │ │ ├── SendReminders.php │ │ └── UpdatePostAnalytics.php │ └── Kernel.php ├── Events │ └── ContactUpdated.php ├── Exceptions │ └── Handler.php ├── Filament │ ├── Admin │ │ ├── Pages │ │ │ └── ManageGeneralSettings.php │ │ └── Resources │ │ │ ├── AuditLogResource.php │ │ │ ├── ContactResource │ │ │ └── Widgets │ │ │ │ └── ContactStats.php │ │ │ ├── MenuResource │ │ │ └── Pages │ │ │ │ ├── CreateMenu.php │ │ │ │ ├── EditMenu.php │ │ │ │ └── ListMenus.php │ │ │ ├── ModuleResource.php │ │ │ ├── ModuleResource │ │ │ └── Pages │ │ │ │ ├── ListModules.php │ │ │ │ └── ViewModule.php │ │ │ └── SiteSettingsResource │ │ │ └── Pages │ │ │ ├── CreateSiteSettings.php │ │ │ ├── EditSiteSettings.php │ │ │ └── ListSiteSettings.php │ ├── App │ │ ├── Pages │ │ │ ├── .gitignore │ │ │ ├── CreateTeam.php │ │ │ ├── EditProfile.php │ │ │ ├── EditTeam.php │ │ │ ├── MailchimpIntegration.php │ │ │ ├── PersonalAccessTokensPage.php │ │ │ ├── ReportPage.php │ │ │ ├── TwilioIntegration.php │ │ │ ├── TwilioSettings.php │ │ │ ├── UpdateProfileInformationPage.php │ │ │ └── VisualPipeline.php │ │ ├── Resources │ │ │ ├── .gitignore │ │ │ ├── ActivationResource.php │ │ │ ├── ActivationResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateActivation.php │ │ │ │ │ ├── EditActivation.php │ │ │ │ │ └── ListActivations.php │ │ │ ├── AdvertisingAccountResource.php │ │ │ ├── AdvertisingAccountResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateAdvertisingAccount.php │ │ │ │ │ ├── EditAdvertisingAccount.php │ │ │ │ │ └── ListAdvertisingAccounts.php │ │ │ ├── AdvertisingDashboardResource.php │ │ │ ├── AdvertisingDashboardResource │ │ │ │ └── Pages │ │ │ │ │ └── ViewAdvertisingDashboard.php │ │ │ ├── AnalyticsDashboardResource.php │ │ │ ├── AnalyticsDashboardResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateAnalyticsDashboard.php │ │ │ │ │ ├── EditAnalyticsDashboard.php │ │ │ │ │ ├── ListAnalyticsDashboards.php │ │ │ │ │ └── ViewAnalyticsDashboard.php │ │ │ ├── CallSettingResource.php │ │ │ ├── CallSettingResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateCallSetting.php │ │ │ │ │ ├── EditCallSetting.php │ │ │ │ │ └── ListCallSettings.php │ │ │ ├── CompanyResource.php │ │ │ ├── CompanyResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateCompany.php │ │ │ │ │ ├── EditCompany.php │ │ │ │ │ └── ListCompanies.php │ │ │ ├── Components │ │ │ │ └── TimelineView.php │ │ │ ├── ContactResource.php │ │ │ ├── ContactResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateContact.php │ │ │ │ │ ├── EditContact.php │ │ │ │ │ └── ListContacts.php │ │ │ ├── DashboardWidgetResource.php │ │ │ ├── DashboardWidgetResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateDashboardWidget.php │ │ │ │ │ ├── EditDashboardWidget.php │ │ │ │ │ └── ListDashboardWidgets.php │ │ │ ├── FormBuilderResource.php │ │ │ ├── FormBuilderResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateFormBuilder.php │ │ │ │ │ ├── EditFormBuilder.php │ │ │ │ │ └── ListFormBuilders.php │ │ │ ├── LandingPageResource.php │ │ │ ├── LandingPageResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateLandingPage.php │ │ │ │ │ ├── EditLandingPage.php │ │ │ │ │ └── ListLandingPages.php │ │ │ ├── LeadResource.php │ │ │ ├── LeadResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateLead.php │ │ │ │ │ ├── EditLead.php │ │ │ │ │ └── ListLeads.php │ │ │ ├── MailchimpCampaignResource.php │ │ │ ├── MailchimpCampaignResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateMailchimpCampaign.php │ │ │ │ │ ├── EditMailchimpCampaign.php │ │ │ │ │ ├── ListMailchimpCampaigns.php │ │ │ │ │ ├── ViewABTestResults.php │ │ │ │ │ ├── ViewCampaignPerformance.php │ │ │ │ │ └── ViewMailchimpCampaign.php │ │ │ ├── MarketingCampaignResource.php │ │ │ ├── MarketingCampaignResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateMarketingCampaign.php │ │ │ │ │ ├── EditMarketingCampaign.php │ │ │ │ │ └── ListMarketingCampaigns.php │ │ │ ├── MessageResource.php │ │ │ ├── MessageResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateMessage.php │ │ │ │ │ ├── EditMessage.php │ │ │ │ │ └── ListMessages.php │ │ │ ├── NoteResource.php │ │ │ ├── NoteResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateNote.php │ │ │ │ │ ├── EditNote.php │ │ │ │ │ └── ListNotes.php │ │ │ ├── OAuthConfigurationResource.php │ │ │ ├── OAuthConfigurationResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateOAuthConfiguration.php │ │ │ │ │ ├── EditOAuthConfiguration.php │ │ │ │ │ └── ListOAuthConfigurations.php │ │ │ ├── OpportunityResource.php │ │ │ ├── OpportunityResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateOpportunity.php │ │ │ │ │ ├── EditOpportunity.php │ │ │ │ │ └── ListOpportunities.php │ │ │ ├── RelationManagers │ │ │ │ └── MessagesRelationManager.php │ │ │ ├── SocialMediaPostResource.php │ │ │ ├── SocialMediaPostResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateSocialMediaPost.php │ │ │ │ │ ├── EditSocialMediaPost.php │ │ │ │ │ └── ListSocialMediaPosts.php │ │ │ ├── TaskResource.php │ │ │ ├── TaskResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateTask.php │ │ │ │ │ ├── EditTask.php │ │ │ │ │ └── ListTasks.php │ │ │ ├── TicketResource.php │ │ │ ├── TicketResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateTicket.php │ │ │ │ │ ├── EditTicket.php │ │ │ │ │ └── ListTickets.php │ │ │ ├── WhatsAppNumberResource.php │ │ │ ├── WhatsAppNumberResource │ │ │ │ └── Pages │ │ │ │ │ ├── CreateWhatsAppNumber.php │ │ │ │ │ ├── EditWhatsAppNumber.php │ │ │ │ │ └── ListWhatsAppNumbers.php │ │ │ ├── WorkflowResource.php │ │ │ └── WorkflowResource │ │ │ │ └── Pages │ │ │ │ ├── CreateWorkflow.php │ │ │ │ ├── EditWorkflow.php │ │ │ │ └── ListWorkflows.php │ │ └── Widgets │ │ │ ├── .gitignore │ │ │ └── SocialLinksWidget.php │ ├── Pages │ │ └── ReportCustomizer.php │ ├── Resources │ │ ├── TeamSubscriptionResource.php │ │ └── TeamSubscriptionResource │ │ │ └── Pages │ │ │ ├── CreateTeamSubscription.php │ │ │ ├── EditTeamSubscription.php │ │ │ └── ListTeamSubscriptions.php │ └── Widgets │ │ └── AdPerformanceWidget.php ├── Helpers │ └── SiteSettingsHelper.php ├── Http │ ├── Controllers │ │ ├── AccountingIntegrationController.php │ │ ├── Api │ │ │ ├── ContactController.php │ │ │ ├── DealController.php │ │ │ └── TaskController.php │ │ ├── Auth │ │ │ └── AuthenticatedSessionController.php │ │ ├── Controller.php │ │ ├── DocumentController.php │ │ ├── ForgotPasswordController.php │ │ ├── FormBuilderController.php │ │ ├── GoogleCalendarController.php │ │ ├── HomeController.php │ │ ├── KnowledgeBaseController.php │ │ ├── LeadController.php │ │ ├── LeadFormController.php │ │ ├── LoginController.php │ │ ├── NotificationController.php │ │ ├── OAuthConfigurationController.php │ │ ├── OAuthController.php │ │ ├── QuoteRequestController.php │ │ ├── ReportController.php │ │ ├── ResetPasswordController.php │ │ ├── TaskController.php │ │ ├── TeamInvitationController.php │ │ ├── TicketController.php │ │ ├── TwilioController.php │ │ └── WorkflowController.php │ ├── Kernel.php │ ├── Livewire │ │ ├── CallManager.php │ │ ├── ContactCollaboration.php │ │ ├── CreateTeam.php │ │ ├── Dashboard.php │ │ ├── DealCard.php │ │ ├── OpportunityPipeline.php │ │ ├── ReportCustomizer.php │ │ ├── TaskForm.php │ │ └── TaskList.php │ ├── Middleware │ │ ├── AssignDefaultTeam.php │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── RoleBasedRedirect.php │ │ ├── ScreeningDataEncryptor.php │ │ ├── TeamsPermission.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ └── Auth │ │ │ └── LoginRequest.php │ └── Responses │ │ ├── LoginResponse.php │ │ ├── LogoutResponse.php │ │ └── RegisterResponse.php ├── Jobs │ ├── ExecuteWorkflowAction.php │ ├── FetchGmailTickets.php │ ├── FetchMessages.php │ └── SendMarketingCampaign.php ├── Listeners │ ├── CreatePersonalTeam.php │ ├── EmailTracker.php │ ├── LogSuccessfulLogin.php │ ├── SendCRMEventNotification.php │ └── SwitchTeam.php ├── Models │ ├── AccountingIntegration.php │ ├── Activation.php │ ├── Activity.php │ ├── AdvertisingAccount.php │ ├── AuditLog.php │ ├── CallSetting.php │ ├── CampaignRecipient.php │ ├── Company.php │ ├── ConnectedAccount.php │ ├── Contact.php │ ├── CustomField.php │ ├── DashboardWidget.php │ ├── Deal.php │ ├── Document.php │ ├── Email.php │ ├── FormBuilder.php │ ├── KnowledgeBaseArticle.php │ ├── LandingPage.php │ ├── Lead.php │ ├── LeadForm.php │ ├── MarketingCampaign.php │ ├── Membership.php │ ├── Menu.php │ ├── Message.php │ ├── Note.php │ ├── OAuthConfiguration.php │ ├── Opportunity.php │ ├── Pipeline.php │ ├── QuoteRequest.php │ ├── SiteSettings.php │ ├── SocialMediaPost.php │ ├── Stage.php │ ├── Task.php │ ├── Team.php │ ├── TeamInvitation.php │ ├── TeamSubscription.php │ ├── Tenant.php │ ├── Ticket.php │ ├── User.php │ ├── WhatsAppNumber.php │ └── Workflow.php ├── Modules │ ├── BaseModule.php │ ├── Contracts │ │ └── ModuleInterface.php │ ├── ModuleManager.php │ └── ModuleServiceProvider.php ├── Notifications │ ├── CRMEventNotification.php │ ├── TaskReminderNotification.php │ └── TeamInvitation.php ├── Observers │ └── TaskObserver.php ├── Policies │ ├── ConnectedAccountPolicy.php │ └── ContactPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── Filament │ │ ├── AdminPanelProvider.php │ │ └── AppPanelProvider.php │ ├── FilamentServiceProvider.php │ ├── FortifyServiceProvider.php │ ├── JetstreamServiceProvider.php │ ├── RouteServiceProvider.php │ ├── SocialstreamServiceProvider.php │ └── TeamServiceProvider.php ├── Services │ ├── AccountingService.php │ ├── AuditLogService.php │ ├── CalendarService.php │ ├── DataEnrichmentService.php │ ├── FacebookAdsService.php │ ├── FacebookMessengerService.php │ ├── FacebookService.php │ ├── GmailService.php │ ├── GoogleAdsService.php │ ├── GoogleCalendarService.php │ ├── InstagramService.php │ ├── LeadScoringService.php │ ├── LinkedInAdsService.php │ ├── LinkedInService.php │ ├── MailChimpService.php │ ├── MenuService.php │ ├── MessageService.php │ ├── OAuth │ │ └── TwilioProvider.php │ ├── OutlookCalendarService.php │ ├── PersonalizationService.php │ ├── ReminderService.php │ ├── ReportingService.php │ ├── SiteSettingsService.php │ ├── StripeService.php │ ├── TeamManagementService.php │ ├── TransactionService.php │ ├── TwilioService.php │ ├── TwitterService.php │ ├── UnifiedHelpDeskService.php │ └── WhatsAppBusinessService.php ├── Settings │ └── GeneralSettings.php ├── Traits │ └── IsTenantModel.php └── View │ └── Components │ ├── AppLayout.php │ └── GuestLayout.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── crm.php ├── database.php ├── filament-shield.php ├── filesystems.php ├── fortify.php ├── hashing.php ├── jetstream.php ├── logging.php ├── mail.php ├── modules.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── socialstream.php └── view.php ├── database ├── .gitignore ├── factories │ ├── AccountingIntegrationFactory.php │ ├── ActivityFactory.php │ ├── AdvertisingAccountFactory.php │ ├── AuditLogFactory.php │ ├── CallSettingFactory.php │ ├── CampaignRecipientFactory.php │ ├── CompanyFactory.php │ ├── ConnectedAccountFactory copy.php │ ├── ConnectedAccountFactory.php │ ├── ContactFactory.php │ ├── CustomFieldFactory.php │ ├── DashboardWidgetFactory.php │ ├── DealFactory.php │ ├── DocumentFactory.php │ ├── EmailFactory.php │ ├── FormBuilderFactory.php │ ├── KnowledgeBaseArticleFactory.php │ ├── LandingPageFactory.php │ ├── LeadFactory.php │ ├── LeadFormFactory.php │ ├── MarketingCampaignFactory.php │ ├── MenuFactory copy.php │ ├── MenuFactory.php │ ├── MessageFactory.php │ ├── TaskFactory.php │ ├── TeamFactory.php │ ├── TeamSubscriptionFactory.php │ ├── UserFactory copy.php │ ├── UserFactory.php │ └── WorkflowFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_table.php │ ├── 0001_01_01_000001_make_password_nullable_on_users_table.php │ ├── 0001_01_01_000002_create_connected_accounts_table.php │ ├── 2014_10_12_200000_add_two_factor_columns_to_users_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_09_15_000010_create_tenants_table.php │ ├── 2020_05_21_100000_create_teams_table.php │ ├── 2020_05_21_200000_create_team_user_table.php │ ├── 2020_05_21_300000_create_team_invitations_table.php │ ├── 2020_06_30_135250_create_activations_table.php │ ├── 2022_10_30_150853_create_companies_table.php │ ├── 2023_01_20_000003_update_companies_table.php │ ├── 2023_01_31_124707_create_contacts_table.php │ ├── 2023_05_01_000000_create_landing_pages_table.php │ ├── 2023_05_15_000000_create_site_settings_table.php │ ├── 2023_05_20_000000_create_call_settings_table.php │ ├── 2023_05_20_000000_create_social_media_posts_table.php │ ├── 2023_05_20_000000_enhance_crm_tables.php │ ├── 2023_05_20_000001_create_marketing_campaigns_table.php │ ├── 2023_05_20_000002_create_campaign_recipients_table.php │ ├── 2023_05_20_000004_create_pipelines_table.php │ ├── 2023_05_24_create_lead_forms_table.php │ ├── 2023_05_25_000000_create_custom_fields_table.php │ ├── 2023_05_25_000001_add_contacts_email_index.php │ ├── 2023_05_25_000001_add_custom_fields_to_contacts_table.php │ ├── 2023_05_25_000002_add_custom_fields_to_leads_table.php │ ├── 2023_06_01_000000_create_leads_table.php │ ├── 2023_06_02_000000_create_workflows_table.php │ ├── 2023_10_31_125000_create_opportunities_table.php │ ├── 2023_10_31_125013_create_notes_table.php │ ├── 2023_10_31_150226_create_tasks_table.php │ ├── 2024_01_01_000000_create_deals_table.php │ ├── 2024_01_01_000001_create_settings_table.php │ ├── 2024_01_02_000000_create_stages_table.php │ ├── 2024_01_10_000000_create_oauth_configurations_table.php │ ├── 2024_01_10_000000_create_team_subscriptions_table.php │ ├── 2024_02_21_190705_create_permission_tables.php │ ├── 2024_02_24_000000_create_reminder_settings_table.php │ ├── 2024_05_20_000001_update_contacts_table.php │ ├── 2024_06_01_000000_add_calendar_fields_to_tasks_table.php │ ├── 2024_07_24_080000_create_menus_table.php │ ├── 2024_09_29_093707_add_team_to_resources.php │ ├── 2024_10_13_000000_add_pipeline_and_stage_to_deals_table.php │ ├── 2024_10_13_000000_create_accounting_integrations_table.php │ ├── 2024_10_13_020000_create_audit_logs_table.php │ ├── 2024_10_13_030000_create_knowledge_base_articles_table.php │ ├── 2024_10_13_040000_create_quote_requests_table.php │ ├── 2024_10_20_000000_enhance_crm_tables.php │ ├── 2024_10_21_000000_create_emails_table.php │ ├── 2024_10_22_000000_create_advertising_accounts_table.php │ ├── 2024_10_22_000000_create_dashboard_widgets_table.php │ ├── 2024_10_22_000000_create_form_builders_table.php │ ├── 2024_10_22_000000_create_tickets_table.php │ ├── 2024_10_22_000000_create_whatsapp_numbers_table.php │ ├── 2024_10_23_000000_create_facebook_messenger_messages_table.php │ ├── 2024_1116_000000_create_documents_table.php │ ├── 2024_11_17_000000_add_team_id_to-staff_resource_tables.php │ ├── 2025_01_27_173821_create_message_table.php │ ├── 2025_11_20_111132_create_notifications_table.php │ └── 2025_11_20_112532_add_team_to_messages.php └── seeders │ ├── DatabaseSeeder.php │ ├── MenuSeeder.php │ ├── PermissionsSeeder.php │ ├── RolesSeeder.php │ ├── SiteSettingsSeeder.php │ ├── TeamSeeder.php │ └── UserSeeder.php ├── docs ├── MODULAR_ARCHITECTURE.md ├── api-documentation.md └── contact-management-ui-ux.md ├── package.json ├── phpunit.xml ├── postcss.config.cjs ├── public ├── .htaccess ├── build │ ├── assets │ │ ├── app-D9QbjTnU.css │ │ ├── app-l0sNRNKZ.js │ │ └── theme-D1c4Yq07.css │ ├── images │ │ └── logo.png │ └── manifest.json ├── css │ └── filament │ │ ├── filament │ │ └── app.css │ │ ├── forms │ │ └── forms.css │ │ └── support │ │ └── support.css ├── favicon.ico ├── fonts │ └── filament │ │ └── filament │ │ └── inter │ │ ├── index.css │ │ ├── inter-cyrillic-ext-wght-normal-ASVAGXXE.woff2 │ │ ├── inter-cyrillic-ext-wght-normal-IYF56FF6.woff2 │ │ ├── inter-cyrillic-ext-wght-normal-XKHXBTUO.woff2 │ │ ├── inter-cyrillic-wght-normal-EWLSKVKN.woff2 │ │ ├── inter-cyrillic-wght-normal-JEOLYBOO.woff2 │ │ ├── inter-cyrillic-wght-normal-R5CMSONN.woff2 │ │ ├── inter-greek-ext-wght-normal-7GGTF7EK.woff2 │ │ ├── inter-greek-ext-wght-normal-EOVOK2B5.woff2 │ │ ├── inter-greek-ext-wght-normal-ZEVLMORV.woff2 │ │ ├── inter-greek-wght-normal-AXVTPQD5.woff2 │ │ ├── inter-greek-wght-normal-IRE366VL.woff2 │ │ ├── inter-greek-wght-normal-N43DBLU2.woff2 │ │ ├── inter-latin-ext-wght-normal-5SRY4DMZ.woff2 │ │ ├── inter-latin-ext-wght-normal-GZCIV3NH.woff2 │ │ ├── inter-latin-ext-wght-normal-HA22NDSG.woff2 │ │ ├── inter-latin-wght-normal-NRMW37G5.woff2 │ │ ├── inter-latin-wght-normal-O25CN4JL.woff2 │ │ ├── inter-latin-wght-normal-OPIJAQLS.woff2 │ │ ├── inter-vietnamese-wght-normal-CE5GGD3W.woff2 │ │ └── inter-vietnamese-wght-normal-TWG5UU7E.woff2 ├── index.php ├── js │ └── filament │ │ ├── actions │ │ └── actions.js │ │ ├── filament │ │ ├── app.js │ │ └── echo.js │ │ ├── forms │ │ └── components │ │ │ ├── checkbox-list.js │ │ │ ├── code-editor.js │ │ │ ├── color-picker.js │ │ │ ├── date-time-picker.js │ │ │ ├── file-upload.js │ │ │ ├── key-value.js │ │ │ ├── markdown-editor.js │ │ │ ├── rich-editor.js │ │ │ ├── select.js │ │ │ ├── slider.js │ │ │ ├── tags-input.js │ │ │ └── textarea.js │ │ ├── notifications │ │ └── notifications.js │ │ ├── schemas │ │ ├── components │ │ │ ├── actions.js │ │ │ ├── tabs.js │ │ │ └── wizard.js │ │ └── schemas.js │ │ ├── support │ │ ├── async-alpine.js │ │ └── support.js │ │ ├── tables │ │ ├── components │ │ │ ├── columns │ │ │ │ ├── checkbox.js │ │ │ │ ├── select.js │ │ │ │ ├── text-input.js │ │ │ │ └── toggle.js │ │ │ └── table.js │ │ └── tables.js │ │ └── widgets │ │ └── components │ │ ├── chart.js │ │ └── stats-overview │ │ └── stat │ │ └── chart.js └── robots.txt ├── resources ├── css │ ├── app.css │ └── filament │ │ └── admin │ │ ├── tailwind.config.js │ │ └── theme.css ├── images │ └── logo.png ├── js │ └── app.js └── views │ ├── api │ ├── api-token-manager.blade.php │ └── index.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ ├── social-login.blade.php │ ├── two-factor-challenge.blade.php │ └── verify-email.blade.php │ ├── components │ ├── action-link.blade.php │ ├── action-message.blade.php │ ├── action-section.blade.php │ ├── application-logo.blade.php │ ├── application-mark.blade.php │ ├── authentication-card-logo.blade.php │ ├── authentication-card.blade.php │ ├── banner.blade.php │ ├── breadcrumbs.blade.php │ ├── button.blade.php │ ├── buttons.blade.php │ ├── checkbox.blade.php │ ├── confirmation-modal.blade.php │ ├── confirms-password.blade.php │ ├── connected-account.blade.php │ ├── connected-social-accounts.blade.php │ ├── contact-form.blade.php │ ├── danger-button.blade.php │ ├── dialog-modal.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── footer.blade.php │ ├── form-section.blade.php │ ├── header.blade.php │ ├── home-header.blade.php │ ├── home-navbar.blade.php │ ├── input-error.blade.php │ ├── input.blade.php │ ├── label.blade.php │ ├── manage_section.blade.php │ ├── modal.blade.php │ ├── nav-link.blade.php │ ├── products_section.blade.php │ ├── responsive-nav-link.blade.php │ ├── secondary-button.blade.php │ ├── section-border.blade.php │ ├── section-title.blade.php │ ├── socialstream-icons │ │ ├── bitbucket.blade.php │ │ ├── facebook.blade.php │ │ ├── github.blade.php │ │ ├── gitlab.blade.php │ │ ├── google.blade.php │ │ ├── linkedin.blade.php │ │ ├── provider-icon.blade.php │ │ ├── slack.blade.php │ │ └── twitter.blade.php │ ├── socialstream.blade.php │ ├── switchable-team.blade.php │ ├── team-invitation-form.blade.php │ ├── user-feedback.blade.php │ ├── validation-errors.blade.php │ ├── welcome.blade.php │ └── why_us_section.blade.php │ ├── dashboard.blade.php │ ├── filament │ ├── app │ │ ├── pages │ │ │ ├── twilio-integration.blade.php │ │ │ └── twilio-settings.blade.php │ │ └── resources │ │ │ ├── advertising-dashboard-resource │ │ │ └── pages │ │ │ │ └── view-advertising-dashboard.blade.php │ │ │ └── analytics-dashboard │ │ │ └── view.blade.php │ ├── components │ │ ├── engagement-chart.blade.php │ │ └── social-media-preview.blade.php │ ├── filament │ │ └── pages │ │ │ ├── api-tokens.blade.php │ │ │ ├── create-team.blade.php │ │ │ ├── edit-profile.blade.php │ │ │ └── edit-team.blade.php │ ├── pages │ │ ├── api-tokens.blade.php │ │ ├── create-team.blade.php │ │ ├── edit-profile.blade.php │ │ ├── edit-team.blade.php │ │ └── report-customizer.blade.php │ ├── resources │ │ └── gedcom-resource │ │ │ └── pages │ │ │ └── gedcom.blade.php │ └── widgets │ │ ├── daboville-report.blade.php │ │ ├── descendant-chart.blade.php │ │ └── report-widget.blade.php │ ├── helpdesk │ └── messages.blade.php │ ├── home.blade.php │ ├── layouts │ └── app.blade.php │ ├── livewire │ ├── call-manager.blade.php │ ├── contact-collaboration.blade.php │ ├── content-preview.blade.php │ ├── counter.blade.php │ ├── dashboard.blade.php │ ├── footer.blade.php │ ├── homepage.blade.php │ ├── navigation.blade.php │ ├── opportunity-pipeline.blade.php │ ├── report-customizer.blade.php │ └── webrender.blade.php │ ├── oauth │ └── configurations │ │ ├── create.blade.php │ │ └── index.blade.php │ ├── profile │ ├── connected-accounts-form.blade.php │ ├── set-password-form.blade.php │ └── show.blade.php │ ├── tasks │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── teams │ ├── create-team-form.blade.php │ ├── create.blade.php │ ├── delete-team-form.blade.php │ ├── show.blade.php │ ├── team-member-manager.blade.php │ └── update-team-name-form.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php ├── socialstream.php └── web.php ├── setup.sh ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── sweep.yaml ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── ABTestingMailchimpCampaignTest.php │ ├── AccountingIntegrationTest.php │ ├── ActivitySearchTest.php │ ├── AnalyticsDashboardTest.php │ ├── Api │ │ ├── ContactApiTest.php │ │ ├── DealApiTest.php │ │ └── TaskApiTest.php │ ├── AuditLogViewTest.php │ ├── Auth │ │ └── LoginTest.php │ ├── CalendarIntegrationTest.php │ ├── CampaignPerformanceReportTest.php │ ├── ContactCollaborationTest.php │ ├── ContactManagementUITest.php │ ├── ContactResourceTest.php │ ├── ContactSearchPerformanceTest.php │ ├── CustomFieldsTest.php │ ├── DashboardCustomizationTest.php │ ├── DocumentManagementTest.php │ ├── EmailTrackingIntegrationTest.php │ ├── ExampleTest.php │ ├── Filament │ │ ├── Pages │ │ │ └── ReportCustomizerTest.php │ │ └── TwilioIntegrationTest.php │ ├── LeadFormControllerTest.php │ ├── LeadManagementUITest.php │ ├── ModuleSystemTest.php │ ├── NotificationDisplayTest.php │ ├── NotificationTest.php │ ├── OAuthConfigurationTest.php │ ├── OpportunityPipelineTest.php │ ├── OpportunityResourceTest.php │ ├── ReportGenerationTest.php │ ├── RolePermissionTest.php │ ├── SocialstreamRegistrationTest.php │ ├── TaskListUITest.php │ ├── TaskManagementTest.php │ ├── TaskReminderTest.php │ ├── TeamInvitationTest.php │ ├── TeamSubscriptionTest.php │ ├── TransactionTest.php │ ├── TwilioIntegrationTest.php │ ├── WhatsAppIntegrationTest.php │ └── WorkflowManagementTest.php ├── Performance │ └── ContactProfileLoadTest.php ├── TestCase.php └── Unit │ ├── ContactStatsTest.php │ ├── ContactTest.php │ ├── DashboardWidgetTest.php │ ├── EmailTrackingTest.php │ ├── ExampleTest.php │ ├── FacebookMessengerServiceTest.php │ ├── GoogleCalendarServiceTest.php │ ├── LeadScoringServiceTest.php │ ├── LeadTest.php │ ├── ListContactsTest.php │ ├── Listeners │ └── LogSuccessfulLoginTest.php │ ├── Models │ └── ContactTest.php │ ├── Notifications │ └── CRMEventNotificationTest.php │ ├── OutlookCalendarServiceTest.php │ ├── ReminderServiceTest.php │ ├── Services │ ├── AuditLogServiceTest.php │ ├── MailChimpServiceTest.php │ └── ReportingServiceTest.php │ ├── TwilioServiceTest.php │ └── WhatsAppBusinessServiceTest.php └── vite.config.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.docker/config/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/config/conf.d/default.conf -------------------------------------------------------------------------------- /.docker/config/config/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/config/config/conf.d/default.conf -------------------------------------------------------------------------------- /.docker/config/config/fpm-pool.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/config/config/fpm-pool.conf -------------------------------------------------------------------------------- /.docker/config/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/config/config/nginx.conf -------------------------------------------------------------------------------- /.docker/config/config/php.ini: -------------------------------------------------------------------------------- 1 | [Date] 2 | date.timezone="UTC" 3 | expose_php= Off -------------------------------------------------------------------------------- /.docker/config/config/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/config/config/supervisord.conf -------------------------------------------------------------------------------- /.docker/config/fpm-pool.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/config/fpm-pool.conf -------------------------------------------------------------------------------- /.docker/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/config/nginx.conf -------------------------------------------------------------------------------- /.docker/config/php.ini: -------------------------------------------------------------------------------- 1 | [Date] 2 | date.timezone="UTC" 3 | expose_php= Off -------------------------------------------------------------------------------- /.docker/config/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/config/supervisord.conf -------------------------------------------------------------------------------- /.docker/octane/.rr.prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/octane/.rr.prod.yaml -------------------------------------------------------------------------------- /.docker/octane/FrankenPHP/supervisord.frankenphp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/octane/FrankenPHP/supervisord.frankenphp.conf -------------------------------------------------------------------------------- /.docker/octane/RoadRunner/.rr.prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/octane/RoadRunner/.rr.prod.yaml -------------------------------------------------------------------------------- /.docker/octane/RoadRunner/supervisord.roadrunner.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/octane/RoadRunner/supervisord.roadrunner.conf -------------------------------------------------------------------------------- /.docker/octane/Swoole/supervisord.swoole.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/octane/Swoole/supervisord.swoole.conf -------------------------------------------------------------------------------- /.docker/octane/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/octane/entrypoint.sh -------------------------------------------------------------------------------- /.docker/octane/opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/octane/opcache.ini -------------------------------------------------------------------------------- /.docker/octane/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/octane/php.ini -------------------------------------------------------------------------------- /.docker/octane/supervisord.app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/octane/supervisord.app.conf -------------------------------------------------------------------------------- /.docker/octane/supervisord.app.roadrunner.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/octane/supervisord.app.roadrunner.conf -------------------------------------------------------------------------------- /.docker/octane/supervisord.horizon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/octane/supervisord.horizon.conf -------------------------------------------------------------------------------- /.docker/octane/utilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/octane/utilities.sh -------------------------------------------------------------------------------- /.docker/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/php.ini -------------------------------------------------------------------------------- /.docker/start-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/start-container -------------------------------------------------------------------------------- /.docker/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/supervisord.conf -------------------------------------------------------------------------------- /.docker/supervisord.horizon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/supervisord.horizon.conf -------------------------------------------------------------------------------- /.docker/supervisord.scheduler.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/supervisord.scheduler.conf -------------------------------------------------------------------------------- /.docker/supervisord.worker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/supervisord.worker.conf -------------------------------------------------------------------------------- /.docker/utilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.docker/utilities.sh -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.env.example -------------------------------------------------------------------------------- /.env.testing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.env.testing -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: liberusoftware 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/sweep-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.github/ISSUE_TEMPLATE/sweep-template.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.github/workflows/install.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.github/workflows/security.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/README.md -------------------------------------------------------------------------------- /app/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Fortify/CreateNewUser.php -------------------------------------------------------------------------------- /app/Actions/Fortify/CreateNewUserWithTeams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Fortify/CreateNewUserWithTeams.php -------------------------------------------------------------------------------- /app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Fortify/PasswordValidationRules.php -------------------------------------------------------------------------------- /app/Actions/Fortify/ResetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Fortify/ResetUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Fortify/UpdateUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserProfileInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Fortify/UpdateUserProfileInformation.php -------------------------------------------------------------------------------- /app/Actions/Helpdesk/CreateTicketFromEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Helpdesk/CreateTicketFromEmail.php -------------------------------------------------------------------------------- /app/Actions/Jetstream/AddTeamMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Jetstream/AddTeamMember.php -------------------------------------------------------------------------------- /app/Actions/Jetstream/CreateTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Jetstream/CreateTeam.php -------------------------------------------------------------------------------- /app/Actions/Jetstream/DeleteTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Jetstream/DeleteTeam.php -------------------------------------------------------------------------------- /app/Actions/Jetstream/DeleteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Jetstream/DeleteUser.php -------------------------------------------------------------------------------- /app/Actions/Jetstream/DeleteUserWithTeams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Jetstream/DeleteUserWithTeams.php -------------------------------------------------------------------------------- /app/Actions/Jetstream/InviteTeamMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Jetstream/InviteTeamMember.php -------------------------------------------------------------------------------- /app/Actions/Jetstream/RemoveTeamMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Jetstream/RemoveTeamMember.php -------------------------------------------------------------------------------- /app/Actions/Jetstream/UpdateTeamName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Jetstream/UpdateTeamName.php -------------------------------------------------------------------------------- /app/Actions/Socialstream/CreateConnectedAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Socialstream/CreateConnectedAccount.php -------------------------------------------------------------------------------- /app/Actions/Socialstream/CreateUserFromProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Socialstream/CreateUserFromProvider.php -------------------------------------------------------------------------------- /app/Actions/Socialstream/CreateUserWithTeamsFromProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Socialstream/CreateUserWithTeamsFromProvider.php -------------------------------------------------------------------------------- /app/Actions/Socialstream/GenerateRedirectForProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Socialstream/GenerateRedirectForProvider.php -------------------------------------------------------------------------------- /app/Actions/Socialstream/HandleInvalidState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Socialstream/HandleInvalidState.php -------------------------------------------------------------------------------- /app/Actions/Socialstream/ResolveSocialiteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Socialstream/ResolveSocialiteUser.php -------------------------------------------------------------------------------- /app/Actions/Socialstream/SetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Socialstream/SetUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Socialstream/UpdateConnectedAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Actions/Socialstream/UpdateConnectedAccount.php -------------------------------------------------------------------------------- /app/Console/Commands/ModuleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Console/Commands/ModuleCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/PublishScheduledPosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Console/Commands/PublishScheduledPosts.php -------------------------------------------------------------------------------- /app/Console/Commands/SendReminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Console/Commands/SendReminders.php -------------------------------------------------------------------------------- /app/Console/Commands/UpdatePostAnalytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Console/Commands/UpdatePostAnalytics.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Events/ContactUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Events/ContactUpdated.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Filament/Admin/Pages/ManageGeneralSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Admin/Pages/ManageGeneralSettings.php -------------------------------------------------------------------------------- /app/Filament/Admin/Resources/AuditLogResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Admin/Resources/AuditLogResource.php -------------------------------------------------------------------------------- /app/Filament/Admin/Resources/ContactResource/Widgets/ContactStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Admin/Resources/ContactResource/Widgets/ContactStats.php -------------------------------------------------------------------------------- /app/Filament/Admin/Resources/MenuResource/Pages/CreateMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Admin/Resources/MenuResource/Pages/CreateMenu.php -------------------------------------------------------------------------------- /app/Filament/Admin/Resources/MenuResource/Pages/EditMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Admin/Resources/MenuResource/Pages/EditMenu.php -------------------------------------------------------------------------------- /app/Filament/Admin/Resources/MenuResource/Pages/ListMenus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Admin/Resources/MenuResource/Pages/ListMenus.php -------------------------------------------------------------------------------- /app/Filament/Admin/Resources/ModuleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Admin/Resources/ModuleResource.php -------------------------------------------------------------------------------- /app/Filament/Admin/Resources/ModuleResource/Pages/ListModules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Admin/Resources/ModuleResource/Pages/ListModules.php -------------------------------------------------------------------------------- /app/Filament/Admin/Resources/ModuleResource/Pages/ViewModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Admin/Resources/ModuleResource/Pages/ViewModule.php -------------------------------------------------------------------------------- /app/Filament/Admin/Resources/SiteSettingsResource/Pages/CreateSiteSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Admin/Resources/SiteSettingsResource/Pages/CreateSiteSettings.php -------------------------------------------------------------------------------- /app/Filament/Admin/Resources/SiteSettingsResource/Pages/EditSiteSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Admin/Resources/SiteSettingsResource/Pages/EditSiteSettings.php -------------------------------------------------------------------------------- /app/Filament/Admin/Resources/SiteSettingsResource/Pages/ListSiteSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Admin/Resources/SiteSettingsResource/Pages/ListSiteSettings.php -------------------------------------------------------------------------------- /app/Filament/App/Pages/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Filament/App/Pages/CreateTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Pages/CreateTeam.php -------------------------------------------------------------------------------- /app/Filament/App/Pages/EditProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Pages/EditProfile.php -------------------------------------------------------------------------------- /app/Filament/App/Pages/EditTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Pages/EditTeam.php -------------------------------------------------------------------------------- /app/Filament/App/Pages/MailchimpIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Pages/MailchimpIntegration.php -------------------------------------------------------------------------------- /app/Filament/App/Pages/PersonalAccessTokensPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Pages/PersonalAccessTokensPage.php -------------------------------------------------------------------------------- /app/Filament/App/Pages/ReportPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Pages/ReportPage.php -------------------------------------------------------------------------------- /app/Filament/App/Pages/TwilioIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Pages/TwilioIntegration.php -------------------------------------------------------------------------------- /app/Filament/App/Pages/TwilioSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Pages/TwilioSettings.php -------------------------------------------------------------------------------- /app/Filament/App/Pages/UpdateProfileInformationPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Pages/UpdateProfileInformationPage.php -------------------------------------------------------------------------------- /app/Filament/App/Pages/VisualPipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Pages/VisualPipeline.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Filament/App/Resources/ActivationResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/ActivationResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/ActivationResource/Pages/CreateActivation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/ActivationResource/Pages/CreateActivation.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/ActivationResource/Pages/EditActivation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/ActivationResource/Pages/EditActivation.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/ActivationResource/Pages/ListActivations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/ActivationResource/Pages/ListActivations.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/AdvertisingAccountResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/AdvertisingAccountResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/AdvertisingAccountResource/Pages/CreateAdvertisingAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/AdvertisingAccountResource/Pages/CreateAdvertisingAccount.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/AdvertisingAccountResource/Pages/EditAdvertisingAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/AdvertisingAccountResource/Pages/EditAdvertisingAccount.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/AdvertisingAccountResource/Pages/ListAdvertisingAccounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/AdvertisingAccountResource/Pages/ListAdvertisingAccounts.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/AdvertisingDashboardResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/AdvertisingDashboardResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/AdvertisingDashboardResource/Pages/ViewAdvertisingDashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/AdvertisingDashboardResource/Pages/ViewAdvertisingDashboard.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/AnalyticsDashboardResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/AnalyticsDashboardResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/AnalyticsDashboardResource/Pages/CreateAnalyticsDashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/AnalyticsDashboardResource/Pages/CreateAnalyticsDashboard.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/AnalyticsDashboardResource/Pages/EditAnalyticsDashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/AnalyticsDashboardResource/Pages/EditAnalyticsDashboard.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/AnalyticsDashboardResource/Pages/ListAnalyticsDashboards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/AnalyticsDashboardResource/Pages/ListAnalyticsDashboards.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/AnalyticsDashboardResource/Pages/ViewAnalyticsDashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/AnalyticsDashboardResource/Pages/ViewAnalyticsDashboard.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/CallSettingResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/CallSettingResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/CallSettingResource/Pages/CreateCallSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/CallSettingResource/Pages/CreateCallSetting.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/CallSettingResource/Pages/EditCallSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/CallSettingResource/Pages/EditCallSetting.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/CallSettingResource/Pages/ListCallSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/CallSettingResource/Pages/ListCallSettings.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/CompanyResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/CompanyResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/CompanyResource/Pages/CreateCompany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/CompanyResource/Pages/CreateCompany.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/CompanyResource/Pages/EditCompany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/CompanyResource/Pages/EditCompany.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/CompanyResource/Pages/ListCompanies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/CompanyResource/Pages/ListCompanies.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/Components/TimelineView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/Components/TimelineView.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/ContactResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/ContactResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/ContactResource/Pages/CreateContact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/ContactResource/Pages/CreateContact.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/ContactResource/Pages/EditContact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/ContactResource/Pages/EditContact.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/ContactResource/Pages/ListContacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/ContactResource/Pages/ListContacts.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/DashboardWidgetResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/DashboardWidgetResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/DashboardWidgetResource/Pages/CreateDashboardWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/DashboardWidgetResource/Pages/CreateDashboardWidget.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/DashboardWidgetResource/Pages/EditDashboardWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/DashboardWidgetResource/Pages/EditDashboardWidget.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/DashboardWidgetResource/Pages/ListDashboardWidgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/DashboardWidgetResource/Pages/ListDashboardWidgets.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/FormBuilderResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/FormBuilderResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/FormBuilderResource/Pages/CreateFormBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/FormBuilderResource/Pages/CreateFormBuilder.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/FormBuilderResource/Pages/EditFormBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/FormBuilderResource/Pages/EditFormBuilder.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/FormBuilderResource/Pages/ListFormBuilders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/FormBuilderResource/Pages/ListFormBuilders.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/LandingPageResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/LandingPageResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/LandingPageResource/Pages/CreateLandingPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/LandingPageResource/Pages/CreateLandingPage.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/LandingPageResource/Pages/EditLandingPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/LandingPageResource/Pages/EditLandingPage.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/LandingPageResource/Pages/ListLandingPages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/LandingPageResource/Pages/ListLandingPages.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/LeadResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/LeadResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/LeadResource/Pages/CreateLead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/LeadResource/Pages/CreateLead.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/LeadResource/Pages/EditLead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/LeadResource/Pages/EditLead.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/LeadResource/Pages/ListLeads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/LeadResource/Pages/ListLeads.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MailchimpCampaignResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MailchimpCampaignResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MailchimpCampaignResource/Pages/CreateMailchimpCampaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MailchimpCampaignResource/Pages/CreateMailchimpCampaign.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MailchimpCampaignResource/Pages/EditMailchimpCampaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MailchimpCampaignResource/Pages/EditMailchimpCampaign.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MailchimpCampaignResource/Pages/ListMailchimpCampaigns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MailchimpCampaignResource/Pages/ListMailchimpCampaigns.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MailchimpCampaignResource/Pages/ViewABTestResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MailchimpCampaignResource/Pages/ViewABTestResults.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MailchimpCampaignResource/Pages/ViewCampaignPerformance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MailchimpCampaignResource/Pages/ViewCampaignPerformance.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MailchimpCampaignResource/Pages/ViewMailchimpCampaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MailchimpCampaignResource/Pages/ViewMailchimpCampaign.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MarketingCampaignResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MarketingCampaignResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MarketingCampaignResource/Pages/CreateMarketingCampaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MarketingCampaignResource/Pages/CreateMarketingCampaign.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MarketingCampaignResource/Pages/EditMarketingCampaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MarketingCampaignResource/Pages/EditMarketingCampaign.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MarketingCampaignResource/Pages/ListMarketingCampaigns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MarketingCampaignResource/Pages/ListMarketingCampaigns.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MessageResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MessageResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MessageResource/Pages/CreateMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MessageResource/Pages/CreateMessage.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MessageResource/Pages/EditMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MessageResource/Pages/EditMessage.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/MessageResource/Pages/ListMessages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/MessageResource/Pages/ListMessages.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/NoteResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/NoteResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/NoteResource/Pages/CreateNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/NoteResource/Pages/CreateNote.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/NoteResource/Pages/EditNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/NoteResource/Pages/EditNote.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/NoteResource/Pages/ListNotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/NoteResource/Pages/ListNotes.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/OAuthConfigurationResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/OAuthConfigurationResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/OAuthConfigurationResource/Pages/CreateOAuthConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/OAuthConfigurationResource/Pages/CreateOAuthConfiguration.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/OAuthConfigurationResource/Pages/EditOAuthConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/OAuthConfigurationResource/Pages/EditOAuthConfiguration.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/OAuthConfigurationResource/Pages/ListOAuthConfigurations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/OAuthConfigurationResource/Pages/ListOAuthConfigurations.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/OpportunityResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/OpportunityResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/OpportunityResource/Pages/CreateOpportunity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/OpportunityResource/Pages/CreateOpportunity.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/OpportunityResource/Pages/EditOpportunity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/OpportunityResource/Pages/EditOpportunity.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/OpportunityResource/Pages/ListOpportunities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/OpportunityResource/Pages/ListOpportunities.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/RelationManagers/MessagesRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/RelationManagers/MessagesRelationManager.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/SocialMediaPostResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/SocialMediaPostResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/SocialMediaPostResource/Pages/CreateSocialMediaPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/SocialMediaPostResource/Pages/CreateSocialMediaPost.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/SocialMediaPostResource/Pages/EditSocialMediaPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/SocialMediaPostResource/Pages/EditSocialMediaPost.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/SocialMediaPostResource/Pages/ListSocialMediaPosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/SocialMediaPostResource/Pages/ListSocialMediaPosts.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/TaskResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/TaskResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/TaskResource/Pages/CreateTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/TaskResource/Pages/CreateTask.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/TaskResource/Pages/EditTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/TaskResource/Pages/EditTask.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/TaskResource/Pages/ListTasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/TaskResource/Pages/ListTasks.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/TicketResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/TicketResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/TicketResource/Pages/CreateTicket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/TicketResource/Pages/CreateTicket.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/TicketResource/Pages/EditTicket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/TicketResource/Pages/EditTicket.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/TicketResource/Pages/ListTickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/TicketResource/Pages/ListTickets.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/WhatsAppNumberResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/WhatsAppNumberResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/WhatsAppNumberResource/Pages/CreateWhatsAppNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/WhatsAppNumberResource/Pages/CreateWhatsAppNumber.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/WhatsAppNumberResource/Pages/EditWhatsAppNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/WhatsAppNumberResource/Pages/EditWhatsAppNumber.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/WhatsAppNumberResource/Pages/ListWhatsAppNumbers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/WhatsAppNumberResource/Pages/ListWhatsAppNumbers.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/WorkflowResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/WorkflowResource.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/WorkflowResource/Pages/CreateWorkflow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/WorkflowResource/Pages/CreateWorkflow.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/WorkflowResource/Pages/EditWorkflow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/WorkflowResource/Pages/EditWorkflow.php -------------------------------------------------------------------------------- /app/Filament/App/Resources/WorkflowResource/Pages/ListWorkflows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Resources/WorkflowResource/Pages/ListWorkflows.php -------------------------------------------------------------------------------- /app/Filament/App/Widgets/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Filament/App/Widgets/SocialLinksWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/App/Widgets/SocialLinksWidget.php -------------------------------------------------------------------------------- /app/Filament/Pages/ReportCustomizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Pages/ReportCustomizer.php -------------------------------------------------------------------------------- /app/Filament/Resources/TeamSubscriptionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Resources/TeamSubscriptionResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/TeamSubscriptionResource/Pages/CreateTeamSubscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Resources/TeamSubscriptionResource/Pages/CreateTeamSubscription.php -------------------------------------------------------------------------------- /app/Filament/Resources/TeamSubscriptionResource/Pages/EditTeamSubscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Resources/TeamSubscriptionResource/Pages/EditTeamSubscription.php -------------------------------------------------------------------------------- /app/Filament/Resources/TeamSubscriptionResource/Pages/ListTeamSubscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Resources/TeamSubscriptionResource/Pages/ListTeamSubscriptions.php -------------------------------------------------------------------------------- /app/Filament/Widgets/AdPerformanceWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Filament/Widgets/AdPerformanceWidget.php -------------------------------------------------------------------------------- /app/Helpers/SiteSettingsHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Helpers/SiteSettingsHelper.php -------------------------------------------------------------------------------- /app/Http/Controllers/AccountingIntegrationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/AccountingIntegrationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/ContactController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/Api/ContactController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/DealController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/Api/DealController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/TaskController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/Api/TaskController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DocumentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/DocumentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/FormBuilderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/FormBuilderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/GoogleCalendarController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/GoogleCalendarController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/KnowledgeBaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/KnowledgeBaseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LeadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/LeadController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LeadFormController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/LeadFormController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/NotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/NotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/OAuthConfigurationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/OAuthConfigurationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/OAuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/OAuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/QuoteRequestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/QuoteRequestController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ReportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/ReportController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TaskController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/TaskController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TeamInvitationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/TeamInvitationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TicketController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/TicketController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TwilioController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/TwilioController.php -------------------------------------------------------------------------------- /app/Http/Controllers/WorkflowController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Controllers/WorkflowController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Livewire/CallManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Livewire/CallManager.php -------------------------------------------------------------------------------- /app/Http/Livewire/ContactCollaboration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Livewire/ContactCollaboration.php -------------------------------------------------------------------------------- /app/Http/Livewire/CreateTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Livewire/CreateTeam.php -------------------------------------------------------------------------------- /app/Http/Livewire/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Livewire/Dashboard.php -------------------------------------------------------------------------------- /app/Http/Livewire/DealCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Livewire/DealCard.php -------------------------------------------------------------------------------- /app/Http/Livewire/OpportunityPipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Livewire/OpportunityPipeline.php -------------------------------------------------------------------------------- /app/Http/Livewire/ReportCustomizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Livewire/ReportCustomizer.php -------------------------------------------------------------------------------- /app/Http/Livewire/TaskForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Livewire/TaskForm.php -------------------------------------------------------------------------------- /app/Http/Livewire/TaskList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Livewire/TaskList.php -------------------------------------------------------------------------------- /app/Http/Middleware/AssignDefaultTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Middleware/AssignDefaultTeam.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/RoleBasedRedirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Middleware/RoleBasedRedirect.php -------------------------------------------------------------------------------- /app/Http/Middleware/ScreeningDataEncryptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Middleware/ScreeningDataEncryptor.php -------------------------------------------------------------------------------- /app/Http/Middleware/TeamsPermission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Middleware/TeamsPermission.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Responses/LoginResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Responses/LoginResponse.php -------------------------------------------------------------------------------- /app/Http/Responses/LogoutResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Responses/LogoutResponse.php -------------------------------------------------------------------------------- /app/Http/Responses/RegisterResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Http/Responses/RegisterResponse.php -------------------------------------------------------------------------------- /app/Jobs/ExecuteWorkflowAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Jobs/ExecuteWorkflowAction.php -------------------------------------------------------------------------------- /app/Jobs/FetchGmailTickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Jobs/FetchGmailTickets.php -------------------------------------------------------------------------------- /app/Jobs/FetchMessages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Jobs/FetchMessages.php -------------------------------------------------------------------------------- /app/Jobs/SendMarketingCampaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Jobs/SendMarketingCampaign.php -------------------------------------------------------------------------------- /app/Listeners/CreatePersonalTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Listeners/CreatePersonalTeam.php -------------------------------------------------------------------------------- /app/Listeners/EmailTracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Listeners/EmailTracker.php -------------------------------------------------------------------------------- /app/Listeners/LogSuccessfulLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Listeners/LogSuccessfulLogin.php -------------------------------------------------------------------------------- /app/Listeners/SendCRMEventNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Listeners/SendCRMEventNotification.php -------------------------------------------------------------------------------- /app/Listeners/SwitchTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Listeners/SwitchTeam.php -------------------------------------------------------------------------------- /app/Models/AccountingIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/AccountingIntegration.php -------------------------------------------------------------------------------- /app/Models/Activation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Activation.php -------------------------------------------------------------------------------- /app/Models/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Activity.php -------------------------------------------------------------------------------- /app/Models/AdvertisingAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/AdvertisingAccount.php -------------------------------------------------------------------------------- /app/Models/AuditLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/AuditLog.php -------------------------------------------------------------------------------- /app/Models/CallSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/CallSetting.php -------------------------------------------------------------------------------- /app/Models/CampaignRecipient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/CampaignRecipient.php -------------------------------------------------------------------------------- /app/Models/Company.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Company.php -------------------------------------------------------------------------------- /app/Models/ConnectedAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/ConnectedAccount.php -------------------------------------------------------------------------------- /app/Models/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Contact.php -------------------------------------------------------------------------------- /app/Models/CustomField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/CustomField.php -------------------------------------------------------------------------------- /app/Models/DashboardWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/DashboardWidget.php -------------------------------------------------------------------------------- /app/Models/Deal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Deal.php -------------------------------------------------------------------------------- /app/Models/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Document.php -------------------------------------------------------------------------------- /app/Models/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Email.php -------------------------------------------------------------------------------- /app/Models/FormBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/FormBuilder.php -------------------------------------------------------------------------------- /app/Models/KnowledgeBaseArticle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/KnowledgeBaseArticle.php -------------------------------------------------------------------------------- /app/Models/LandingPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/LandingPage.php -------------------------------------------------------------------------------- /app/Models/Lead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Lead.php -------------------------------------------------------------------------------- /app/Models/LeadForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/LeadForm.php -------------------------------------------------------------------------------- /app/Models/MarketingCampaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/MarketingCampaign.php -------------------------------------------------------------------------------- /app/Models/Membership.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Membership.php -------------------------------------------------------------------------------- /app/Models/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Menu.php -------------------------------------------------------------------------------- /app/Models/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Message.php -------------------------------------------------------------------------------- /app/Models/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Note.php -------------------------------------------------------------------------------- /app/Models/OAuthConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/OAuthConfiguration.php -------------------------------------------------------------------------------- /app/Models/Opportunity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Opportunity.php -------------------------------------------------------------------------------- /app/Models/Pipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Pipeline.php -------------------------------------------------------------------------------- /app/Models/QuoteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/QuoteRequest.php -------------------------------------------------------------------------------- /app/Models/SiteSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/SiteSettings.php -------------------------------------------------------------------------------- /app/Models/SocialMediaPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/SocialMediaPost.php -------------------------------------------------------------------------------- /app/Models/Stage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Stage.php -------------------------------------------------------------------------------- /app/Models/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Task.php -------------------------------------------------------------------------------- /app/Models/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Team.php -------------------------------------------------------------------------------- /app/Models/TeamInvitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/TeamInvitation.php -------------------------------------------------------------------------------- /app/Models/TeamSubscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/TeamSubscription.php -------------------------------------------------------------------------------- /app/Models/Tenant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Tenant.php -------------------------------------------------------------------------------- /app/Models/Ticket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Ticket.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/WhatsAppNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/WhatsAppNumber.php -------------------------------------------------------------------------------- /app/Models/Workflow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Models/Workflow.php -------------------------------------------------------------------------------- /app/Modules/BaseModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Modules/BaseModule.php -------------------------------------------------------------------------------- /app/Modules/Contracts/ModuleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Modules/Contracts/ModuleInterface.php -------------------------------------------------------------------------------- /app/Modules/ModuleManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Modules/ModuleManager.php -------------------------------------------------------------------------------- /app/Modules/ModuleServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Modules/ModuleServiceProvider.php -------------------------------------------------------------------------------- /app/Notifications/CRMEventNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Notifications/CRMEventNotification.php -------------------------------------------------------------------------------- /app/Notifications/TaskReminderNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Notifications/TaskReminderNotification.php -------------------------------------------------------------------------------- /app/Notifications/TeamInvitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Notifications/TeamInvitation.php -------------------------------------------------------------------------------- /app/Observers/TaskObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Observers/TaskObserver.php -------------------------------------------------------------------------------- /app/Policies/ConnectedAccountPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Policies/ConnectedAccountPolicy.php -------------------------------------------------------------------------------- /app/Policies/ContactPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Policies/ContactPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/AdminPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Providers/Filament/AdminPanelProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/AppPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Providers/Filament/AppPanelProvider.php -------------------------------------------------------------------------------- /app/Providers/FilamentServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Providers/FilamentServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/FortifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Providers/FortifyServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/JetstreamServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Providers/JetstreamServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/SocialstreamServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Providers/SocialstreamServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/TeamServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Providers/TeamServiceProvider.php -------------------------------------------------------------------------------- /app/Services/AccountingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/AccountingService.php -------------------------------------------------------------------------------- /app/Services/AuditLogService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/AuditLogService.php -------------------------------------------------------------------------------- /app/Services/CalendarService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/CalendarService.php -------------------------------------------------------------------------------- /app/Services/DataEnrichmentService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/DataEnrichmentService.php -------------------------------------------------------------------------------- /app/Services/FacebookAdsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/FacebookAdsService.php -------------------------------------------------------------------------------- /app/Services/FacebookMessengerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/FacebookMessengerService.php -------------------------------------------------------------------------------- /app/Services/FacebookService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/FacebookService.php -------------------------------------------------------------------------------- /app/Services/GmailService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/GmailService.php -------------------------------------------------------------------------------- /app/Services/GoogleAdsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/GoogleAdsService.php -------------------------------------------------------------------------------- /app/Services/GoogleCalendarService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/GoogleCalendarService.php -------------------------------------------------------------------------------- /app/Services/InstagramService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/InstagramService.php -------------------------------------------------------------------------------- /app/Services/LeadScoringService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/LeadScoringService.php -------------------------------------------------------------------------------- /app/Services/LinkedInAdsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/LinkedInAdsService.php -------------------------------------------------------------------------------- /app/Services/LinkedInService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/LinkedInService.php -------------------------------------------------------------------------------- /app/Services/MailChimpService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/MailChimpService.php -------------------------------------------------------------------------------- /app/Services/MenuService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/MenuService.php -------------------------------------------------------------------------------- /app/Services/MessageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/MessageService.php -------------------------------------------------------------------------------- /app/Services/OAuth/TwilioProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/OAuth/TwilioProvider.php -------------------------------------------------------------------------------- /app/Services/OutlookCalendarService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/OutlookCalendarService.php -------------------------------------------------------------------------------- /app/Services/PersonalizationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/PersonalizationService.php -------------------------------------------------------------------------------- /app/Services/ReminderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/ReminderService.php -------------------------------------------------------------------------------- /app/Services/ReportingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/ReportingService.php -------------------------------------------------------------------------------- /app/Services/SiteSettingsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/SiteSettingsService.php -------------------------------------------------------------------------------- /app/Services/StripeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/StripeService.php -------------------------------------------------------------------------------- /app/Services/TeamManagementService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/TeamManagementService.php -------------------------------------------------------------------------------- /app/Services/TransactionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/TransactionService.php -------------------------------------------------------------------------------- /app/Services/TwilioService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/TwilioService.php -------------------------------------------------------------------------------- /app/Services/TwitterService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/TwitterService.php -------------------------------------------------------------------------------- /app/Services/UnifiedHelpDeskService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/UnifiedHelpDeskService.php -------------------------------------------------------------------------------- /app/Services/WhatsAppBusinessService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Services/WhatsAppBusinessService.php -------------------------------------------------------------------------------- /app/Settings/GeneralSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Settings/GeneralSettings.php -------------------------------------------------------------------------------- /app/Traits/IsTenantModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/Traits/IsTenantModel.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/crm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/crm.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/filament-shield.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/fortify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/fortify.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/jetstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/jetstream.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/modules.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/session.php -------------------------------------------------------------------------------- /config/socialstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/socialstream.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/AccountingIntegrationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/AccountingIntegrationFactory.php -------------------------------------------------------------------------------- /database/factories/ActivityFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/ActivityFactory.php -------------------------------------------------------------------------------- /database/factories/AdvertisingAccountFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/AdvertisingAccountFactory.php -------------------------------------------------------------------------------- /database/factories/AuditLogFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/AuditLogFactory.php -------------------------------------------------------------------------------- /database/factories/CallSettingFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/CallSettingFactory.php -------------------------------------------------------------------------------- /database/factories/CampaignRecipientFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/CampaignRecipientFactory.php -------------------------------------------------------------------------------- /database/factories/CompanyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/CompanyFactory.php -------------------------------------------------------------------------------- /database/factories/ConnectedAccountFactory copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/ConnectedAccountFactory copy.php -------------------------------------------------------------------------------- /database/factories/ConnectedAccountFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/ConnectedAccountFactory.php -------------------------------------------------------------------------------- /database/factories/ContactFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/ContactFactory.php -------------------------------------------------------------------------------- /database/factories/CustomFieldFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/CustomFieldFactory.php -------------------------------------------------------------------------------- /database/factories/DashboardWidgetFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/DashboardWidgetFactory.php -------------------------------------------------------------------------------- /database/factories/DealFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/DealFactory.php -------------------------------------------------------------------------------- /database/factories/DocumentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/DocumentFactory.php -------------------------------------------------------------------------------- /database/factories/EmailFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/EmailFactory.php -------------------------------------------------------------------------------- /database/factories/FormBuilderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/FormBuilderFactory.php -------------------------------------------------------------------------------- /database/factories/KnowledgeBaseArticleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/KnowledgeBaseArticleFactory.php -------------------------------------------------------------------------------- /database/factories/LandingPageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/LandingPageFactory.php -------------------------------------------------------------------------------- /database/factories/LeadFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/LeadFactory.php -------------------------------------------------------------------------------- /database/factories/LeadFormFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/LeadFormFactory.php -------------------------------------------------------------------------------- /database/factories/MarketingCampaignFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/MarketingCampaignFactory.php -------------------------------------------------------------------------------- /database/factories/MenuFactory copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/MenuFactory copy.php -------------------------------------------------------------------------------- /database/factories/MenuFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/MenuFactory.php -------------------------------------------------------------------------------- /database/factories/MessageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/MessageFactory.php -------------------------------------------------------------------------------- /database/factories/TaskFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/TaskFactory.php -------------------------------------------------------------------------------- /database/factories/TeamFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/TeamFactory.php -------------------------------------------------------------------------------- /database/factories/TeamSubscriptionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/TeamSubscriptionFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/UserFactory copy.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/factories/WorkflowFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/factories/WorkflowFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_make_password_nullable_on_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/0001_01_01_000001_make_password_nullable_on_users_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_connected_accounts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/0001_01_01_000002_create_connected_accounts_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_15_000010_create_tenants_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2019_09_15_000010_create_tenants_table.php -------------------------------------------------------------------------------- /database/migrations/2020_05_21_100000_create_teams_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2020_05_21_100000_create_teams_table.php -------------------------------------------------------------------------------- /database/migrations/2020_05_21_200000_create_team_user_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2020_05_21_200000_create_team_user_table.php -------------------------------------------------------------------------------- /database/migrations/2020_05_21_300000_create_team_invitations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2020_05_21_300000_create_team_invitations_table.php -------------------------------------------------------------------------------- /database/migrations/2020_06_30_135250_create_activations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2020_06_30_135250_create_activations_table.php -------------------------------------------------------------------------------- /database/migrations/2022_10_30_150853_create_companies_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2022_10_30_150853_create_companies_table.php -------------------------------------------------------------------------------- /database/migrations/2023_01_20_000003_update_companies_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_01_20_000003_update_companies_table.php -------------------------------------------------------------------------------- /database/migrations/2023_01_31_124707_create_contacts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_01_31_124707_create_contacts_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_01_000000_create_landing_pages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_05_01_000000_create_landing_pages_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_15_000000_create_site_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_05_15_000000_create_site_settings_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_20_000000_create_call_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_05_20_000000_create_call_settings_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_20_000000_create_social_media_posts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_05_20_000000_create_social_media_posts_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_20_000000_enhance_crm_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_05_20_000000_enhance_crm_tables.php -------------------------------------------------------------------------------- /database/migrations/2023_05_20_000001_create_marketing_campaigns_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_05_20_000001_create_marketing_campaigns_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_20_000002_create_campaign_recipients_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_05_20_000002_create_campaign_recipients_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_20_000004_create_pipelines_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_05_20_000004_create_pipelines_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_24_create_lead_forms_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_05_24_create_lead_forms_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_25_000000_create_custom_fields_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_05_25_000000_create_custom_fields_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_25_000001_add_contacts_email_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_05_25_000001_add_contacts_email_index.php -------------------------------------------------------------------------------- /database/migrations/2023_05_25_000001_add_custom_fields_to_contacts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_05_25_000001_add_custom_fields_to_contacts_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_25_000002_add_custom_fields_to_leads_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_05_25_000002_add_custom_fields_to_leads_table.php -------------------------------------------------------------------------------- /database/migrations/2023_06_01_000000_create_leads_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_06_01_000000_create_leads_table.php -------------------------------------------------------------------------------- /database/migrations/2023_06_02_000000_create_workflows_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_06_02_000000_create_workflows_table.php -------------------------------------------------------------------------------- /database/migrations/2023_10_31_125000_create_opportunities_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_10_31_125000_create_opportunities_table.php -------------------------------------------------------------------------------- /database/migrations/2023_10_31_125013_create_notes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_10_31_125013_create_notes_table.php -------------------------------------------------------------------------------- /database/migrations/2023_10_31_150226_create_tasks_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2023_10_31_150226_create_tasks_table.php -------------------------------------------------------------------------------- /database/migrations/2024_01_01_000000_create_deals_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_01_01_000000_create_deals_table.php -------------------------------------------------------------------------------- /database/migrations/2024_01_01_000001_create_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_01_01_000001_create_settings_table.php -------------------------------------------------------------------------------- /database/migrations/2024_01_02_000000_create_stages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_01_02_000000_create_stages_table.php -------------------------------------------------------------------------------- /database/migrations/2024_01_10_000000_create_oauth_configurations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_01_10_000000_create_oauth_configurations_table.php -------------------------------------------------------------------------------- /database/migrations/2024_01_10_000000_create_team_subscriptions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_01_10_000000_create_team_subscriptions_table.php -------------------------------------------------------------------------------- /database/migrations/2024_02_21_190705_create_permission_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_02_21_190705_create_permission_tables.php -------------------------------------------------------------------------------- /database/migrations/2024_02_24_000000_create_reminder_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_02_24_000000_create_reminder_settings_table.php -------------------------------------------------------------------------------- /database/migrations/2024_05_20_000001_update_contacts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_05_20_000001_update_contacts_table.php -------------------------------------------------------------------------------- /database/migrations/2024_06_01_000000_add_calendar_fields_to_tasks_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_06_01_000000_add_calendar_fields_to_tasks_table.php -------------------------------------------------------------------------------- /database/migrations/2024_07_24_080000_create_menus_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_07_24_080000_create_menus_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_29_093707_add_team_to_resources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_09_29_093707_add_team_to_resources.php -------------------------------------------------------------------------------- /database/migrations/2024_10_13_000000_add_pipeline_and_stage_to_deals_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_10_13_000000_add_pipeline_and_stage_to_deals_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_13_000000_create_accounting_integrations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_10_13_000000_create_accounting_integrations_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_13_020000_create_audit_logs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_10_13_020000_create_audit_logs_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_13_030000_create_knowledge_base_articles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_10_13_030000_create_knowledge_base_articles_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_13_040000_create_quote_requests_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_10_13_040000_create_quote_requests_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_20_000000_enhance_crm_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_10_20_000000_enhance_crm_tables.php -------------------------------------------------------------------------------- /database/migrations/2024_10_21_000000_create_emails_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_10_21_000000_create_emails_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_22_000000_create_advertising_accounts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_10_22_000000_create_advertising_accounts_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_22_000000_create_dashboard_widgets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_10_22_000000_create_dashboard_widgets_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_22_000000_create_form_builders_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_10_22_000000_create_form_builders_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_22_000000_create_tickets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_10_22_000000_create_tickets_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_22_000000_create_whatsapp_numbers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_10_22_000000_create_whatsapp_numbers_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_23_000000_create_facebook_messenger_messages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_10_23_000000_create_facebook_messenger_messages_table.php -------------------------------------------------------------------------------- /database/migrations/2024_1116_000000_create_documents_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_1116_000000_create_documents_table.php -------------------------------------------------------------------------------- /database/migrations/2024_11_17_000000_add_team_id_to-staff_resource_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2024_11_17_000000_add_team_id_to-staff_resource_tables.php -------------------------------------------------------------------------------- /database/migrations/2025_01_27_173821_create_message_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2025_01_27_173821_create_message_table.php -------------------------------------------------------------------------------- /database/migrations/2025_11_20_111132_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2025_11_20_111132_create_notifications_table.php -------------------------------------------------------------------------------- /database/migrations/2025_11_20_112532_add_team_to_messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/migrations/2025_11_20_112532_add_team_to_messages.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/MenuSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/seeders/MenuSeeder.php -------------------------------------------------------------------------------- /database/seeders/PermissionsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/seeders/PermissionsSeeder.php -------------------------------------------------------------------------------- /database/seeders/RolesSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/seeders/RolesSeeder.php -------------------------------------------------------------------------------- /database/seeders/SiteSettingsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/seeders/SiteSettingsSeeder.php -------------------------------------------------------------------------------- /database/seeders/TeamSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/seeders/TeamSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /docs/MODULAR_ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/docs/MODULAR_ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/api-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/docs/api-documentation.md -------------------------------------------------------------------------------- /docs/contact-management-ui-ux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/docs/contact-management-ui-ux.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/build/assets/app-D9QbjTnU.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/build/assets/app-D9QbjTnU.css -------------------------------------------------------------------------------- /public/build/assets/app-l0sNRNKZ.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/build/assets/theme-D1c4Yq07.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/build/assets/theme-D1c4Yq07.css -------------------------------------------------------------------------------- /public/build/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/build/images/logo.png -------------------------------------------------------------------------------- /public/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/build/manifest.json -------------------------------------------------------------------------------- /public/css/filament/filament/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/css/filament/filament/app.css -------------------------------------------------------------------------------- /public/css/filament/forms/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/css/filament/forms/forms.css -------------------------------------------------------------------------------- /public/css/filament/support/support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/css/filament/support/support.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/index.css -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-cyrillic-ext-wght-normal-ASVAGXXE.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-cyrillic-ext-wght-normal-ASVAGXXE.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-cyrillic-ext-wght-normal-IYF56FF6.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-cyrillic-ext-wght-normal-IYF56FF6.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-cyrillic-ext-wght-normal-XKHXBTUO.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-cyrillic-ext-wght-normal-XKHXBTUO.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-cyrillic-wght-normal-EWLSKVKN.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-cyrillic-wght-normal-EWLSKVKN.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-cyrillic-wght-normal-JEOLYBOO.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-cyrillic-wght-normal-JEOLYBOO.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-cyrillic-wght-normal-R5CMSONN.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-cyrillic-wght-normal-R5CMSONN.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-greek-ext-wght-normal-7GGTF7EK.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-greek-ext-wght-normal-7GGTF7EK.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-greek-ext-wght-normal-EOVOK2B5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-greek-ext-wght-normal-EOVOK2B5.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-greek-ext-wght-normal-ZEVLMORV.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-greek-ext-wght-normal-ZEVLMORV.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-greek-wght-normal-AXVTPQD5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-greek-wght-normal-AXVTPQD5.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-greek-wght-normal-IRE366VL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-greek-wght-normal-IRE366VL.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-greek-wght-normal-N43DBLU2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-greek-wght-normal-N43DBLU2.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-latin-ext-wght-normal-5SRY4DMZ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-latin-ext-wght-normal-5SRY4DMZ.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-latin-ext-wght-normal-GZCIV3NH.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-latin-ext-wght-normal-GZCIV3NH.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-latin-ext-wght-normal-HA22NDSG.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-latin-ext-wght-normal-HA22NDSG.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-latin-wght-normal-NRMW37G5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-latin-wght-normal-NRMW37G5.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-latin-wght-normal-O25CN4JL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-latin-wght-normal-O25CN4JL.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-latin-wght-normal-OPIJAQLS.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-latin-wght-normal-OPIJAQLS.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-vietnamese-wght-normal-CE5GGD3W.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-vietnamese-wght-normal-CE5GGD3W.woff2 -------------------------------------------------------------------------------- /public/fonts/filament/filament/inter/inter-vietnamese-wght-normal-TWG5UU7E.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/fonts/filament/filament/inter/inter-vietnamese-wght-normal-TWG5UU7E.woff2 -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/filament/actions/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/actions/actions.js -------------------------------------------------------------------------------- /public/js/filament/filament/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/filament/app.js -------------------------------------------------------------------------------- /public/js/filament/filament/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/filament/echo.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/checkbox-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/forms/components/checkbox-list.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/code-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/forms/components/code-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/color-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/forms/components/color-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/date-time-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/forms/components/date-time-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/forms/components/file-upload.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/key-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/forms/components/key-value.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/markdown-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/forms/components/markdown-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/rich-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/forms/components/rich-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/forms/components/select.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/forms/components/slider.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/tags-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/forms/components/tags-input.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/forms/components/textarea.js -------------------------------------------------------------------------------- /public/js/filament/notifications/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/notifications/notifications.js -------------------------------------------------------------------------------- /public/js/filament/schemas/components/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/schemas/components/actions.js -------------------------------------------------------------------------------- /public/js/filament/schemas/components/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/schemas/components/tabs.js -------------------------------------------------------------------------------- /public/js/filament/schemas/components/wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/schemas/components/wizard.js -------------------------------------------------------------------------------- /public/js/filament/schemas/schemas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/schemas/schemas.js -------------------------------------------------------------------------------- /public/js/filament/support/async-alpine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/support/async-alpine.js -------------------------------------------------------------------------------- /public/js/filament/support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/support/support.js -------------------------------------------------------------------------------- /public/js/filament/tables/components/columns/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/tables/components/columns/checkbox.js -------------------------------------------------------------------------------- /public/js/filament/tables/components/columns/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/tables/components/columns/select.js -------------------------------------------------------------------------------- /public/js/filament/tables/components/columns/text-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/tables/components/columns/text-input.js -------------------------------------------------------------------------------- /public/js/filament/tables/components/columns/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/tables/components/columns/toggle.js -------------------------------------------------------------------------------- /public/js/filament/tables/components/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/tables/components/table.js -------------------------------------------------------------------------------- /public/js/filament/tables/tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/tables/tables.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/widgets/components/chart.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/stats-overview/stat/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/public/js/filament/widgets/components/stats-overview/stat/chart.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | @import 'tailwindcss'; 2 | -------------------------------------------------------------------------------- /resources/css/filament/admin/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/css/filament/admin/tailwind.config.js -------------------------------------------------------------------------------- /resources/css/filament/admin/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/css/filament/admin/theme.css -------------------------------------------------------------------------------- /resources/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/images/logo.png -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/api/api-token-manager.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/api/api-token-manager.blade.php -------------------------------------------------------------------------------- /resources/views/api/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/api/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/social-login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/auth/social-login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/two-factor-challenge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/auth/two-factor-challenge.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/components/action-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/action-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/action-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/action-message.blade.php -------------------------------------------------------------------------------- /resources/views/components/action-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/action-section.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-mark.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/application-mark.blade.php -------------------------------------------------------------------------------- /resources/views/components/authentication-card-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/authentication-card-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/authentication-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/authentication-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/banner.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/banner.blade.php -------------------------------------------------------------------------------- /resources/views/components/breadcrumbs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/breadcrumbs.blade.php -------------------------------------------------------------------------------- /resources/views/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/components/buttons.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/buttons.blade.php -------------------------------------------------------------------------------- /resources/views/components/checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/checkbox.blade.php -------------------------------------------------------------------------------- /resources/views/components/confirmation-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/confirmation-modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/confirms-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/confirms-password.blade.php -------------------------------------------------------------------------------- /resources/views/components/connected-account.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/connected-account.blade.php -------------------------------------------------------------------------------- /resources/views/components/connected-social-accounts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/connected-social-accounts.blade.php -------------------------------------------------------------------------------- /resources/views/components/contact-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/contact-form.blade.php -------------------------------------------------------------------------------- /resources/views/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/danger-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/dialog-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/dialog-modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/footer.blade.php -------------------------------------------------------------------------------- /resources/views/components/form-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/form-section.blade.php -------------------------------------------------------------------------------- /resources/views/components/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/header.blade.php -------------------------------------------------------------------------------- /resources/views/components/home-header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/home-header.blade.php -------------------------------------------------------------------------------- /resources/views/components/home-navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/home-navbar.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/input-error.blade.php -------------------------------------------------------------------------------- /resources/views/components/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/input.blade.php -------------------------------------------------------------------------------- /resources/views/components/label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/label.blade.php -------------------------------------------------------------------------------- /resources/views/components/manage_section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/manage_section.blade.php -------------------------------------------------------------------------------- /resources/views/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/products_section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/products_section.blade.php -------------------------------------------------------------------------------- /resources/views/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/secondary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/secondary-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/section-border.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/section-border.blade.php -------------------------------------------------------------------------------- /resources/views/components/section-title.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/section-title.blade.php -------------------------------------------------------------------------------- /resources/views/components/socialstream-icons/bitbucket.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/socialstream-icons/bitbucket.blade.php -------------------------------------------------------------------------------- /resources/views/components/socialstream-icons/facebook.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/socialstream-icons/facebook.blade.php -------------------------------------------------------------------------------- /resources/views/components/socialstream-icons/github.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/socialstream-icons/github.blade.php -------------------------------------------------------------------------------- /resources/views/components/socialstream-icons/gitlab.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/socialstream-icons/gitlab.blade.php -------------------------------------------------------------------------------- /resources/views/components/socialstream-icons/google.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/socialstream-icons/google.blade.php -------------------------------------------------------------------------------- /resources/views/components/socialstream-icons/linkedin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/socialstream-icons/linkedin.blade.php -------------------------------------------------------------------------------- /resources/views/components/socialstream-icons/provider-icon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/socialstream-icons/provider-icon.blade.php -------------------------------------------------------------------------------- /resources/views/components/socialstream-icons/slack.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/socialstream-icons/slack.blade.php -------------------------------------------------------------------------------- /resources/views/components/socialstream-icons/twitter.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/socialstream-icons/twitter.blade.php -------------------------------------------------------------------------------- /resources/views/components/socialstream.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/socialstream.blade.php -------------------------------------------------------------------------------- /resources/views/components/switchable-team.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/switchable-team.blade.php -------------------------------------------------------------------------------- /resources/views/components/team-invitation-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/team-invitation-form.blade.php -------------------------------------------------------------------------------- /resources/views/components/user-feedback.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/user-feedback.blade.php -------------------------------------------------------------------------------- /resources/views/components/validation-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/validation-errors.blade.php -------------------------------------------------------------------------------- /resources/views/components/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/welcome.blade.php -------------------------------------------------------------------------------- /resources/views/components/why_us_section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/components/why_us_section.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/filament/app/pages/twilio-integration.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/app/pages/twilio-integration.blade.php -------------------------------------------------------------------------------- /resources/views/filament/app/pages/twilio-settings.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/app/pages/twilio-settings.blade.php -------------------------------------------------------------------------------- /resources/views/filament/app/resources/advertising-dashboard-resource/pages/view-advertising-dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/app/resources/advertising-dashboard-resource/pages/view-advertising-dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/filament/app/resources/analytics-dashboard/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/app/resources/analytics-dashboard/view.blade.php -------------------------------------------------------------------------------- /resources/views/filament/components/engagement-chart.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/components/engagement-chart.blade.php -------------------------------------------------------------------------------- /resources/views/filament/components/social-media-preview.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/components/social-media-preview.blade.php -------------------------------------------------------------------------------- /resources/views/filament/filament/pages/api-tokens.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/filament/pages/api-tokens.blade.php -------------------------------------------------------------------------------- /resources/views/filament/filament/pages/create-team.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/filament/pages/create-team.blade.php -------------------------------------------------------------------------------- /resources/views/filament/filament/pages/edit-profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/filament/pages/edit-profile.blade.php -------------------------------------------------------------------------------- /resources/views/filament/filament/pages/edit-team.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/filament/pages/edit-team.blade.php -------------------------------------------------------------------------------- /resources/views/filament/pages/api-tokens.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/pages/api-tokens.blade.php -------------------------------------------------------------------------------- /resources/views/filament/pages/create-team.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/pages/create-team.blade.php -------------------------------------------------------------------------------- /resources/views/filament/pages/edit-profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/pages/edit-profile.blade.php -------------------------------------------------------------------------------- /resources/views/filament/pages/edit-team.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/pages/edit-team.blade.php -------------------------------------------------------------------------------- /resources/views/filament/pages/report-customizer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/pages/report-customizer.blade.php -------------------------------------------------------------------------------- /resources/views/filament/resources/gedcom-resource/pages/gedcom.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/resources/gedcom-resource/pages/gedcom.blade.php -------------------------------------------------------------------------------- /resources/views/filament/widgets/daboville-report.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/widgets/daboville-report.blade.php -------------------------------------------------------------------------------- /resources/views/filament/widgets/descendant-chart.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/widgets/descendant-chart.blade.php -------------------------------------------------------------------------------- /resources/views/filament/widgets/report-widget.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/filament/widgets/report-widget.blade.php -------------------------------------------------------------------------------- /resources/views/helpdesk/messages.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/helpdesk/messages.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/call-manager.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/livewire/call-manager.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/contact-collaboration.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/livewire/contact-collaboration.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/content-preview.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/livewire/content-preview.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/counter.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/livewire/counter.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/livewire/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/livewire/footer.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/homepage.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/livewire/homepage.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/livewire/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/opportunity-pipeline.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/livewire/opportunity-pipeline.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/report-customizer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/livewire/report-customizer.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/webrender.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/livewire/webrender.blade.php -------------------------------------------------------------------------------- /resources/views/oauth/configurations/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/oauth/configurations/create.blade.php -------------------------------------------------------------------------------- /resources/views/oauth/configurations/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/oauth/configurations/index.blade.php -------------------------------------------------------------------------------- /resources/views/profile/connected-accounts-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/profile/connected-accounts-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/set-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/profile/set-password-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/profile/show.blade.php -------------------------------------------------------------------------------- /resources/views/tasks/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/tasks/create.blade.php -------------------------------------------------------------------------------- /resources/views/tasks/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/tasks/edit.blade.php -------------------------------------------------------------------------------- /resources/views/tasks/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/tasks/index.blade.php -------------------------------------------------------------------------------- /resources/views/teams/create-team-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/teams/create-team-form.blade.php -------------------------------------------------------------------------------- /resources/views/teams/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/teams/create.blade.php -------------------------------------------------------------------------------- /resources/views/teams/delete-team-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/teams/delete-team-form.blade.php -------------------------------------------------------------------------------- /resources/views/teams/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/teams/show.blade.php -------------------------------------------------------------------------------- /resources/views/teams/team-member-manager.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/teams/team-member-manager.blade.php -------------------------------------------------------------------------------- /resources/views/teams/update-team-name-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/teams/update-team-name-form.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/socialstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/routes/socialstream.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/routes/web.php -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/setup.sh -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /sweep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/sweep.yaml -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ABTestingMailchimpCampaignTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/ABTestingMailchimpCampaignTest.php -------------------------------------------------------------------------------- /tests/Feature/AccountingIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/AccountingIntegrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ActivitySearchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/ActivitySearchTest.php -------------------------------------------------------------------------------- /tests/Feature/AnalyticsDashboardTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/AnalyticsDashboardTest.php -------------------------------------------------------------------------------- /tests/Feature/Api/ContactApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/Api/ContactApiTest.php -------------------------------------------------------------------------------- /tests/Feature/Api/DealApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/Api/DealApiTest.php -------------------------------------------------------------------------------- /tests/Feature/Api/TaskApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/Api/TaskApiTest.php -------------------------------------------------------------------------------- /tests/Feature/AuditLogViewTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/AuditLogViewTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/LoginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/Auth/LoginTest.php -------------------------------------------------------------------------------- /tests/Feature/CalendarIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/CalendarIntegrationTest.php -------------------------------------------------------------------------------- /tests/Feature/CampaignPerformanceReportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/CampaignPerformanceReportTest.php -------------------------------------------------------------------------------- /tests/Feature/ContactCollaborationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/ContactCollaborationTest.php -------------------------------------------------------------------------------- /tests/Feature/ContactManagementUITest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/ContactManagementUITest.php -------------------------------------------------------------------------------- /tests/Feature/ContactResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/ContactResourceTest.php -------------------------------------------------------------------------------- /tests/Feature/ContactSearchPerformanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/ContactSearchPerformanceTest.php -------------------------------------------------------------------------------- /tests/Feature/CustomFieldsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/CustomFieldsTest.php -------------------------------------------------------------------------------- /tests/Feature/DashboardCustomizationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/DashboardCustomizationTest.php -------------------------------------------------------------------------------- /tests/Feature/DocumentManagementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/DocumentManagementTest.php -------------------------------------------------------------------------------- /tests/Feature/EmailTrackingIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/EmailTrackingIntegrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/Filament/Pages/ReportCustomizerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/Filament/Pages/ReportCustomizerTest.php -------------------------------------------------------------------------------- /tests/Feature/Filament/TwilioIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/Filament/TwilioIntegrationTest.php -------------------------------------------------------------------------------- /tests/Feature/LeadFormControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/LeadFormControllerTest.php -------------------------------------------------------------------------------- /tests/Feature/LeadManagementUITest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/LeadManagementUITest.php -------------------------------------------------------------------------------- /tests/Feature/ModuleSystemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/ModuleSystemTest.php -------------------------------------------------------------------------------- /tests/Feature/NotificationDisplayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/NotificationDisplayTest.php -------------------------------------------------------------------------------- /tests/Feature/NotificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/NotificationTest.php -------------------------------------------------------------------------------- /tests/Feature/OAuthConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/OAuthConfigurationTest.php -------------------------------------------------------------------------------- /tests/Feature/OpportunityPipelineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/OpportunityPipelineTest.php -------------------------------------------------------------------------------- /tests/Feature/OpportunityResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/OpportunityResourceTest.php -------------------------------------------------------------------------------- /tests/Feature/ReportGenerationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/ReportGenerationTest.php -------------------------------------------------------------------------------- /tests/Feature/RolePermissionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/RolePermissionTest.php -------------------------------------------------------------------------------- /tests/Feature/SocialstreamRegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/SocialstreamRegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/TaskListUITest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/TaskListUITest.php -------------------------------------------------------------------------------- /tests/Feature/TaskManagementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/TaskManagementTest.php -------------------------------------------------------------------------------- /tests/Feature/TaskReminderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/TaskReminderTest.php -------------------------------------------------------------------------------- /tests/Feature/TeamInvitationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/TeamInvitationTest.php -------------------------------------------------------------------------------- /tests/Feature/TeamSubscriptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/TeamSubscriptionTest.php -------------------------------------------------------------------------------- /tests/Feature/TransactionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/TransactionTest.php -------------------------------------------------------------------------------- /tests/Feature/TwilioIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/TwilioIntegrationTest.php -------------------------------------------------------------------------------- /tests/Feature/WhatsAppIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/WhatsAppIntegrationTest.php -------------------------------------------------------------------------------- /tests/Feature/WorkflowManagementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Feature/WorkflowManagementTest.php -------------------------------------------------------------------------------- /tests/Performance/ContactProfileLoadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Performance/ContactProfileLoadTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ContactStatsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/ContactStatsTest.php -------------------------------------------------------------------------------- /tests/Unit/ContactTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/ContactTest.php -------------------------------------------------------------------------------- /tests/Unit/DashboardWidgetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/DashboardWidgetTest.php -------------------------------------------------------------------------------- /tests/Unit/EmailTrackingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/EmailTrackingTest.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tests/Unit/FacebookMessengerServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/FacebookMessengerServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/GoogleCalendarServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/GoogleCalendarServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/LeadScoringServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/LeadScoringServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/LeadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/LeadTest.php -------------------------------------------------------------------------------- /tests/Unit/ListContactsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/ListContactsTest.php -------------------------------------------------------------------------------- /tests/Unit/Listeners/LogSuccessfulLoginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/Listeners/LogSuccessfulLoginTest.php -------------------------------------------------------------------------------- /tests/Unit/Models/ContactTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/Models/ContactTest.php -------------------------------------------------------------------------------- /tests/Unit/Notifications/CRMEventNotificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/Notifications/CRMEventNotificationTest.php -------------------------------------------------------------------------------- /tests/Unit/OutlookCalendarServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/OutlookCalendarServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/ReminderServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/ReminderServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Services/AuditLogServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/Services/AuditLogServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Services/MailChimpServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/Services/MailChimpServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Services/ReportingServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/Services/ReportingServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/TwilioServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/TwilioServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/WhatsAppBusinessServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/tests/Unit/WhatsAppBusinessServiceTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberu-crm/crm-laravel/HEAD/vite.config.js --------------------------------------------------------------------------------