├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── app ├── Actions │ └── FilamentCompanies │ │ ├── AddCompanyEmployee.php │ │ ├── CreateCompany.php │ │ ├── CreateConnectedAccount.php │ │ ├── CreateNewUser.php │ │ ├── CreateUserFromProvider.php │ │ ├── DeleteCompany.php │ │ ├── DeleteUser.php │ │ ├── HandleInvalidState.php │ │ ├── InviteCompanyEmployee.php │ │ ├── RemoveCompanyEmployee.php │ │ ├── ResolveSocialiteUser.php │ │ ├── SetUserPassword.php │ │ ├── UpdateCompanyName.php │ │ ├── UpdateConnectedAccount.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php ├── Http │ └── Controllers │ │ └── Controller.php ├── Models │ ├── Company.php │ ├── CompanyInvitation.php │ ├── ConnectedAccount.php │ ├── Employeeship.php │ └── User.php ├── Policies │ ├── ActivityPolicy.php │ ├── CompanyPolicy.php │ ├── ConnectedAccountPolicy.php │ ├── ExceptionPolicy.php │ ├── IpPolicy.php │ ├── QueueMonitorPolicy.php │ ├── RolePolicy.php │ ├── SchedulePolicy.php │ ├── ShortURLPolicy.php │ ├── UserPolicy.php │ └── WebhookPolicy.php └── Providers │ ├── AppServiceProvider.php │ ├── Filament │ ├── SysadminPanelServiceProvider.php │ └── TenantPanelServiceProvider.php │ └── TenancyServiceProvider.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── ban.php ├── cache.php ├── cors.php ├── database.php ├── filament-clear-cache.php ├── filament-cookie-consent.php ├── filament-database-schedule.php ├── filament-exceptions.php ├── filament-firewall.php ├── filament-impersonate.php ├── filament-jobs-monitor.php ├── filament-saas.php ├── filament-shield.php ├── filament-tinyeditor.php ├── filament-webhook-server.php ├── filament.php ├── filesystems.php ├── firewall.php ├── geoip.php ├── hashing.php ├── livewire.php ├── log-viewer.php ├── logging.php ├── mail.php ├── maintenance-switch.php ├── media-library.php ├── models.php ├── permission.php ├── queue.php ├── sanctum.php ├── seotools.php ├── services.php ├── session.php ├── tenancy.php ├── themes.php └── view.php ├── database ├── .gitignore ├── factories │ ├── CompanyFactory.php │ └── UserFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_table.php │ ├── 0001_01_01_000001_create_cache_table.php │ ├── 0001_01_01_000002_create_jobs_table.php │ ├── 2019_07_15_000000_create_firewall_ips_table.php │ ├── 2019_07_15_000000_create_firewall_logs_table.php │ ├── 2019_09_15_000010_create_tenants_table.php │ ├── 2019_09_15_000020_create_domains_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2021_12_31_052353_create_settings_table.php │ ├── 2022_03_05_031633_create_tag_tables.php │ ├── 2023_02_26_172600_create_schedule_table.php │ ├── 2023_02_26_175242_create_schedule_histories_table.php │ ├── 2023_05_06_234044_add_two_factor_columns_to_table.php │ ├── 2023_05_07_063935_create_notifications_table.php │ ├── 2023_05_07_064131_create_stats_tables.php │ ├── 2023_06_08_043708_add_settings_user.php │ ├── 2023_06_08_193530_update_firewall_ips_table.php │ ├── 2023_06_08_220952_create_permission_tables.php │ ├── 2023_06_09_011357_add_deleted_at_to_users_table.php │ ├── 2023_06_09_035017_create_filament-webhook_server_table.php │ ├── 2023_06_09_035018_2023_01_19_144816_create_filament_webhook_server_histories_table.php │ ├── 2023_06_09_041831_create_filament-jobs-monitor_table.php │ ├── 2023_06_10_050523_create_bans_table.php │ ├── 2023_06_10_050524_add_banned_at_column_to_users_table.php │ ├── 2023_06_11_045946_create_activity_log_table.php │ ├── 2023_06_11_045947_add_event_column_to_activity_log_table.php │ ├── 2023_06_11_045948_add_batch_uuid_column_to_activity_log_table.php │ ├── 2023_09_24_173451_add_avatar_url_column_to_users_table.php │ ├── 2023_09_24_173625_create_breezy_tables.php │ ├── 2023_10_11_042116_add_themes_settings_to_users_table.php │ ├── 2023_10_22_045259_add_phone_column_to_users_table.php │ ├── 2023_10_22_160311_add_username_column_to_users_table.php │ ├── 2023_12_20_173900_change_status_type_in_schedule_table.php │ ├── 2024_02_22_175500_add_schedule_history_settings_to_schedules_table.php │ ├── 2024_09_14_175713_create_media_table.php │ ├── 2024_09_21_203047_create_advanced_fields_table.php │ ├── 2024_10_06_133024_create_companies_table.php │ ├── 2024_10_06_133025_create_company_user_table.php │ ├── 2024_10_06_140359_create_filament_exceptions_table.php │ ├── 2024_10_06_203306_create_company_invitations_table.php │ ├── 2024_10_06_203311_create_connected_accounts_table.php │ └── 2025_01_24_015035_create_banner_table.php ├── seeders │ └── DatabaseSeeder.php └── settings │ ├── 2023_05_07_081639_create_app_features.php │ ├── 2023_05_07_081639_create_app_settings.php │ ├── 2023_06_12_165809_create_sitemap_settings.php │ ├── 2023_06_12_165809_create_terms_settings.php │ ├── 2023_06_12_165809_createre_c_a_p_t_c_h_a_settings.php │ └── 2023_06_18_084228_create_whatsapp_chat_settings.php ├── devcontainer.json ├── docker-compose.yml ├── lang ├── en.json ├── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── pt_BR.json ├── pt_BR │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php └── vendor │ └── banner │ └── pt_BR │ ├── banner.php │ ├── form.php │ └── manager.php ├── package.json ├── phpstan.neon ├── phpunit.xml ├── pint.json ├── postcss.config.js ├── public ├── .htaccess ├── css │ └── .gitkeep ├── favicon.ico ├── favicon.png ├── favicon.svg ├── 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 ├── images │ ├── companies │ │ ├── amazon-com.svg │ │ ├── amazon.svg │ │ ├── aws.svg │ │ ├── facebook.svg │ │ ├── google.svg │ │ ├── instagram.svg │ │ ├── linkedin.svg │ │ ├── paypal.svg │ │ ├── slack-logo.svg │ │ ├── viber.svg │ │ ├── wechat.svg │ │ └── whatsapp.svg │ ├── screenshots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── dashboard.png │ │ └── sysadmin-features.png │ └── tecnologies │ │ ├── filament.svg │ │ ├── inertia.svg │ │ ├── laravel.svg │ │ ├── livewire.svg │ │ ├── stripe.svg │ │ └── vuejs.svg ├── img │ ├── avatars │ │ ├── avatar-1.svg │ │ ├── avatar-10.svg │ │ ├── avatar-11.svg │ │ ├── avatar-12.svg │ │ ├── avatar-13.svg │ │ ├── avatar-14.svg │ │ ├── avatar-15.svg │ │ ├── avatar-16.svg │ │ ├── avatar-17.svg │ │ ├── avatar-18.svg │ │ ├── avatar-19.svg │ │ ├── avatar-2.svg │ │ ├── avatar-20.svg │ │ ├── avatar-21.svg │ │ ├── avatar-22.svg │ │ ├── avatar-23.svg │ │ ├── avatar-24.svg │ │ ├── avatar-25.svg │ │ ├── avatar-26.svg │ │ ├── avatar-27.svg │ │ ├── avatar-28.svg │ │ ├── avatar-29.svg │ │ ├── avatar-3.svg │ │ ├── avatar-30.svg │ │ ├── avatar-4.svg │ │ ├── avatar-5.svg │ │ ├── avatar-6.svg │ │ ├── avatar-7.svg │ │ ├── avatar-8.svg │ │ └── avatar-9.svg │ ├── logo.png │ ├── logo.svg │ ├── networks.jpg │ ├── og.png │ └── social-media.png ├── index.php ├── js │ └── .gitkeep ├── mix-manifest.json ├── robots.txt └── web.config ├── resources ├── css │ ├── app.css │ └── filament │ │ ├── admin │ │ └── theme.css │ │ └── sysadmin │ │ └── theme.css ├── js │ └── app.js ├── markdown │ ├── policy.md │ └── terms.md └── views │ ├── components │ └── .gitkeep │ ├── layouts │ ├── .gitkeep │ └── app.blade.php │ └── livewire │ └── .gitkeep ├── routes ├── api.php ├── channels.php ├── console.php ├── tenant.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── Pest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/README.md -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/AddCompanyEmployee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/AddCompanyEmployee.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/CreateCompany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/CreateCompany.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/CreateConnectedAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/CreateConnectedAccount.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/CreateNewUser.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/CreateUserFromProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/CreateUserFromProvider.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/DeleteCompany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/DeleteCompany.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/DeleteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/DeleteUser.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/HandleInvalidState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/HandleInvalidState.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/InviteCompanyEmployee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/InviteCompanyEmployee.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/RemoveCompanyEmployee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/RemoveCompanyEmployee.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/ResolveSocialiteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/ResolveSocialiteUser.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/SetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/SetUserPassword.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/UpdateCompanyName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/UpdateCompanyName.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/UpdateConnectedAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/UpdateConnectedAccount.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/UpdateUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/UpdateUserPassword.php -------------------------------------------------------------------------------- /app/Actions/FilamentCompanies/UpdateUserProfileInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Actions/FilamentCompanies/UpdateUserProfileInformation.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Models/Company.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Models/Company.php -------------------------------------------------------------------------------- /app/Models/CompanyInvitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Models/CompanyInvitation.php -------------------------------------------------------------------------------- /app/Models/ConnectedAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Models/ConnectedAccount.php -------------------------------------------------------------------------------- /app/Models/Employeeship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Models/Employeeship.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Policies/ActivityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Policies/ActivityPolicy.php -------------------------------------------------------------------------------- /app/Policies/CompanyPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Policies/CompanyPolicy.php -------------------------------------------------------------------------------- /app/Policies/ConnectedAccountPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Policies/ConnectedAccountPolicy.php -------------------------------------------------------------------------------- /app/Policies/ExceptionPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Policies/ExceptionPolicy.php -------------------------------------------------------------------------------- /app/Policies/IpPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Policies/IpPolicy.php -------------------------------------------------------------------------------- /app/Policies/QueueMonitorPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Policies/QueueMonitorPolicy.php -------------------------------------------------------------------------------- /app/Policies/RolePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Policies/RolePolicy.php -------------------------------------------------------------------------------- /app/Policies/SchedulePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Policies/SchedulePolicy.php -------------------------------------------------------------------------------- /app/Policies/ShortURLPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Policies/ShortURLPolicy.php -------------------------------------------------------------------------------- /app/Policies/UserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Policies/UserPolicy.php -------------------------------------------------------------------------------- /app/Policies/WebhookPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Policies/WebhookPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/SysadminPanelServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Providers/Filament/SysadminPanelServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/TenantPanelServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Providers/Filament/TenantPanelServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/TenancyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/app/Providers/TenancyServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/ban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/ban.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filament-clear-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/filament-clear-cache.php -------------------------------------------------------------------------------- /config/filament-cookie-consent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/filament-cookie-consent.php -------------------------------------------------------------------------------- /config/filament-database-schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/filament-database-schedule.php -------------------------------------------------------------------------------- /config/filament-exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/filament-exceptions.php -------------------------------------------------------------------------------- /config/filament-firewall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/filament-firewall.php -------------------------------------------------------------------------------- /config/filament-impersonate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/filament-impersonate.php -------------------------------------------------------------------------------- /config/filament-jobs-monitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/filament-jobs-monitor.php -------------------------------------------------------------------------------- /config/filament-saas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/filament-saas.php -------------------------------------------------------------------------------- /config/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/filament-shield.php -------------------------------------------------------------------------------- /config/filament-tinyeditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/filament-tinyeditor.php -------------------------------------------------------------------------------- /config/filament-webhook-server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/filament-webhook-server.php -------------------------------------------------------------------------------- /config/filament.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/filament.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/firewall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/firewall.php -------------------------------------------------------------------------------- /config/geoip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/geoip.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/livewire.php -------------------------------------------------------------------------------- /config/log-viewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/log-viewer.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/maintenance-switch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/maintenance-switch.php -------------------------------------------------------------------------------- /config/media-library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/media-library.php -------------------------------------------------------------------------------- /config/models.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/models.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/seotools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/seotools.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/session.php -------------------------------------------------------------------------------- /config/tenancy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/tenancy.php -------------------------------------------------------------------------------- /config/themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/themes.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/CompanyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/factories/CompanyFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/0001_01_01_000001_create_cache_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_07_15_000000_create_firewall_ips_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2019_07_15_000000_create_firewall_ips_table.php -------------------------------------------------------------------------------- /database/migrations/2019_07_15_000000_create_firewall_logs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2019_07_15_000000_create_firewall_logs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_15_000010_create_tenants_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2019_09_15_000010_create_tenants_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_15_000020_create_domains_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2019_09_15_000020_create_domains_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2021_12_31_052353_create_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2021_12_31_052353_create_settings_table.php -------------------------------------------------------------------------------- /database/migrations/2022_03_05_031633_create_tag_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2022_03_05_031633_create_tag_tables.php -------------------------------------------------------------------------------- /database/migrations/2023_02_26_172600_create_schedule_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_02_26_172600_create_schedule_table.php -------------------------------------------------------------------------------- /database/migrations/2023_02_26_175242_create_schedule_histories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_02_26_175242_create_schedule_histories_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_06_234044_add_two_factor_columns_to_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_05_06_234044_add_two_factor_columns_to_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_07_063935_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_05_07_063935_create_notifications_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_07_064131_create_stats_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_05_07_064131_create_stats_tables.php -------------------------------------------------------------------------------- /database/migrations/2023_06_08_043708_add_settings_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_06_08_043708_add_settings_user.php -------------------------------------------------------------------------------- /database/migrations/2023_06_08_193530_update_firewall_ips_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_06_08_193530_update_firewall_ips_table.php -------------------------------------------------------------------------------- /database/migrations/2023_06_08_220952_create_permission_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_06_08_220952_create_permission_tables.php -------------------------------------------------------------------------------- /database/migrations/2023_06_09_011357_add_deleted_at_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_06_09_011357_add_deleted_at_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2023_06_09_035017_create_filament-webhook_server_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_06_09_035017_create_filament-webhook_server_table.php -------------------------------------------------------------------------------- /database/migrations/2023_06_09_035018_2023_01_19_144816_create_filament_webhook_server_histories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_06_09_035018_2023_01_19_144816_create_filament_webhook_server_histories_table.php -------------------------------------------------------------------------------- /database/migrations/2023_06_09_041831_create_filament-jobs-monitor_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_06_09_041831_create_filament-jobs-monitor_table.php -------------------------------------------------------------------------------- /database/migrations/2023_06_10_050523_create_bans_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_06_10_050523_create_bans_table.php -------------------------------------------------------------------------------- /database/migrations/2023_06_10_050524_add_banned_at_column_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_06_10_050524_add_banned_at_column_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2023_06_11_045946_create_activity_log_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_06_11_045946_create_activity_log_table.php -------------------------------------------------------------------------------- /database/migrations/2023_06_11_045947_add_event_column_to_activity_log_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_06_11_045947_add_event_column_to_activity_log_table.php -------------------------------------------------------------------------------- /database/migrations/2023_06_11_045948_add_batch_uuid_column_to_activity_log_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_06_11_045948_add_batch_uuid_column_to_activity_log_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_24_173451_add_avatar_url_column_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_09_24_173451_add_avatar_url_column_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_24_173625_create_breezy_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_09_24_173625_create_breezy_tables.php -------------------------------------------------------------------------------- /database/migrations/2023_10_11_042116_add_themes_settings_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_10_11_042116_add_themes_settings_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2023_10_22_045259_add_phone_column_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_10_22_045259_add_phone_column_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2023_10_22_160311_add_username_column_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_10_22_160311_add_username_column_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2023_12_20_173900_change_status_type_in_schedule_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2023_12_20_173900_change_status_type_in_schedule_table.php -------------------------------------------------------------------------------- /database/migrations/2024_02_22_175500_add_schedule_history_settings_to_schedules_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2024_02_22_175500_add_schedule_history_settings_to_schedules_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_14_175713_create_media_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2024_09_14_175713_create_media_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_21_203047_create_advanced_fields_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2024_09_21_203047_create_advanced_fields_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_06_133024_create_companies_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2024_10_06_133024_create_companies_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_06_133025_create_company_user_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2024_10_06_133025_create_company_user_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_06_140359_create_filament_exceptions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2024_10_06_140359_create_filament_exceptions_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_06_203306_create_company_invitations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2024_10_06_203306_create_company_invitations_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_06_203311_create_connected_accounts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2024_10_06_203311_create_connected_accounts_table.php -------------------------------------------------------------------------------- /database/migrations/2025_01_24_015035_create_banner_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/migrations/2025_01_24_015035_create_banner_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/settings/2023_05_07_081639_create_app_features.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/settings/2023_05_07_081639_create_app_features.php -------------------------------------------------------------------------------- /database/settings/2023_05_07_081639_create_app_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/settings/2023_05_07_081639_create_app_settings.php -------------------------------------------------------------------------------- /database/settings/2023_06_12_165809_create_sitemap_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/settings/2023_06_12_165809_create_sitemap_settings.php -------------------------------------------------------------------------------- /database/settings/2023_06_12_165809_create_terms_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/settings/2023_06_12_165809_create_terms_settings.php -------------------------------------------------------------------------------- /database/settings/2023_06_12_165809_createre_c_a_p_t_c_h_a_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/settings/2023_06_12_165809_createre_c_a_p_t_c_h_a_settings.php -------------------------------------------------------------------------------- /database/settings/2023_06_18_084228_create_whatsapp_chat_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/database/settings/2023_06_18_084228_create_whatsapp_chat_settings.php -------------------------------------------------------------------------------- /devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/devcontainer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /lang/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/lang/pt_BR.json -------------------------------------------------------------------------------- /lang/pt_BR/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/lang/pt_BR/auth.php -------------------------------------------------------------------------------- /lang/pt_BR/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/lang/pt_BR/pagination.php -------------------------------------------------------------------------------- /lang/pt_BR/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/lang/pt_BR/passwords.php -------------------------------------------------------------------------------- /lang/pt_BR/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2insights/filament-saas-template/HEAD/lang/pt_BR/validation.php -------------------------------------------------------------------------------- /lang/vendor/banner/pt_BR/banner.php: -------------------------------------------------------------------------------- 1 |