├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app ├── Console │ ├── Commands │ │ └── Superduper │ │ │ ├── LangTranslateCommand.php │ │ │ ├── PermissionsCommand.php │ │ │ └── SetupCommand.php │ └── Kernel.php ├── Enums │ └── Blog │ │ └── PostStatus.php ├── Events │ └── ContactUsCreated.php ├── Exceptions │ └── Handler.php ├── Filament │ ├── Clusters │ │ ├── SitesPages.php │ │ ├── SitesPages │ │ │ ├── AboutPage.php │ │ │ ├── ComingSoonPage.php │ │ │ ├── HomePage.php │ │ │ └── PartnersPage.php │ │ └── SitesSettings.php │ ├── Pages │ │ ├── Actions │ │ │ └── ImpersonatePageAction.php │ │ ├── Auth │ │ │ ├── EmailVerification.php │ │ │ ├── Login.php │ │ │ └── RequestPasswordReset.php │ │ ├── Docs │ │ │ └── Documentation.php │ │ └── Setting │ │ │ ├── ManageGeneral.php │ │ │ ├── ManageMail.php │ │ │ ├── ManageSite.php │ │ │ ├── ManageSiteScript.php │ │ │ ├── ManageSiteSeo.php │ │ │ └── ManageSiteSocial.php │ ├── Resources │ │ ├── Banner │ │ │ ├── CategoryResource.php │ │ │ ├── CategoryResource │ │ │ │ ├── Pages │ │ │ │ │ ├── CreateCategory.php │ │ │ │ │ ├── EditCategory.php │ │ │ │ │ ├── ListCategories.php │ │ │ │ │ └── ViewCategory.php │ │ │ │ └── RelationManagers │ │ │ │ │ └── BannersRelationManager.php │ │ │ ├── ContentResource.php │ │ │ └── ContentResource │ │ │ │ ├── Pages │ │ │ │ ├── CreateContent.php │ │ │ │ ├── EditContent.php │ │ │ │ ├── ListContents.php │ │ │ │ └── ViewContent.php │ │ │ │ └── Widgets │ │ │ │ ├── BannerPerformanceChart.php │ │ │ │ ├── BannerStatsOverview.php │ │ │ │ ├── TopPerformingBanners.php │ │ │ │ └── UpcomingBanners.php │ │ ├── Blog │ │ │ ├── CategoryResource.php │ │ │ ├── CategoryResource │ │ │ │ ├── Pages │ │ │ │ │ ├── CreateCategory.php │ │ │ │ │ ├── EditCategory.php │ │ │ │ │ ├── ListCategories.php │ │ │ │ │ └── ViewCategory.php │ │ │ │ └── Widgets │ │ │ │ │ └── CategoryDistributionWidget.php │ │ │ ├── PostResource.php │ │ │ └── PostResource │ │ │ │ ├── Pages │ │ │ │ ├── CreatePost.php │ │ │ │ ├── EditPost.php │ │ │ │ ├── ListPosts.php │ │ │ │ └── ViewPost.php │ │ │ │ └── Widgets │ │ │ │ ├── BlogPostStatsWidget.php │ │ │ │ ├── ContentOverviewWidget.php │ │ │ │ └── PopularPostsWidget.php │ │ ├── ContactUsResource.php │ │ ├── ContactUsResource │ │ │ ├── Actions │ │ │ │ └── ReplyAction.php │ │ │ ├── Pages │ │ │ │ └── ListContactUs.php │ │ │ └── Widgets │ │ │ │ └── ContactUsStatsWidget.php │ │ ├── MenuResource.php │ │ ├── MenuResource │ │ │ └── Pages │ │ │ │ ├── CreateMenu.php │ │ │ │ ├── EditMenu.php │ │ │ │ └── ListMenus.php │ │ ├── Shield │ │ │ ├── RoleResource.php │ │ │ └── RoleResource │ │ │ │ └── Pages │ │ │ │ ├── CreateRole.php │ │ │ │ ├── EditRole.php │ │ │ │ ├── ListRoles.php │ │ │ │ └── ViewRole.php │ │ ├── UserResource.php │ │ └── UserResource │ │ │ └── Pages │ │ │ ├── CreateUser.php │ │ │ ├── EditUser.php │ │ │ └── ListUsers.php │ ├── Tables │ │ └── Actions │ │ │ └── ImpersonateTableAction.php │ └── Widgets │ │ └── ApplicationInfo.php ├── Http │ ├── Controllers │ │ ├── ContactController.php │ │ ├── Controller.php │ │ └── SitemapController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── FilamentRobotsMiddleware.php │ │ ├── OptimizePerformance.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── SecurityHeaders.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ └── ContactUsRequest.php ├── Listeners │ ├── Impersonate │ │ └── ImpersonateClearAuthHashes.php │ ├── SendNewContactNotification.php │ └── UserStamp │ │ ├── Creating.php │ │ ├── Deleting.php │ │ ├── Restoring.php │ │ └── Updating.php ├── Livewire │ ├── MyProfileExtended.php │ └── SuperDuper │ │ ├── BlogDetails.php │ │ ├── BlogList.php │ │ ├── BlogSectionSlider.php │ │ └── Pages │ │ └── ContactUs.php ├── Mail │ ├── ContactReply.php │ ├── NewContactUsNotificationMail.php │ └── TestMail.php ├── Models │ ├── Banner │ │ ├── Category.php │ │ └── Content.php │ ├── Blog │ │ ├── Category.php │ │ └── Post.php │ ├── ContactUs.php │ └── User.php ├── Observers │ └── PostObserver.php ├── Policies │ ├── ActivityPolicy.php │ ├── Banner │ │ ├── CategoryPolicy.php │ │ └── ContentPolicy.php │ ├── Blog │ │ ├── CategoryPolicy.php │ │ └── PostPolicy.php │ ├── ContactUsPolicy.php │ ├── ExceptionPolicy.php │ ├── FolderPolicy.php │ ├── MediaPolicy.php │ ├── MenuPolicy.php │ ├── RolePolicy.php │ └── UserPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── Filament │ │ └── AdminPanelProvider.php │ ├── RouteServiceProvider.php │ ├── SettingsServiceProvider.php │ └── UserStampServiceProvider.php ├── Scopes │ └── UserStampScope.php ├── Services │ ├── FileService.php │ └── SecurityLogger.php ├── Settings │ ├── GeneralSettings.php │ ├── MailSettings.php │ ├── SiteScriptSettings.php │ ├── SiteSeoSettings.php │ ├── SiteSettings.php │ └── SiteSocialSettings.php ├── Support │ └── UserStamp.php └── Traits │ └── HasUserStamp.php ├── artisan ├── bin └── setup.php ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── activitylog.php ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filament-docs.php ├── filament-exceptions.php ├── filament-logger.php ├── filament-media-manager.php ├── filament-menu-builder.php ├── filament-shield.php ├── filament.php ├── filesystems.php ├── hashing.php ├── laravel-impersonate.php ├── log-viewer.php ├── logging.php ├── mail.php ├── permission.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── settings.php ├── superduper.php ├── userstamp.php └── view.php ├── database ├── .gitignore ├── factories │ ├── HtmlProvider.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2022_12_14_083707_create_settings_table.php │ ├── 2024_02_18_011728_create_notifications_table.php │ ├── 2024_02_20_075704_create_media_table.php │ ├── 2024_02_24_050429_create_filament_exceptions_table.php │ ├── 2024_02_25_174837_create_tag_tables.php │ ├── 2024_05_23_064454_create_permission_tables.php │ ├── 2024_09_15_032446_create_menus_table.php │ ├── 2024_09_16_000000_fix_menu_items_parent_id_foreign_key.php │ ├── 2024_10_03_171807_create_folders_table.php │ ├── 2024_10_03_171808_create_media_has_models_table.php │ ├── 2024_10_03_171809_create_folder_has_models_table.php │ ├── 2024_10_03_171810_update_folders_table.php │ ├── 2025_03_16_035500_create_contact_us_table.php │ ├── 2025_05_01_235741_create_banner_categories.php │ ├── 2025_05_01_235801_create_banner_contents.php │ ├── 2025_05_02_125538_create_blog_categories.php │ ├── 2025_05_02_125554_create_blog_posts.php │ ├── 2025_10_10_011615_create_activity_log_table.php │ ├── 2025_10_10_011616_add_event_column_to_activity_log_table.php │ └── 2025_10_10_011617_add_batch_uuid_column_to_activity_log_table.php ├── seeders │ ├── BannersSeeder.php │ ├── BlogsSeeder.php │ ├── ContactUsSeeder.php │ ├── DatabaseSeeder.php │ ├── MenuSeeder.php │ ├── PermissionsSeeder.php │ ├── RoleSeeder.php │ └── UsersSeeder.php └── settings │ ├── 2024_02_20_131300_create_general_settings.php │ ├── 2024_02_21_153246_create_mail_settings.php │ ├── 2025_03_16_032002_create_sites.php │ ├── 2025_03_16_032148_create_sites_seo.php │ ├── 2025_03_16_033643_create_sites_script.php │ └── 2025_03_16_034148_create_sites_social.php ├── lang ├── ar │ ├── contact.php │ ├── menu.php │ ├── page.php │ ├── resource.php │ └── vendor.php ├── en │ ├── contact.php │ ├── menu.php │ ├── page.php │ ├── resource.php │ └── vendor.php ├── es │ ├── contact.php │ ├── menu.php │ ├── page.php │ ├── resource.php │ └── vendor.php ├── fr │ ├── contact.php │ ├── menu.php │ ├── page.php │ ├── resource.php │ └── vendor.php ├── pt-BR │ ├── contact.php │ ├── menu.php │ ├── page.php │ ├── resource.php │ └── vendor.php ├── pt-PT │ ├── contact.php │ ├── menu.php │ ├── page.php │ ├── resource.php │ └── vendor.php ├── vendor │ ├── filament-exceptions │ │ └── en │ │ │ └── filament-exceptions.php │ ├── filament-logger │ │ ├── ar │ │ │ └── filament-logger.php │ │ ├── de │ │ │ └── filament-logger.php │ │ ├── en │ │ │ └── filament-logger.php │ │ ├── es │ │ │ └── filament-logger.php │ │ ├── fa │ │ │ └── filament-logger.php │ │ ├── fr │ │ │ └── filament-logger.php │ │ ├── id │ │ │ └── filament-logger.php │ │ ├── it │ │ │ └── filament-logger.php │ │ ├── ka │ │ │ └── filament-logger.php │ │ ├── pt_BR │ │ │ └── filament-logger.php │ │ ├── ru │ │ │ └── filament-logger.php │ │ ├── tr │ │ │ └── filament-logger.php │ │ ├── uk │ │ │ └── filament-logger.php │ │ └── vi │ │ │ └── filament-logger.php │ ├── filament-panels │ │ ├── ar │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── az │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── bn │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ └── login.php │ │ │ │ └── dashboard.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── bs │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ └── login.php │ │ │ │ └── dashboard.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── ca │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── ckb │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── cs │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── da │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── de │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── el │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ └── login.php │ │ │ │ └── dashboard.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── en │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── es │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── fa │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── fi │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── fr │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── he │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── hi │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ └── login.php │ │ │ │ └── dashboard.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── hr │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── hu │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── hy │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ └── login.php │ │ │ │ └── dashboard.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── id │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── it │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── ja │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── km │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── ko │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── ku │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── lt │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── lv │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── ms │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── my │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ └── login.php │ │ │ │ └── dashboard.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── nl │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── no │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── np │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── pl │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── pt_BR │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── pt_PT │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── ro │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── ru │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── sk │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── sq │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── sv │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── sw │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ └── login.php │ │ │ │ └── dashboard.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── tr │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── uk │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── uz │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── vi │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ ├── zh_CN │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ │ ├── auth │ │ │ │ │ ├── edit-profile.php │ │ │ │ │ ├── email-verification │ │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ │ ├── login.php │ │ │ │ │ ├── password-reset │ │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ │ └── reset-password.php │ │ │ │ │ └── register.php │ │ │ │ ├── dashboard.php │ │ │ │ └── tenancy │ │ │ │ │ └── edit-tenant-profile.php │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ └── zh_TW │ │ │ ├── global-search.php │ │ │ ├── layout.php │ │ │ ├── pages │ │ │ ├── auth │ │ │ │ └── login.php │ │ │ └── dashboard.php │ │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ ├── filament-shield │ │ ├── ar │ │ │ └── filament-shield.php │ │ ├── cs │ │ │ └── filament-shield.php │ │ ├── de │ │ │ └── filament-shield.php │ │ ├── en │ │ │ └── filament-shield.php │ │ ├── es │ │ │ └── filament-shield.php │ │ ├── fa │ │ │ └── filament-shield.php │ │ ├── filament-shield_pt_PT.php │ │ ├── fr │ │ │ └── filament-shield.php │ │ ├── hu │ │ │ └── filament-shield.php │ │ ├── hy │ │ │ └── filament-shield.php │ │ ├── id │ │ │ └── filament-shield.php │ │ ├── it │ │ │ └── filament-shield.php │ │ ├── ja │ │ │ └── filament-shield.php │ │ ├── km │ │ │ └── filament-shield.php │ │ ├── ko │ │ │ └── filament-shield.php │ │ ├── lv │ │ │ └── filament-shield.php │ │ ├── nl │ │ │ └── filament-shield.php │ │ ├── pl │ │ │ └── filament_shield.php │ │ ├── pt_BR │ │ │ └── filament-shield.php │ │ ├── pt_PT │ │ │ └── filament-shield.php │ │ ├── ro │ │ │ └── filament-shield.php │ │ ├── ru │ │ │ └── filament-shield.php │ │ ├── tr │ │ │ └── filament-shield.php │ │ ├── uk │ │ │ └── filament-shield.php │ │ ├── vi │ │ │ └── filament-shield.php │ │ ├── zh_CN │ │ │ └── filament-shield.php │ │ └── zh_TW │ │ │ └── filament-shield.php │ └── filament │ │ ├── ar │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── az │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── bn │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── bs │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── ca │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── ckb │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── cs │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── cy │ │ └── components │ │ │ ├── copyable.php │ │ │ └── pagination.php │ │ ├── da │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── de │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── en │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── es │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── eu │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── fa │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── fi │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── fr │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── he │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── hi │ │ └── components │ │ │ └── pagination.php │ │ ├── hr │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── hu │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── hy │ │ └── components │ │ │ ├── button.php │ │ │ └── pagination.php │ │ ├── id │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── it │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── ja │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── ka │ │ └── components │ │ │ └── pagination.php │ │ ├── km │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── ko │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── ku │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── lt │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── lv │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── mn │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── ms │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── nl │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── no │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── np │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── pl │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── pt_BR │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── pt_PT │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── ro │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── ru │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── sk │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── sq │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── sv │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── sw │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── tr │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── uk │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── uz │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── vi │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ ├── zh_CN │ │ └── components │ │ │ ├── button.php │ │ │ ├── copyable.php │ │ │ ├── modal.php │ │ │ └── pagination.php │ │ └── zh_TW │ │ └── components │ │ ├── button.php │ │ └── pagination.php ├── zh-CN │ ├── menu.php │ ├── page.php │ ├── resource.php │ └── vendor.php └── zh-TW │ ├── menu.php │ ├── page.php │ ├── resource.php │ └── vendor.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── css │ ├── bezhansalleh │ │ └── filament-exceptions │ │ │ └── filament-exceptions.css │ ├── datlechin │ │ └── filament-menu-builder │ │ │ └── filament-menu-builder-styles.css │ ├── eightynine │ │ └── filament-docs │ │ │ └── filament-docs-styles.css │ ├── filament │ │ ├── filament │ │ │ └── app.css │ │ ├── forms │ │ │ └── forms.css │ │ └── support │ │ │ └── support.css │ └── riodwanto │ │ └── filament-ace-editor │ │ └── filament-ace-editor.css ├── favicon.ico ├── images │ ├── logo-text.png │ ├── logo.ico │ └── logo.png ├── index.php ├── js │ ├── bezhansalleh │ │ └── filament-exceptions │ │ │ └── filament-exceptions.js │ ├── datlechin │ │ └── filament-menu-builder │ │ │ └── components │ │ │ └── filament-menu-builder.js │ ├── eightynine │ │ └── filament-docs │ │ │ └── filament-docs-scripts.js │ ├── filament │ │ ├── filament │ │ │ ├── app.js │ │ │ └── echo.js │ │ ├── forms │ │ │ └── components │ │ │ │ ├── color-picker.js │ │ │ │ ├── date-time-picker.js │ │ │ │ ├── file-upload.js │ │ │ │ ├── key-value.js │ │ │ │ ├── markdown-editor.js │ │ │ │ ├── rich-editor.js │ │ │ │ ├── select.js │ │ │ │ ├── tags-input.js │ │ │ │ └── textarea.js │ │ ├── notifications │ │ │ └── notifications.js │ │ ├── support │ │ │ ├── async-alpine.js │ │ │ └── support.js │ │ ├── tables │ │ │ └── components │ │ │ │ └── table.js │ │ └── widgets │ │ │ └── components │ │ │ ├── chart.js │ │ │ └── stats-overview │ │ │ └── stat │ │ │ └── chart.js │ ├── joseespinal │ │ └── filament-record-navigation │ │ │ └── filament-record-navigation.js │ └── riodwanto │ │ └── filament-ace-editor │ │ └── components │ │ └── filament-ace-editor.js ├── robots.txt ├── superduper │ ├── css │ │ ├── style.min.css │ │ └── vendors │ │ │ ├── jos.css │ │ │ └── swiper-bundle.min.css │ ├── fonts │ │ ├── iconfonts │ │ │ └── font-awesome │ │ │ │ ├── KFOmCnqEu92Fr1Mu4mxK.woff2 │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-duotone-900.ttf │ │ │ │ ├── fa-duotone-900.woff2 │ │ │ │ ├── fa-light-300.ttf │ │ │ │ ├── fa-light-300.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-sharp-light-300.ttf │ │ │ │ ├── fa-sharp-light-300.woff2 │ │ │ │ ├── fa-sharp-regular-400.ttf │ │ │ │ ├── fa-sharp-regular-400.woff2 │ │ │ │ ├── fa-sharp-solid-900.ttf │ │ │ │ ├── fa-sharp-solid-900.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-thin-100.ttf │ │ │ │ ├── fa-thin-100.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ ├── fa-v4compatibility.woff2 │ │ │ │ └── stylesheet.css │ │ └── webfonts │ │ │ └── public-sans │ │ │ ├── PublicSans-Black.woff │ │ │ ├── PublicSans-Black.woff2 │ │ │ ├── PublicSans-BlackItalic.woff │ │ │ ├── PublicSans-BlackItalic.woff2 │ │ │ ├── PublicSans-Bold.woff │ │ │ ├── PublicSans-Bold.woff2 │ │ │ ├── PublicSans-BoldItalic.woff │ │ │ ├── PublicSans-BoldItalic.woff2 │ │ │ ├── PublicSans-ExtraBold.woff │ │ │ ├── PublicSans-ExtraBold.woff2 │ │ │ ├── PublicSans-ExtraBoldItalic.woff │ │ │ ├── PublicSans-ExtraBoldItalic.woff2 │ │ │ ├── PublicSans-ExtraLight.woff │ │ │ ├── PublicSans-ExtraLight.woff2 │ │ │ ├── PublicSans-ExtraLightItalic.woff │ │ │ ├── PublicSans-ExtraLightItalic.woff2 │ │ │ ├── PublicSans-Italic.woff │ │ │ ├── PublicSans-Italic.woff2 │ │ │ ├── PublicSans-Light.woff │ │ │ ├── PublicSans-Light.woff2 │ │ │ ├── PublicSans-LightItalic.woff │ │ │ ├── PublicSans-LightItalic.woff2 │ │ │ ├── PublicSans-Medium.woff │ │ │ ├── PublicSans-Medium.woff2 │ │ │ ├── PublicSans-MediumItalic.woff │ │ │ ├── PublicSans-MediumItalic.woff2 │ │ │ ├── PublicSans-Regular.woff │ │ │ ├── PublicSans-Regular.woff2 │ │ │ ├── PublicSans-SemiBold.woff │ │ │ ├── PublicSans-SemiBold.woff2 │ │ │ ├── PublicSans-SemiBoldItalic.woff │ │ │ ├── PublicSans-SemiBoldItalic.woff2 │ │ │ ├── PublicSans-Thin.woff │ │ │ ├── PublicSans-Thin.woff2 │ │ │ ├── PublicSans-ThinItalic.woff │ │ │ ├── PublicSans-ThinItalic.woff2 │ │ │ └── stylesheet.css │ ├── img │ │ └── icons │ │ │ └── icon-black-chevron-right-solid.svg │ └── js │ │ ├── main.js │ │ └── vendors │ │ ├── fslightbox.js │ │ ├── jos.min.js │ │ ├── lenis.min.js │ │ └── swiper-bundle.min.js └── vendor │ └── log-viewer │ ├── app.css │ ├── app.js │ ├── app.js.LICENSE.txt │ ├── img │ ├── log-viewer-128.png │ ├── log-viewer-32.png │ └── log-viewer-64.png │ └── mix-manifest.json ├── resources ├── css │ ├── app.css │ └── filament │ │ └── admin │ │ ├── components │ │ ├── badge.css │ │ ├── button.css │ │ ├── dropdown.css │ │ ├── modal.css │ │ ├── section.css │ │ └── tab.css │ │ ├── form.css │ │ ├── notification.css │ │ ├── panel │ │ ├── layout.css │ │ ├── sidebar.css │ │ └── topbar.css │ │ ├── table.css │ │ ├── tailwind.config.js │ │ ├── theme.css │ │ └── widget.css ├── docs │ └── en │ │ ├── commands.md │ │ ├── configuration.md │ │ ├── development.md │ │ ├── features.md │ │ ├── getting-started.md │ │ ├── installation.md │ │ ├── performance.md │ │ └── user-guide.md ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── components │ ├── layouts │ │ └── app.blade.php │ ├── seo │ │ └── meta.blade.php │ └── superduper │ │ ├── components │ │ ├── banner.blade.php │ │ ├── breadcrumb.blade.php │ │ ├── cookie-consent.blade.php │ │ ├── getting-started.blade.php │ │ ├── hero.blade.php │ │ ├── packages-plugins.blade.php │ │ ├── partners-slider.blade.php │ │ └── value-proposition.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── main.blade.php │ │ └── pages │ │ ├── about.blade.php │ │ ├── coming-soon.blade.php │ │ └── home.blade.php │ ├── emails │ ├── contact │ │ ├── notification.blade.php │ │ └── reply.blade.php │ └── test.blade.php │ ├── filament │ ├── components │ │ ├── button-website.blade.php │ │ ├── email-template-preview.blade.php │ │ ├── impersonate-banner.blade.php │ │ ├── panel-footer.blade.php │ │ └── seo-guide-modal.blade.php │ ├── modals │ │ └── seo-preview.blade.php │ ├── pages │ │ ├── auth │ │ │ └── login.blade.php │ │ └── edit-page.blade.php │ └── widgets │ │ └── application-info.blade.php │ ├── livewire │ ├── my-profile-extended.blade.php │ └── superduper │ │ ├── blog-details.blade.php │ │ ├── blog-list.blade.php │ │ ├── blog-section-slider.blade.php │ │ └── pages │ │ └── contact-us.blade.php │ ├── vendor │ ├── filament-breezy │ │ ├── components │ │ │ ├── clipboard-link.blade.php │ │ │ └── grid-section.blade.php │ │ ├── filament │ │ │ └── pages │ │ │ │ ├── my-profile.blade.php │ │ │ │ └── two-factor.blade.php │ │ └── livewire │ │ │ ├── personal-info.blade.php │ │ │ ├── sanctum-tokens.blade.php │ │ │ ├── two-factor-authentication.blade.php │ │ │ └── update-password.blade.php │ └── filament-docs │ │ ├── docs-page.blade.php │ │ └── pdf-template.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ ├── .gitignore │ │ └── sites │ │ ├── logo.ico │ │ └── logo.png ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── ContactFormTest.php │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Commands/Superduper/PermissionsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Console/Commands/Superduper/PermissionsCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/Superduper/SetupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Console/Commands/Superduper/SetupCommand.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Enums/Blog/PostStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Enums/Blog/PostStatus.php -------------------------------------------------------------------------------- /app/Events/ContactUsCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Events/ContactUsCreated.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Filament/Clusters/SitesPages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Clusters/SitesPages.php -------------------------------------------------------------------------------- /app/Filament/Clusters/SitesPages/AboutPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Clusters/SitesPages/AboutPage.php -------------------------------------------------------------------------------- /app/Filament/Clusters/SitesPages/ComingSoonPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Clusters/SitesPages/ComingSoonPage.php -------------------------------------------------------------------------------- /app/Filament/Clusters/SitesPages/HomePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Clusters/SitesPages/HomePage.php -------------------------------------------------------------------------------- /app/Filament/Clusters/SitesPages/PartnersPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Clusters/SitesPages/PartnersPage.php -------------------------------------------------------------------------------- /app/Filament/Clusters/SitesSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Clusters/SitesSettings.php -------------------------------------------------------------------------------- /app/Filament/Pages/Actions/ImpersonatePageAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Pages/Actions/ImpersonatePageAction.php -------------------------------------------------------------------------------- /app/Filament/Pages/Auth/EmailVerification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Pages/Auth/EmailVerification.php -------------------------------------------------------------------------------- /app/Filament/Pages/Auth/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Pages/Auth/Login.php -------------------------------------------------------------------------------- /app/Filament/Pages/Auth/RequestPasswordReset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Pages/Auth/RequestPasswordReset.php -------------------------------------------------------------------------------- /app/Filament/Pages/Docs/Documentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Pages/Docs/Documentation.php -------------------------------------------------------------------------------- /app/Filament/Pages/Setting/ManageGeneral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Pages/Setting/ManageGeneral.php -------------------------------------------------------------------------------- /app/Filament/Pages/Setting/ManageMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Pages/Setting/ManageMail.php -------------------------------------------------------------------------------- /app/Filament/Pages/Setting/ManageSite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Pages/Setting/ManageSite.php -------------------------------------------------------------------------------- /app/Filament/Pages/Setting/ManageSiteScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Pages/Setting/ManageSiteScript.php -------------------------------------------------------------------------------- /app/Filament/Pages/Setting/ManageSiteSeo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Pages/Setting/ManageSiteSeo.php -------------------------------------------------------------------------------- /app/Filament/Pages/Setting/ManageSiteSocial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Pages/Setting/ManageSiteSocial.php -------------------------------------------------------------------------------- /app/Filament/Resources/Banner/CategoryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Resources/Banner/CategoryResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/Banner/ContentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Resources/Banner/ContentResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/Blog/CategoryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Resources/Blog/CategoryResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/Blog/PostResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Resources/Blog/PostResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/ContactUsResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Resources/ContactUsResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/MenuResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Resources/MenuResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/MenuResource/Pages/EditMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Resources/MenuResource/Pages/EditMenu.php -------------------------------------------------------------------------------- /app/Filament/Resources/MenuResource/Pages/ListMenus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Resources/MenuResource/Pages/ListMenus.php -------------------------------------------------------------------------------- /app/Filament/Resources/Shield/RoleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Resources/Shield/RoleResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Resources/UserResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/EditUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Resources/UserResource/Pages/EditUser.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/ListUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Resources/UserResource/Pages/ListUsers.php -------------------------------------------------------------------------------- /app/Filament/Tables/Actions/ImpersonateTableAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Tables/Actions/ImpersonateTableAction.php -------------------------------------------------------------------------------- /app/Filament/Widgets/ApplicationInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Filament/Widgets/ApplicationInfo.php -------------------------------------------------------------------------------- /app/Http/Controllers/ContactController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Controllers/ContactController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/SitemapController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Controllers/SitemapController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/FilamentRobotsMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Middleware/FilamentRobotsMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/OptimizePerformance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Middleware/OptimizePerformance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/SecurityHeaders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Middleware/SecurityHeaders.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/ContactUsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Http/Requests/ContactUsRequest.php -------------------------------------------------------------------------------- /app/Listeners/SendNewContactNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Listeners/SendNewContactNotification.php -------------------------------------------------------------------------------- /app/Listeners/UserStamp/Creating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Listeners/UserStamp/Creating.php -------------------------------------------------------------------------------- /app/Listeners/UserStamp/Deleting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Listeners/UserStamp/Deleting.php -------------------------------------------------------------------------------- /app/Listeners/UserStamp/Restoring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Listeners/UserStamp/Restoring.php -------------------------------------------------------------------------------- /app/Listeners/UserStamp/Updating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Listeners/UserStamp/Updating.php -------------------------------------------------------------------------------- /app/Livewire/MyProfileExtended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Livewire/MyProfileExtended.php -------------------------------------------------------------------------------- /app/Livewire/SuperDuper/BlogDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Livewire/SuperDuper/BlogDetails.php -------------------------------------------------------------------------------- /app/Livewire/SuperDuper/BlogList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Livewire/SuperDuper/BlogList.php -------------------------------------------------------------------------------- /app/Livewire/SuperDuper/BlogSectionSlider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Livewire/SuperDuper/BlogSectionSlider.php -------------------------------------------------------------------------------- /app/Livewire/SuperDuper/Pages/ContactUs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Livewire/SuperDuper/Pages/ContactUs.php -------------------------------------------------------------------------------- /app/Mail/ContactReply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Mail/ContactReply.php -------------------------------------------------------------------------------- /app/Mail/NewContactUsNotificationMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Mail/NewContactUsNotificationMail.php -------------------------------------------------------------------------------- /app/Mail/TestMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Mail/TestMail.php -------------------------------------------------------------------------------- /app/Models/Banner/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Models/Banner/Category.php -------------------------------------------------------------------------------- /app/Models/Banner/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Models/Banner/Content.php -------------------------------------------------------------------------------- /app/Models/Blog/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Models/Blog/Category.php -------------------------------------------------------------------------------- /app/Models/Blog/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Models/Blog/Post.php -------------------------------------------------------------------------------- /app/Models/ContactUs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Models/ContactUs.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Observers/PostObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Observers/PostObserver.php -------------------------------------------------------------------------------- /app/Policies/ActivityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Policies/ActivityPolicy.php -------------------------------------------------------------------------------- /app/Policies/Banner/CategoryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Policies/Banner/CategoryPolicy.php -------------------------------------------------------------------------------- /app/Policies/Banner/ContentPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Policies/Banner/ContentPolicy.php -------------------------------------------------------------------------------- /app/Policies/Blog/CategoryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Policies/Blog/CategoryPolicy.php -------------------------------------------------------------------------------- /app/Policies/Blog/PostPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Policies/Blog/PostPolicy.php -------------------------------------------------------------------------------- /app/Policies/ContactUsPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Policies/ContactUsPolicy.php -------------------------------------------------------------------------------- /app/Policies/ExceptionPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Policies/ExceptionPolicy.php -------------------------------------------------------------------------------- /app/Policies/FolderPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Policies/FolderPolicy.php -------------------------------------------------------------------------------- /app/Policies/MediaPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Policies/MediaPolicy.php -------------------------------------------------------------------------------- /app/Policies/MenuPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Policies/MenuPolicy.php -------------------------------------------------------------------------------- /app/Policies/RolePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Policies/RolePolicy.php -------------------------------------------------------------------------------- /app/Policies/UserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Policies/UserPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/AdminPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Providers/Filament/AdminPanelProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/SettingsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Providers/SettingsServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/UserStampServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Providers/UserStampServiceProvider.php -------------------------------------------------------------------------------- /app/Scopes/UserStampScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Scopes/UserStampScope.php -------------------------------------------------------------------------------- /app/Services/FileService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Services/FileService.php -------------------------------------------------------------------------------- /app/Services/SecurityLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Services/SecurityLogger.php -------------------------------------------------------------------------------- /app/Settings/GeneralSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Settings/GeneralSettings.php -------------------------------------------------------------------------------- /app/Settings/MailSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Settings/MailSettings.php -------------------------------------------------------------------------------- /app/Settings/SiteScriptSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Settings/SiteScriptSettings.php -------------------------------------------------------------------------------- /app/Settings/SiteSeoSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Settings/SiteSeoSettings.php -------------------------------------------------------------------------------- /app/Settings/SiteSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Settings/SiteSettings.php -------------------------------------------------------------------------------- /app/Settings/SiteSocialSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Settings/SiteSocialSettings.php -------------------------------------------------------------------------------- /app/Support/UserStamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Support/UserStamp.php -------------------------------------------------------------------------------- /app/Traits/HasUserStamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/app/Traits/HasUserStamp.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/artisan -------------------------------------------------------------------------------- /bin/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/bin/setup.php -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/composer.lock -------------------------------------------------------------------------------- /config/activitylog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/activitylog.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filament-docs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/filament-docs.php -------------------------------------------------------------------------------- /config/filament-exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/filament-exceptions.php -------------------------------------------------------------------------------- /config/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/filament-logger.php -------------------------------------------------------------------------------- /config/filament-media-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/filament-media-manager.php -------------------------------------------------------------------------------- /config/filament-menu-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/filament-menu-builder.php -------------------------------------------------------------------------------- /config/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/filament-shield.php -------------------------------------------------------------------------------- /config/filament.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/filament.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/laravel-impersonate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/laravel-impersonate.php -------------------------------------------------------------------------------- /config/log-viewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/log-viewer.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/session.php -------------------------------------------------------------------------------- /config/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/settings.php -------------------------------------------------------------------------------- /config/superduper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/superduper.php -------------------------------------------------------------------------------- /config/userstamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/userstamp.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/HtmlProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/database/factories/HtmlProvider.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeders/BannersSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/database/seeders/BannersSeeder.php -------------------------------------------------------------------------------- /database/seeders/BlogsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/database/seeders/BlogsSeeder.php -------------------------------------------------------------------------------- /database/seeders/ContactUsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/database/seeders/ContactUsSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/MenuSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/database/seeders/MenuSeeder.php -------------------------------------------------------------------------------- /database/seeders/PermissionsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/database/seeders/PermissionsSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/database/seeders/RoleSeeder.php -------------------------------------------------------------------------------- /database/seeders/UsersSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/database/seeders/UsersSeeder.php -------------------------------------------------------------------------------- /database/settings/2025_03_16_032002_create_sites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/database/settings/2025_03_16_032002_create_sites.php -------------------------------------------------------------------------------- /lang/ar/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/ar/contact.php -------------------------------------------------------------------------------- /lang/ar/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/ar/menu.php -------------------------------------------------------------------------------- /lang/ar/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/ar/page.php -------------------------------------------------------------------------------- /lang/ar/resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/ar/resource.php -------------------------------------------------------------------------------- /lang/ar/vendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/ar/vendor.php -------------------------------------------------------------------------------- /lang/en/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/en/contact.php -------------------------------------------------------------------------------- /lang/en/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/en/menu.php -------------------------------------------------------------------------------- /lang/en/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/en/page.php -------------------------------------------------------------------------------- /lang/en/resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/en/resource.php -------------------------------------------------------------------------------- /lang/en/vendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/en/vendor.php -------------------------------------------------------------------------------- /lang/es/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/es/contact.php -------------------------------------------------------------------------------- /lang/es/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/es/menu.php -------------------------------------------------------------------------------- /lang/es/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/es/page.php -------------------------------------------------------------------------------- /lang/es/resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/es/resource.php -------------------------------------------------------------------------------- /lang/es/vendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/es/vendor.php -------------------------------------------------------------------------------- /lang/fr/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/fr/contact.php -------------------------------------------------------------------------------- /lang/fr/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/fr/menu.php -------------------------------------------------------------------------------- /lang/fr/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/fr/page.php -------------------------------------------------------------------------------- /lang/fr/resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/fr/resource.php -------------------------------------------------------------------------------- /lang/fr/vendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/fr/vendor.php -------------------------------------------------------------------------------- /lang/pt-BR/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/pt-BR/contact.php -------------------------------------------------------------------------------- /lang/pt-BR/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/pt-BR/menu.php -------------------------------------------------------------------------------- /lang/pt-BR/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/pt-BR/page.php -------------------------------------------------------------------------------- /lang/pt-BR/resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/pt-BR/resource.php -------------------------------------------------------------------------------- /lang/pt-BR/vendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/pt-BR/vendor.php -------------------------------------------------------------------------------- /lang/pt-PT/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/pt-PT/contact.php -------------------------------------------------------------------------------- /lang/pt-PT/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/pt-PT/menu.php -------------------------------------------------------------------------------- /lang/pt-PT/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/pt-PT/page.php -------------------------------------------------------------------------------- /lang/pt-PT/resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/pt-PT/resource.php -------------------------------------------------------------------------------- /lang/pt-PT/vendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/pt-PT/vendor.php -------------------------------------------------------------------------------- /lang/vendor/filament-logger/ar/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-logger/ar/filament-logger.php -------------------------------------------------------------------------------- /lang/vendor/filament-logger/de/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-logger/de/filament-logger.php -------------------------------------------------------------------------------- /lang/vendor/filament-logger/en/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-logger/en/filament-logger.php -------------------------------------------------------------------------------- /lang/vendor/filament-logger/es/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-logger/es/filament-logger.php -------------------------------------------------------------------------------- /lang/vendor/filament-logger/fa/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-logger/fa/filament-logger.php -------------------------------------------------------------------------------- /lang/vendor/filament-logger/fr/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-logger/fr/filament-logger.php -------------------------------------------------------------------------------- /lang/vendor/filament-logger/id/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-logger/id/filament-logger.php -------------------------------------------------------------------------------- /lang/vendor/filament-logger/it/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-logger/it/filament-logger.php -------------------------------------------------------------------------------- /lang/vendor/filament-logger/ka/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-logger/ka/filament-logger.php -------------------------------------------------------------------------------- /lang/vendor/filament-logger/pt_BR/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-logger/pt_BR/filament-logger.php -------------------------------------------------------------------------------- /lang/vendor/filament-logger/ru/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-logger/ru/filament-logger.php -------------------------------------------------------------------------------- /lang/vendor/filament-logger/tr/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-logger/tr/filament-logger.php -------------------------------------------------------------------------------- /lang/vendor/filament-logger/uk/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-logger/uk/filament-logger.php -------------------------------------------------------------------------------- /lang/vendor/filament-logger/vi/filament-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-logger/vi/filament-logger.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ar/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ar/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ar/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ar/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ar/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ar/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ar/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ar/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ar/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'القائمة', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/az/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/az/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/az/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/az/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/az/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/az/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/az/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'İdarəetmə Paneli', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/az/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'List', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bn/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/bn/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bn/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/bn/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bn/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/bn/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bn/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ড্যাশবোর্ড', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bn/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'তালিকা', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bs/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/bs/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bs/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/bs/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bs/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/bs/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bs/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nadzorna ploča', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bs/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ca/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ca/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ca/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ca/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ca/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ca/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ca/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ca/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ca/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Llistat', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ckb/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ckb/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ckb/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ckb/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ckb/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ckb/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ckb/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'داشبۆرد', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ckb/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'تۆمارەکان', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/cs/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/cs/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/cs/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/cs/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/cs/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/cs/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/cs/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/cs/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/cs/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Přehled', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/da/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/da/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/da/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/da/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/da/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/da/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/da/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/da/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/da/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/de/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/de/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/de/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/de/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/de/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/de/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/de/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/de/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/de/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Übersicht', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/el/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/el/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/el/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/el/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/el/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/el/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/el/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Πίνακας ελέγχου', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/el/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Λίστα', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/en/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/en/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/en/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/en/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/en/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/en/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/en/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/en/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/en/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'List', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/es/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/es/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/es/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/es/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/es/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/es/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/es/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/es/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/es/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listado', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fa/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/fa/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fa/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/fa/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fa/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/fa/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fa/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'داشبورد', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fa/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'لیست', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fi/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/fi/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fi/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/fi/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fi/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/fi/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fi/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/fi/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fr/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/fr/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fr/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/fr/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fr/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/fr/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fr/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/fr/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fr/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/he/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/he/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/he/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/he/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/he/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/he/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/he/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'פאנל', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/he/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'רשימה', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hi/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/hi/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hi/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/hi/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hi/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/hi/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hi/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'डैशबोर्ड', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'सूची', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hr/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/hr/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hr/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/hr/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hr/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/hr/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hr/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nadzorna ploča', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hr/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hu/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/hu/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hu/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/hu/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hu/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/hu/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hu/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/hu/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hu/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hy/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/hy/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hy/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/hy/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hy/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/hy/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hy/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/hy/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hy/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Ցանկ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/id/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/id/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/id/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/id/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/id/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/id/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/id/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/id/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/id/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Daftar', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/it/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/it/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/it/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/it/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/it/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/it/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/it/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/it/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/it/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ja/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ja/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ja/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ja/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ja/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ja/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ja/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ja/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ja/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '一覧', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/km/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/km/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/km/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/km/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/km/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/km/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/km/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/km/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/km/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'បញ្ជី', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ko/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ko/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ko/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ko/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ko/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ko/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ko/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | '대시보드', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ko/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '목록', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ku/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ku/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ku/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ku/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ku/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ku/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ku/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'داشبۆرد', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ku/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'تۆمارەکان', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lt/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/lt/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lt/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/lt/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lt/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/lt/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lt/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Pagrindinis puslapis', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lt/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Sąrašas', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lv/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/lv/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lv/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/lv/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lv/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/lv/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lv/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Panelis', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lv/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Saraksts', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ms/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ms/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ms/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ms/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ms/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ms/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ms/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ms/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ms/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Senarai', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/my/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/my/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/my/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/my/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/my/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/my/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/my/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/my/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/my/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'စာရင်း', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/nl/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/nl/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/nl/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/nl/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/nl/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/nl/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/nl/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/nl/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/nl/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lijst', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/no/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/no/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/no/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/no/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/no/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/no/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/no/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashbord', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/no/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/np/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/np/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/np/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/np/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/np/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/np/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/np/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ड्यासबोर्ड', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/np/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'सूची', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pl/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/pl/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pl/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/pl/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pl/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/pl/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pl/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Panel', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pl/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_BR/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/pt_BR/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_BR/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/pt_BR/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_BR/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/pt_BR/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_BR/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listar', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_PT/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/pt_PT/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_PT/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/pt_PT/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_PT/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/pt_PT/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_PT/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listagem', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ro/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ro/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ro/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ro/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ro/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ro/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ro/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Panoul de control', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ro/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listare', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ru/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ru/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ru/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ru/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ru/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/ru/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ru/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Инфопанель', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ru/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Список', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sk/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/sk/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sk/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/sk/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sk/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/sk/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sk/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nástenka', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sk/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Prehľad', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sq/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/sq/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sq/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/sq/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sq/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/sq/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sq/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Faqja Kryesore', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sq/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listo', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sv/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/sv/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sv/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/sv/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sv/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/sv/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sv/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sv/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sw/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/sw/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sw/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/sw/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sw/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/sw/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sw/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashibodi', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sw/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listi', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/tr/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/tr/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/tr/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/tr/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/tr/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/tr/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/tr/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Genel Bakış', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/tr/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uk/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/uk/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uk/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/uk/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uk/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/uk/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uk/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Інфопанель', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uk/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Перегляд', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uz/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/uz/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uz/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/uz/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uz/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/uz/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uz/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/uz/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uz/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Ro\'yxat', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/vi/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/vi/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/vi/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/vi/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/vi/pages/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/vi/pages/auth/login.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/vi/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/vi/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/vi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Danh sách', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_CN/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/zh_CN/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_CN/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/zh_CN/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_CN/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | '仪表板', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_CN/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '列表', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_TW/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/zh_TW/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_TW/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-panels/zh_TW/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_TW/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | '主控台', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_TW/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '清單', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-shield/ar/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/ar/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/cs/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/cs/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/de/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/de/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/en/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/en/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/es/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/es/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/fa/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/fa/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/filament-shield_pt_PT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/filament-shield_pt_PT.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/fr/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/fr/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/hu/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/hu/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/hy/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/hy/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/id/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/id/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/it/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/it/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/ja/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/ja/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/km/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/km/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/ko/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/ko/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/lv/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/lv/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/nl/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/nl/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/pl/filament_shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/pl/filament_shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/pt_BR/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/pt_BR/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/pt_PT/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/pt_PT/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/ro/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/ro/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/ru/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/ru/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/tr/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/tr/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/uk/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/uk/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/vi/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/vi/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/zh_CN/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/zh_CN/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament-shield/zh_TW/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament-shield/zh_TW/filament-shield.php -------------------------------------------------------------------------------- /lang/vendor/filament/ar/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ar/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/ar/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ar/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/ar/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ar/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/ar/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ar/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/az/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/az/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/az/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/az/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/az/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/az/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/az/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/az/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/bn/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/bn/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/bn/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/bn/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/bn/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/bn/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/bn/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/bn/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/bs/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/bs/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/bs/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/bs/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/bs/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/bs/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/bs/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/bs/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/ca/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ca/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/ca/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ca/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/ca/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ca/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/ca/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ca/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/ckb/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ckb/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/ckb/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ckb/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/ckb/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ckb/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/ckb/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ckb/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/cs/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/cs/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/cs/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/cs/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/cs/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/cs/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/cs/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/cs/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/cy/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/cy/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/cy/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/cy/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/da/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/da/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/da/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/da/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/da/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/da/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/da/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/da/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/de/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/de/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/de/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/de/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/de/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/de/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/de/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/de/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/en/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/en/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/en/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/en/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/en/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/en/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/en/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/en/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/es/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/es/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/es/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/es/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/es/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/es/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/es/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/es/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/eu/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/eu/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/eu/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/eu/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/eu/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/eu/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/eu/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/eu/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/fa/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/fa/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/fa/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/fa/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/fa/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/fa/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/fa/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/fa/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/fi/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/fi/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/fi/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/fi/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/fi/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/fi/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/fi/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/fi/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/fr/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/fr/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/fr/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/fr/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/fr/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/fr/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/fr/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/fr/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/he/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/he/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/he/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/he/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/he/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/he/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/he/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/he/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/hi/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/hi/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/hr/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/hr/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/hr/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/hr/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/hr/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/hr/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/hr/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/hr/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/hu/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/hu/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/hu/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/hu/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/hu/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/hu/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/hu/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/hu/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/hy/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/hy/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/hy/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/hy/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/id/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/id/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/id/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/id/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/id/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/id/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/id/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/id/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/it/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/it/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/it/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/it/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/it/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/it/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/it/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/it/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/ja/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ja/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/ja/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ja/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/ja/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ja/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/ja/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ja/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/ka/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ka/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/km/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/km/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/km/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/km/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/km/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/km/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/km/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/km/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/ko/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ko/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/ko/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ko/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/ko/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ko/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/ko/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ko/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/ku/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ku/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/ku/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ku/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/ku/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ku/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/ku/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ku/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/lt/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/lt/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/lt/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/lt/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/lt/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/lt/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/lt/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/lt/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/lv/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/lv/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/lv/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/lv/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/lv/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/lv/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/lv/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/lv/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/mn/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/mn/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/mn/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/mn/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/mn/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/mn/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/mn/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/mn/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/ms/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ms/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/ms/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ms/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/ms/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ms/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/ms/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ms/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/nl/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/nl/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/nl/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/nl/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/nl/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/nl/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/nl/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/nl/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/no/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/no/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/no/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/no/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/no/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/no/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/no/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/no/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/np/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/np/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/np/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/np/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/np/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/np/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/np/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/np/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/pl/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/pl/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/pl/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/pl/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/pl/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/pl/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/pl/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/pl/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_BR/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/pt_BR/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_BR/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/pt_BR/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_BR/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/pt_BR/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_BR/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/pt_BR/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_PT/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/pt_PT/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_PT/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/pt_PT/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_PT/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/pt_PT/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_PT/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/pt_PT/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/ro/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ro/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/ro/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ro/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/ro/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ro/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/ro/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ro/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/ru/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ru/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/ru/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ru/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/ru/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ru/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/ru/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/ru/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/sk/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sk/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/sk/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sk/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/sk/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sk/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/sk/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sk/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/sq/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sq/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/sq/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sq/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/sq/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sq/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/sq/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sq/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/sv/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sv/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/sv/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sv/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/sv/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sv/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/sv/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sv/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/sw/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sw/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/sw/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sw/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/sw/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sw/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/sw/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/sw/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/tr/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/tr/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/tr/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/tr/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/tr/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/tr/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/tr/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/tr/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/uk/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/uk/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/uk/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/uk/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/uk/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/uk/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/uk/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/uk/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/uz/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/uz/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/uz/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/uz/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/uz/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/uz/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/uz/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/uz/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/vi/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/vi/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/vi/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/vi/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/vi/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/vi/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/vi/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/vi/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/zh_CN/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/zh_CN/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/zh_CN/components/copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/zh_CN/components/copyable.php -------------------------------------------------------------------------------- /lang/vendor/filament/zh_CN/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/zh_CN/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament/zh_CN/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/zh_CN/components/pagination.php -------------------------------------------------------------------------------- /lang/vendor/filament/zh_TW/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/zh_TW/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament/zh_TW/components/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/vendor/filament/zh_TW/components/pagination.php -------------------------------------------------------------------------------- /lang/zh-CN/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/zh-CN/menu.php -------------------------------------------------------------------------------- /lang/zh-CN/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/zh-CN/page.php -------------------------------------------------------------------------------- /lang/zh-CN/resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/zh-CN/resource.php -------------------------------------------------------------------------------- /lang/zh-CN/vendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/zh-CN/vendor.php -------------------------------------------------------------------------------- /lang/zh-TW/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/zh-TW/menu.php -------------------------------------------------------------------------------- /lang/zh-TW/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/zh-TW/page.php -------------------------------------------------------------------------------- /lang/zh-TW/resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/zh-TW/resource.php -------------------------------------------------------------------------------- /lang/zh-TW/vendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/lang/zh-TW/vendor.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/filament/filament/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/css/filament/filament/app.css -------------------------------------------------------------------------------- /public/css/filament/forms/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/css/filament/forms/forms.css -------------------------------------------------------------------------------- /public/css/filament/support/support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/css/filament/support/support.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/images/logo-text.png -------------------------------------------------------------------------------- /public/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/images/logo.ico -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/filament/filament/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/js/filament/filament/app.js -------------------------------------------------------------------------------- /public/js/filament/filament/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/js/filament/filament/echo.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/color-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/js/filament/forms/components/color-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/js/filament/forms/components/file-upload.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/key-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/js/filament/forms/components/key-value.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/rich-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/js/filament/forms/components/rich-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/js/filament/forms/components/select.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/tags-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/js/filament/forms/components/tags-input.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/js/filament/forms/components/textarea.js -------------------------------------------------------------------------------- /public/js/filament/notifications/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/js/filament/notifications/notifications.js -------------------------------------------------------------------------------- /public/js/filament/support/async-alpine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/js/filament/support/async-alpine.js -------------------------------------------------------------------------------- /public/js/filament/support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/js/filament/support/support.js -------------------------------------------------------------------------------- /public/js/filament/tables/components/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/js/filament/tables/components/table.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/js/filament/widgets/components/chart.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/superduper/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/superduper/css/style.min.css -------------------------------------------------------------------------------- /public/superduper/css/vendors/jos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/superduper/css/vendors/jos.css -------------------------------------------------------------------------------- /public/superduper/css/vendors/swiper-bundle.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/superduper/css/vendors/swiper-bundle.min.css -------------------------------------------------------------------------------- /public/superduper/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/superduper/js/main.js -------------------------------------------------------------------------------- /public/superduper/js/vendors/fslightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/superduper/js/vendors/fslightbox.js -------------------------------------------------------------------------------- /public/superduper/js/vendors/jos.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/superduper/js/vendors/jos.min.js -------------------------------------------------------------------------------- /public/superduper/js/vendors/lenis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/superduper/js/vendors/lenis.min.js -------------------------------------------------------------------------------- /public/superduper/js/vendors/swiper-bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/superduper/js/vendors/swiper-bundle.min.js -------------------------------------------------------------------------------- /public/vendor/log-viewer/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/vendor/log-viewer/app.css -------------------------------------------------------------------------------- /public/vendor/log-viewer/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/vendor/log-viewer/app.js -------------------------------------------------------------------------------- /public/vendor/log-viewer/app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/vendor/log-viewer/app.js.LICENSE.txt -------------------------------------------------------------------------------- /public/vendor/log-viewer/img/log-viewer-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/vendor/log-viewer/img/log-viewer-128.png -------------------------------------------------------------------------------- /public/vendor/log-viewer/img/log-viewer-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/vendor/log-viewer/img/log-viewer-32.png -------------------------------------------------------------------------------- /public/vendor/log-viewer/img/log-viewer-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/vendor/log-viewer/img/log-viewer-64.png -------------------------------------------------------------------------------- /public/vendor/log-viewer/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/public/vendor/log-viewer/mix-manifest.json -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/css/filament/admin/components/badge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/css/filament/admin/components/badge.css -------------------------------------------------------------------------------- /resources/css/filament/admin/components/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/css/filament/admin/components/button.css -------------------------------------------------------------------------------- /resources/css/filament/admin/components/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/css/filament/admin/components/dropdown.css -------------------------------------------------------------------------------- /resources/css/filament/admin/components/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/css/filament/admin/components/modal.css -------------------------------------------------------------------------------- /resources/css/filament/admin/components/section.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/css/filament/admin/components/section.css -------------------------------------------------------------------------------- /resources/css/filament/admin/components/tab.css: -------------------------------------------------------------------------------- 1 | /* Filament Tab Styling */ 2 | -------------------------------------------------------------------------------- /resources/css/filament/admin/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/css/filament/admin/form.css -------------------------------------------------------------------------------- /resources/css/filament/admin/notification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/css/filament/admin/notification.css -------------------------------------------------------------------------------- /resources/css/filament/admin/panel/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/css/filament/admin/panel/layout.css -------------------------------------------------------------------------------- /resources/css/filament/admin/panel/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/css/filament/admin/panel/sidebar.css -------------------------------------------------------------------------------- /resources/css/filament/admin/panel/topbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/css/filament/admin/panel/topbar.css -------------------------------------------------------------------------------- /resources/css/filament/admin/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/css/filament/admin/table.css -------------------------------------------------------------------------------- /resources/css/filament/admin/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/css/filament/admin/tailwind.config.js -------------------------------------------------------------------------------- /resources/css/filament/admin/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/css/filament/admin/theme.css -------------------------------------------------------------------------------- /resources/css/filament/admin/widget.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/docs/en/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/docs/en/commands.md -------------------------------------------------------------------------------- /resources/docs/en/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/docs/en/configuration.md -------------------------------------------------------------------------------- /resources/docs/en/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/docs/en/development.md -------------------------------------------------------------------------------- /resources/docs/en/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/docs/en/features.md -------------------------------------------------------------------------------- /resources/docs/en/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/docs/en/getting-started.md -------------------------------------------------------------------------------- /resources/docs/en/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/docs/en/installation.md -------------------------------------------------------------------------------- /resources/docs/en/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/docs/en/performance.md -------------------------------------------------------------------------------- /resources/docs/en/user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/docs/en/user-guide.md -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/components/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/views/components/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/components/seo/meta.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/views/components/seo/meta.blade.php -------------------------------------------------------------------------------- /resources/views/components/superduper/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/views/components/superduper/main.blade.php -------------------------------------------------------------------------------- /resources/views/emails/contact/notification.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/views/emails/contact/notification.blade.php -------------------------------------------------------------------------------- /resources/views/emails/contact/reply.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/views/emails/contact/reply.blade.php -------------------------------------------------------------------------------- /resources/views/emails/test.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/views/emails/test.blade.php -------------------------------------------------------------------------------- /resources/views/filament/modals/seo-preview.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/views/filament/modals/seo-preview.blade.php -------------------------------------------------------------------------------- /resources/views/filament/pages/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/views/filament/pages/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/filament/pages/edit-page.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/views/filament/pages/edit-page.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/sites/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/storage/app/public/sites/logo.ico -------------------------------------------------------------------------------- /storage/app/public/sites/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/storage/app/public/sites/logo.png -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/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 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ContactFormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/tests/Feature/ContactFormTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riodwanto/superduper-filament-starter-kit/HEAD/vite.config.js --------------------------------------------------------------------------------