├── .editorconfig ├── .env.example ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── app ├── Console │ └── Commands │ │ ├── FilamentViewsDemo.php │ │ └── ResetDemoApp.php ├── CuratedBySwis.php ├── DefaultPathGenerator.php ├── Filament │ ├── Clusters │ │ └── ComponentsDemo.php │ ├── DemoWidgets │ │ └── MiniChart.php │ ├── Guests │ │ ├── Pages │ │ │ ├── ActivityTimeline.php │ │ │ ├── BadgeableColumn.php │ │ │ ├── ColorPicker.php │ │ │ ├── Mason.php │ │ │ ├── Matinee.php │ │ │ ├── RadioDeck.php │ │ │ ├── Richie.php │ │ │ ├── SelectTree.php │ │ │ ├── Shout.php │ │ │ ├── Socialment.php │ │ │ └── TableRepeater.php │ │ └── Widgets │ │ │ └── Showcase.php │ ├── Pages │ │ ├── Accordion.php │ │ ├── Actions │ │ │ └── DemoHeaderAction.php │ │ ├── Athena.php │ │ ├── Auth │ │ │ └── Login.php │ │ ├── DashboardPage.php │ │ ├── Embed.php │ │ ├── InlineChart.php │ │ ├── ListGroup.php │ │ ├── Mark.php │ │ ├── Matrix.php │ │ ├── Popover.php │ │ ├── QrCode.php │ │ ├── Quantity.php │ │ ├── Statistics.php │ │ ├── Tiles.php │ │ ├── TorchFilament.php │ │ └── Widgets │ │ │ ├── GitDownChart.php │ │ │ └── GitStarsChart.php │ ├── Resources │ │ ├── CarResource.php │ │ ├── CarResource │ │ │ └── Pages │ │ │ │ ├── CreateCar.php │ │ │ │ ├── EditCar.php │ │ │ │ └── ListCars.php │ │ ├── UserResource.php │ │ └── UserResource │ │ │ └── Pages │ │ │ ├── CreateUser.php │ │ │ ├── EditUser.php │ │ │ ├── ListUsers.php │ │ │ └── ViewUser.php │ └── Widgets │ │ ├── BlackFriday.php │ │ ├── BookmarksWidget.php │ │ ├── DemoOverview.php │ │ ├── Feedback.php │ │ ├── LoveStats.php │ │ ├── PackagesOverview.php │ │ ├── PluginsShowcase.php │ │ └── SupportWidget.php ├── Forms │ └── Components │ │ └── Car.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── Controller.php │ │ └── ProfileController.php │ ├── Middleware │ │ ├── SetLang.php │ │ └── SetTheme.php │ └── Requests │ │ ├── Auth │ │ └── LoginRequest.php │ │ └── ProfileUpdateRequest.php ├── Livewire │ ├── LikePost.php │ └── UserCard.php ├── Mason │ ├── Batman.php │ ├── BrickCollection.php │ ├── Cards.php │ ├── Code.php │ ├── NewsletterSignup.php │ ├── Section.php │ └── SupportCenter.php ├── Models │ ├── Car.php │ ├── Compeny.php │ ├── Curator.php │ ├── Emoji.php │ ├── FilamentUser.php │ ├── Guests │ │ ├── SelectTreeBlog.php │ │ └── SelectTreeCategory.php │ ├── Mason.php │ ├── Media.php │ ├── Package.php │ ├── Post.php │ └── User.php ├── Policies │ └── FormPolicy.php ├── Providers │ ├── AppServiceProvider.php │ └── Filament │ │ ├── AdminPanelProvider.php │ │ ├── GuestsPanelProvider.php │ │ └── MyCustomVersionProvider.php ├── Tables │ └── Columns │ │ └── RightClick.php ├── View │ └── Components │ │ ├── AppLayout.php │ │ └── GuestLayout.php └── Zeus │ ├── CustomSchema │ ├── Field.php │ ├── Form.php │ └── Section.php │ ├── DataSources │ └── Car.php │ └── Fields │ └── Car.php ├── artisan ├── bootstrap ├── app.php └── providers.php ├── composer-local.json ├── composer-prod.json ├── composer.json ├── composer.lock ├── config ├── .gitkeep ├── app.php ├── blade-icons.php ├── comments.php ├── corcel.php ├── curator.php ├── database.php ├── debugbar.php ├── filament-export.php ├── filament-shield.php ├── filament-umami-widgets.php ├── filament.php ├── filesystems.php ├── github.php ├── icon-picker.php ├── laravelpackagist.php ├── livewire.php ├── logging.php ├── mail.php ├── media-library.php ├── querydetector.php ├── recently.php ├── sanctum.php ├── sentry.php ├── services.php ├── torchlight.php ├── zeus-athena.php ├── zeus-bolt.php ├── zeus-delia.php ├── zeus-sky.php ├── zeus-thunder.php └── zeus.php ├── database ├── .gitignore ├── factories │ ├── CarFactory.php │ ├── CategoryFactory.php │ ├── CollectionFactory.php │ ├── CompenyFactory.php │ ├── DepartmentFactory.php │ ├── FieldFactory.php │ ├── FieldResponseFactory.php │ ├── FormFactory.php │ ├── LetterFactory.php │ ├── LibraryFactory.php │ ├── MediaFactory.php │ ├── OfficeFactory.php │ ├── OperationsFactory.php │ ├── PostFactory.php │ ├── ResponseFactory.php │ ├── SectionFactory.php │ ├── TicketFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2021_08_21_143327_create_categories_table.php │ ├── 2022_04_12_004023_create_department_table.php │ ├── 2022_04_12_004024_create_letters_table.php │ ├── 2022_04_12_004027_create_posts_table.php │ ├── 2022_04_12_004031_create_tag_tables.php │ ├── 2022_04_12_004034_create_media_table.php │ ├── 2022_07_01_124823_create_faqs_table.php │ ├── 2022_07_01_124824_modify_posts_columns.php │ ├── 2022_08_12_080551_create_collections_table.php │ ├── 2022_08_12_080552_create_forms_table.php │ ├── 2022_08_12_080553_create_sections_table.php │ ├── 2022_08_12_080554_create_fields_table.php │ ├── 2022_08_12_080555_create_responses_table.php │ ├── 2022_08_12_080556_create_field_responses_table.php │ ├── 2022_09_07_114037_create_offices_table.php │ ├── 2022_09_07_114116_create_office_user_table.php │ ├── 2022_09_07_174026_create_tickets_table.php │ ├── 2022_09_07_174041_create_operations_table.php │ ├── 2022_09_16_120326_create_comments_table.php │ ├── 2023_05_20_131451_create_library_table.php │ ├── 2023_06_16_022153_create_layouts_table.php │ ├── 2023_06_19_224212_add_extensions_to_forms.php │ ├── 2023_06_27_002225_add_extension_item_responses.php │ ├── 2023_07_02_045031_alter_letters_constraints.php │ ├── 2023_07_02_180258_alter_tables_constraints.php │ ├── 2023_08_22_190405_create_branches_table.php │ ├── 2023_08_22_190406_create_menus_table.php │ ├── 2023_08_22_190407_create_menu_sections_table.php │ ├── 2023_08_22_190408_create_menu_items_table.php │ ├── 2023_08_22_190409_create_menu_item_labels_table.php │ ├── 2023_08_22_190410_create_favorites_table.php │ ├── 2023_08_22_190411_create_likes_table.php │ ├── 2023_08_23_190500create_curator_media_table.php │ ├── 2023_10_08_194444_add_compact_to_section.php │ ├── 2023_10_12_223432_create_filament_filter_sets_table.php │ ├── 2023_10_12_223433_create_filament_filter_set_user_table.php │ ├── 2023_10_12_223434_add_icon_and_color_columns_to_filter_sets_table.php │ ├── 2023_10_12_223435_add_is_visible_column_to_filter_set_users_table.php │ ├── 2023_10_12_223436_create_filament_filter_sets_managed_preset_views_table.php │ ├── 2023_10_12_223437_add_status_column_to_filter_sets_table.php │ ├── 2023_10_12_223438_change_filter_json_column_type_to_text_type.php │ ├── 2023_10_28_142503_add_options_to_section.php │ ├── 2023_11_05_124411_create_navigations_table.php │ ├── 2023_11_29_133127_create_links_table.php │ ├── 2023_11_29_133128_create_visits_table.php │ ├── 2023_12_10_144153_add_is_active_to_layouts_table.php │ ├── 2024_01_09_035519_create_seo_scans_table.php │ ├── 2024_01_09_035520_create_seo_score_table.php │ ├── 2024_01_14_214310_create_cars_table.php │ ├── 2024_01_16_102301_select_tree_tables.php │ ├── 2024_01_17_095159_update_tickets_table.php │ ├── 2024_01_24_180335_create_services_table.php │ ├── 2024_01_24_180337_create_requests_table.php │ ├── 2024_01_24_180338_create_requests_periods_table.php │ ├── 2024_01_24_180339_create_tmp_time_lock_table.php │ ├── 2024_01_31_162940_update_operations_user_id_table.php │ ├── 2024_02_09_182330_create_job_batches_table.php │ ├── 2024_02_09_182340_create_notifications_table.php │ ├── 2024_02_09_182355_create_imports_table.php │ ├── 2024_02_09_182356_create_exports_table.php │ ├── 2024_02_09_182357_create_failed_import_rows_table.php │ ├── 2024_02_17_104602_add_read_at_to_comments.php │ ├── 2024_03_09_144304_create_varieties_table.php │ ├── 2024_03_09_144305_create_documents_table.php │ ├── 2024_03_09_144306_create_attachments_table.php │ ├── 2024_03_18_164646_add_user_id_to_services.php │ ├── 2024_04_05_115115_create_filament_users_table.php │ ├── 2024_05_20_131439_add_grade_to_field_response.php │ ├── 2024_05_20_131439_add_grade_to_response.php │ ├── 2024_06_06_110742_add_model_morphs_to_links_table.php │ ├── 2024_09_03_111045_create_bookmarks_table.php │ ├── 2024_09_05_102910_create_recently_table.php │ ├── 2025_01_05_061105_add_borderless_to_section.php │ ├── 2025_02_11_152102_create_like_table.php │ ├── 2025_02_17_161155_create_train_table.php │ ├── 2025_02_18_191253_create_jobs_table.php │ ├── 2025_03_04_230318_create_masons_table.php │ ├── 2025_04_02_140421_create_emoji_table.php │ ├── 2025_05_15_161407_create_cache_table.php │ └── 2025_05_16_072545_create_mark_like_table.php └── seeders │ ├── AthenaSeeder.php │ ├── BoltProSeeder.php │ ├── BoltSectionsSeeder.php │ ├── BoltSeeder.php │ ├── CarSeeder.php │ ├── CompenySeeder.php │ ├── Concerns │ ├── HasFaker.php │ └── HasImage.php │ ├── DatabaseSeeder.php │ ├── HermesSeeder.php │ ├── OperationsTableSeeder.php │ ├── RainSeeder.php │ ├── SelectTreeSeeder.php │ ├── SkySeeder.php │ ├── ThunderSeeder.php │ ├── UserSeeder.php │ └── WindSeeder.php ├── lang ├── ar.json ├── ar │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── de.json ├── de │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── en.json ├── en │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── es.json ├── es │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── fr.json ├── fr │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── hu.json ├── hu │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── id.json ├── id │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── it.json ├── it │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── ko.json ├── ko │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── nl.json ├── nl │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── pl.json ├── pl │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── pt.json ├── pt │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── pt_BR.json ├── pt_BR │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── pt_PT.json ├── pt_PT │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── ru.json ├── ru │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── tr.json ├── tr │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php └── vendor │ ├── advanced-tables │ ├── ar │ │ ├── .gitkeep │ │ └── advanced-tables.php │ ├── en │ │ ├── .gitkeep │ │ └── advanced-tables.php │ ├── es │ │ └── advanced-tables.php │ └── fr │ │ └── advanced-tables.php │ ├── livewire-ui-spotlight │ ├── ar │ │ └── spotlight.php │ └── en │ │ └── spotlight.php │ └── zeus-dynamic-dashboard │ ├── ar.json │ └── en.json ├── package-lock.json ├── package.json ├── phpstan.neon ├── pint.json ├── postcss.config.js ├── public ├── .htaccess ├── boredom │ ├── 1.png │ ├── 1.svg │ ├── 2.png │ ├── 2.svg │ ├── 3.png │ ├── 3.svg │ ├── 4.png │ ├── 4.svg │ ├── 5.png │ ├── 5.svg │ ├── 6.png │ ├── 6.svg │ ├── 7.png │ ├── 7.svg │ ├── 8.png │ └── 8.svg ├── build │ ├── assets │ │ ├── ac-CL7iDMvG.svg │ │ ├── ad-DxzHjwdb.svg │ │ ├── ae-Cw7Z85ds.svg │ │ ├── af-Cr2ZzjB8.svg │ │ ├── ag-CpQf3jNz.svg │ │ ├── ai-Dyd3EOna.svg │ │ ├── al-BtHnVMNj.svg │ │ ├── am-DMt4_dd4.svg │ │ ├── another-portfolio-D2pnwEdv.js │ │ ├── another-portfolio-DOJr12fS.css │ │ ├── ao-BqGWXiAn.svg │ │ ├── app-CsgWcaYo.css │ │ ├── aq-DduptxNn.svg │ │ ├── ar-B7lJ513_.svg │ │ ├── arab-CS5qeNay.svg │ │ ├── as-y6rKV0gP.svg │ │ ├── at-DEs-d2vT.svg │ │ ├── au-Cs0v8f9U.svg │ │ ├── aw-CsqKuH4N.svg │ │ ├── ax-DvLIy84U.svg │ │ ├── az-CHrkyPkl.svg │ │ ├── ba-7xyfBHQd.svg │ │ ├── bb-DuqRVbqH.svg │ │ ├── bd-BF9t1-60.svg │ │ ├── be-CQHhekKF.svg │ │ ├── bf-YclsoDuF.svg │ │ ├── bg-36KQGGCT.svg │ │ ├── bh-BQqEGq6F.svg │ │ ├── bi-Cxz8TPuW.svg │ │ ├── bj-14PhO9bM.svg │ │ ├── bl-Cbl3-_fk.svg │ │ ├── bm-BDce7749.svg │ │ ├── bn-DL-4Gd5T.svg │ │ ├── bo-C3uCgOZ5.svg │ │ ├── bq-BYpdxEeT.svg │ │ ├── br-yD1Bsfyi.svg │ │ ├── bs-BcBvuB0x.svg │ │ ├── bt-COfv741Y.svg │ │ ├── bv-wM9JLv4R.svg │ │ ├── bw-CmvcZF16.svg │ │ ├── by-oPm0zKcB.svg │ │ ├── bz-B0AcYbfV.svg │ │ ├── ca-DA6WkHXD.svg │ │ ├── cc-DTrKRCi3.svg │ │ ├── cd-D5P_nhlb.svg │ │ ├── cefta-2dDBYygd.svg │ │ ├── cf-DRetLmp-.svg │ │ ├── cg-DmJ-GB5s.svg │ │ ├── ch-sfriZoF1.svg │ │ ├── ci-C8Q8IYTn.svg │ │ ├── ck-DfXMUOTo.svg │ │ ├── cl-CbhkUBHv.svg │ │ ├── cm-C7xadNSJ.svg │ │ ├── cn-DifnnI3t.svg │ │ ├── co-DV591zMm.svg │ │ ├── cp-C16-Rq6i.svg │ │ ├── cr-BlYVN-_Q.svg │ │ ├── cu-CHIcDuoG.svg │ │ ├── cv-DXE2W4t8.svg │ │ ├── cw-BbrnximR.svg │ │ ├── cx-BW4bn5ef.svg │ │ ├── cy-BFnWblrZ.svg │ │ ├── cz-WWBC5Aeb.svg │ │ ├── daisy-Cli4gTz1.css │ │ ├── de-Cuu9Ae9f.svg │ │ ├── dg-Cw_owxTN.svg │ │ ├── dj-4CTnQ_e7.svg │ │ ├── dk-DmS9BCZB.svg │ │ ├── dm-BI22d2Bd.svg │ │ ├── do-DhhjSgaa.svg │ │ ├── dz-Dytc1TFu.svg │ │ ├── eac-D4eBQjzh.svg │ │ ├── ec-gBBifr0j.svg │ │ ├── ee-DWx48TGL.svg │ │ ├── eg-OdV1wfvV.svg │ │ ├── eh-p2fPiHH-.svg │ │ ├── er-CKlJegvE.svg │ │ ├── es-ct-CVyhLp7O.svg │ │ ├── es-ga-BKM8aBaU.svg │ │ ├── es-mjGyAbGt.svg │ │ ├── es-pv-BrAvXTGu.svg │ │ ├── et-BlwtbBPn.svg │ │ ├── eu-BtZ1rlYL.svg │ │ ├── fi-DWUIkfjL.svg │ │ ├── fj-bbz1ETmi.svg │ │ ├── fk-D9U4Vq1t.svg │ │ ├── flag-icons-C7mVcbTK.css │ │ ├── fm-NaQB27JY.svg │ │ ├── fo-DC4l6pGS.svg │ │ ├── fr-izgDhMyD.svg │ │ ├── ga-BklUhLH_.svg │ │ ├── gb-DV0MrsSv.svg │ │ ├── gb-eng-C8iDhGHN.svg │ │ ├── gb-nir-DyBJpwiB.svg │ │ ├── gb-sct-fW5q01ek.svg │ │ ├── gb-wls-C4LdH8Nd.svg │ │ ├── gd-BIv0T8ZZ.svg │ │ ├── ge-D1RlrNLD.svg │ │ ├── gf-DrFBivB-.svg │ │ ├── gg-jdOQS2nU.svg │ │ ├── gh-CS3UqJbz.svg │ │ ├── gi-DWyBO4-V.svg │ │ ├── gl-CHaBnMib.svg │ │ ├── gm-Bu99atwn.svg │ │ ├── gn-1dJNy9oQ.svg │ │ ├── gp-CxWsRt0L.svg │ │ ├── gq-BbDDT8eO.svg │ │ ├── gr-C5PU0p9p.svg │ │ ├── gs-adY7nyVl.svg │ │ ├── gt-LIs-KxMl.svg │ │ ├── gu-XrGUY_Vh.svg │ │ ├── gw-B2o_Sisp.svg │ │ ├── gy-yuxXoWpd.svg │ │ ├── hk-CEul14SH.svg │ │ ├── hm-BtsE4CWO.svg │ │ ├── hn-1d945ds5.svg │ │ ├── hr-BvcXfyo9.svg │ │ ├── ht-fxygFJRs.svg │ │ ├── hu-7Q5wwIIi.svg │ │ ├── ic-CSo4d8tH.svg │ │ ├── id-DiSP6Fmm.svg │ │ ├── ie-ChAXClx3.svg │ │ ├── il-C79kmOLa.svg │ │ ├── im-_N1bxZqi.svg │ │ ├── in-BwRjomYt.svg │ │ ├── io-BZEDDIFS.svg │ │ ├── iq-DnJgDnNq.svg │ │ ├── ir-DGIAYyhI.svg │ │ ├── is-DMjBUI2Q.svg │ │ ├── it-Br7q0Zh6.svg │ │ ├── je-CU_EWkTs.svg │ │ ├── jm-Cnv59OoQ.svg │ │ ├── jo-Ba9lZfG1.svg │ │ ├── jp-DMgF_sn2.svg │ │ ├── ke-CMJI3Y8r.svg │ │ ├── kg-CUOB3d1d.svg │ │ ├── kh-V4Sa3vlt.svg │ │ ├── ki-Dd_BcMUB.svg │ │ ├── km-CRvi19Dl.svg │ │ ├── kn-DEL3WO3D.svg │ │ ├── kp-4dR_NjvA.svg │ │ ├── kr-HxMKLtMn.svg │ │ ├── kw-pwxq-siF.svg │ │ ├── ky-CVQfceNG.svg │ │ ├── kz-D_wLPKeH.svg │ │ ├── la-M7QgGDz9.svg │ │ ├── lb-BiDK2-OP.svg │ │ ├── lc-DTHoqiP_.svg │ │ ├── li-DSXxKHRg.svg │ │ ├── lk-B3k2yiKb.svg │ │ ├── lr-ChpOlJZf.svg │ │ ├── ls-BQUVEtoU.svg │ │ ├── lt-DoukV-Sm.svg │ │ ├── lu-CiYX1xIO.svg │ │ ├── lv-C-KfY8Yc.svg │ │ ├── ly-IeJyezKm.svg │ │ ├── ma-BTRNTRUj.svg │ │ ├── mc-PK078JHl.svg │ │ ├── md-HmhRr1LF.svg │ │ ├── me-Bh3GE2Mw.svg │ │ ├── mf-Cqov9b_F.svg │ │ ├── mg-C168LHXW.svg │ │ ├── mh-D0Zpor-f.svg │ │ ├── mk-D9SIMr-a.svg │ │ ├── ml-DVf6ujpi.svg │ │ ├── mm-Cpwt-Rwb.svg │ │ ├── mn-CyAB42He.svg │ │ ├── mo-CnhZCTko.svg │ │ ├── mp-xeCllHrB.svg │ │ ├── mq-8sqmH3J6.svg │ │ ├── mr-BGnUZZDB.svg │ │ ├── ms-AGsRONjR.svg │ │ ├── mt-k997NCJP.svg │ │ ├── mu-mcq7cUFl.svg │ │ ├── mv-BynAllfM.svg │ │ ├── mw-DVAm8WcO.svg │ │ ├── mx-DrAOOt3a.svg │ │ ├── my-CfN7VZZp.svg │ │ ├── mz-CJA6g0QT.svg │ │ ├── na-Dp1qnuob.svg │ │ ├── nc-CDK7nipe.svg │ │ ├── ne-B1jPOYkl.svg │ │ ├── nf-BIinStC1.svg │ │ ├── ng-su4NM9If.svg │ │ ├── ni-Cg0KaPa-.svg │ │ ├── nl-B1kG68CJ.svg │ │ ├── no-qf2JPO73.svg │ │ ├── np-J8k-ZYAH.svg │ │ ├── nr-DU5-P-KT.svg │ │ ├── nu-BfgWvGcd.svg │ │ ├── nz-DWimm690.svg │ │ ├── om-D76v1TyB.svg │ │ ├── pa-BLNN9G2-.svg │ │ ├── pe-DobDPS97.svg │ │ ├── pf-BdRIwrkd.svg │ │ ├── pg-D6GkXNCa.svg │ │ ├── ph-XsVsatj0.svg │ │ ├── photoswipe.esm-GXRgw7eJ.js │ │ ├── pk-B2_Z5oJx.svg │ │ ├── pl-o38JROoc.svg │ │ ├── pm-CemH-yXo.svg │ │ ├── pn-46QRODPu.svg │ │ ├── pr-Br4PdAAG.svg │ │ ├── ps-DDGFWWdu.svg │ │ ├── pt-BdjS33ru.svg │ │ ├── pw-CPKYJRR6.svg │ │ ├── py-QUX0HpIo.svg │ │ ├── qa-rGT-VRyR.svg │ │ ├── re-Bem26mMr.svg │ │ ├── ro-CoSeqKY1.svg │ │ ├── rs-DfEUtztx.svg │ │ ├── ru-9AQIVTNm.svg │ │ ├── rw-CkeHIO55.svg │ │ ├── sa-DEN4CmTJ.svg │ │ ├── sb-fD-jTZVK.svg │ │ ├── sc-CRNsSLg9.svg │ │ ├── sd-kPsC1xWB.svg │ │ ├── se-XrM-r19S.svg │ │ ├── sg-DGYIMG0G.svg │ │ ├── sh-oNQcLQTH.svg │ │ ├── si-CPdOW4tn.svg │ │ ├── sj-BFFEGknm.svg │ │ ├── sk-CVO73PKW.svg │ │ ├── sl-DxLJY5vJ.svg │ │ ├── sm-BMJzBA4m.svg │ │ ├── sn-S8ipNF1U.svg │ │ ├── so-CuhUPx-Q.svg │ │ ├── sr-Co7OKBh3.svg │ │ ├── ss-BqjdRDr3.svg │ │ ├── st-BNQ3w0yr.svg │ │ ├── sv-KCupG6cP.svg │ │ ├── sx-Cums8IXB.svg │ │ ├── sy-DA3zSpGw.svg │ │ ├── sz-Ce3FkGfY.svg │ │ ├── ta-BYlttpZS.svg │ │ ├── tc-BmNrDvlT.svg │ │ ├── td-DSDAe2XA.svg │ │ ├── tf-CdxpaLHa.svg │ │ ├── tg-wdg5lunL.svg │ │ ├── th-tzq84hgd.svg │ │ ├── theme-BAEZmv63.css │ │ ├── theme-BE_-iBuq.css │ │ ├── tj-vVALLdZf.svg │ │ ├── tk-kCG8iH5k.svg │ │ ├── tl-BF4kjI-I.svg │ │ ├── tm-BvZaXmQd.svg │ │ ├── tn-Cg7K2F6s.svg │ │ ├── to-D8uVsoxb.svg │ │ ├── tr-qGuuw724.svg │ │ ├── tt-Cyw4ydH4.svg │ │ ├── tv-DDqkVT-n.svg │ │ ├── tw-d-Mf-0VT.svg │ │ ├── tz-Blg92dUj.svg │ │ ├── ua-Bq0XgQqK.svg │ │ ├── ug-DXgdZRmz.svg │ │ ├── um-DqZpNiIm.svg │ │ ├── un-nhZzgkOE.svg │ │ ├── us-BFqT3BIu.svg │ │ ├── uy-BdEsqnh5.svg │ │ ├── uz-DCfFC2IB.svg │ │ ├── va-EEzwYu0I.svg │ │ ├── vc-CGEau3PJ.svg │ │ ├── ve-BSqnIB9l.svg │ │ ├── vg-kokZOU4j.svg │ │ ├── vi-C4UoW7J6.svg │ │ ├── vn-BbinjShR.svg │ │ ├── vu-DM3mlEBZ.svg │ │ ├── wf-BC-g0f0O.svg │ │ ├── ws-vzJNwdVm.svg │ │ ├── xk-BOGoRkzZ.svg │ │ ├── xx-zm_JmrXl.svg │ │ ├── ye-rye0K4Zu.svg │ │ ├── yt-Cy2KL3x0.svg │ │ ├── za-DfY_zj41.svg │ │ ├── zm-BVtsuZ3D.svg │ │ └── zw-CUCThRVS.svg │ └── manifest.json ├── css │ ├── another-portfolio.css │ ├── app.css │ ├── app │ │ └── filament-export-0.3.0.css │ ├── arbermustafa │ │ └── filament-locationpickr-field │ │ │ └── locationpickr.css │ ├── archilex │ │ └── filament-toggle-icon-column │ │ │ └── filament-toggle-icon-column.css │ ├── awcodes │ │ ├── curator │ │ │ └── curator.css │ │ ├── filament-badgeable-column │ │ │ └── filament-badgeable-column.css │ │ ├── scribble │ │ │ └── scribble-styles.css │ │ ├── shout │ │ │ └── shout.css │ │ └── tiptap-editor │ │ │ └── tiptap.css │ ├── codewithdennis │ │ └── filament-select-tree │ │ │ └── filament-select-tree-styles.css │ ├── coolsam │ │ └── flatpickr │ │ │ ├── flatpickr-airbnb-theme.css │ │ │ ├── flatpickr-confetti-theme.css │ │ │ ├── flatpickr-confirm-date-style.css │ │ │ ├── flatpickr-css.css │ │ │ ├── flatpickr-dark-theme.css │ │ │ ├── flatpickr-default-theme.css │ │ │ ├── flatpickr-light-theme.css │ │ │ ├── flatpickr-material_blue-theme.css │ │ │ ├── flatpickr-material_green-theme.css │ │ │ ├── flatpickr-material_orange-theme.css │ │ │ ├── flatpickr-material_red-theme.css │ │ │ └── month-select-style.css │ ├── daisy.css │ ├── filament-daterangepicker-filter │ │ ├── filament-daterangepicker-filter2.7.3.0.css │ │ └── filament-daterangepicker-filter2.8.0.0.css │ ├── filament-export │ │ └── filament-export-0.3.0.css │ ├── filament-guests.css │ ├── filament-navigation │ │ └── filament-navigation-styles.css │ ├── filament-xp.css │ ├── filament-zeus.css │ ├── filament │ │ ├── filament │ │ │ └── app.css │ │ ├── forms │ │ │ └── forms.css │ │ └── support │ │ │ └── support.css │ ├── filipfonal │ │ └── filament-log-manager │ │ │ └── filament-log-manager.css │ ├── flag-icons.css │ ├── guava │ │ └── filament-icon-picker │ │ │ └── filament-icon-picker-stylesheet.css │ ├── hasnayeen │ │ └── themes │ │ │ ├── default.css │ │ │ ├── dracula.css │ │ │ ├── nord.css │ │ │ └── sunset.css │ ├── ibrahimbougaoua │ │ └── filament-rating-star │ │ │ └── filament-rating-star-styles.css │ ├── lara-zeus │ │ ├── filament-lara-zeus.css │ │ ├── filament-tail.css │ │ ├── frontend.css │ │ ├── helen.js │ │ ├── lara-zeus.css │ │ ├── plugin.js │ │ └── plugin.js.LICENSE.txt │ ├── malzariey │ │ └── filament-daterangepicker-filter │ │ │ └── date-range-picker.css │ ├── njxqlus │ │ └── filament-progressbar │ │ │ └── filament-progressbar-styles.css │ ├── pxlrbt │ │ └── filament-spotlight │ │ │ └── spotlight-css.css │ ├── saade │ │ ├── filament-autograph │ │ │ └── filament-autograph-styles.css │ │ └── filament-fullcalendar │ │ │ └── filament-fullcalendar-styles.css │ ├── sawirricardo │ │ └── filament-nouislider │ │ │ └── filament-nouislider-styles.css │ ├── swisnl │ │ └── filament-backgrounds │ │ │ └── filament-backgrounds-styles.css │ ├── ysfkaya │ │ └── filament-phone-input │ │ │ └── filament-phone-input.css │ └── zeus │ │ └── bolt-pro │ │ └── image-picker.css ├── favicon.ico ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── flags │ └── 4x3 │ │ ├── ac.svg │ │ ├── ad.svg │ │ ├── ae.svg │ │ ├── af.svg │ │ ├── ag.svg │ │ ├── ai.svg │ │ ├── al.svg │ │ ├── am.svg │ │ ├── ao.svg │ │ ├── aq.svg │ │ ├── ar.svg │ │ ├── arab.svg │ │ ├── as.svg │ │ ├── at.svg │ │ ├── au.svg │ │ ├── aw.svg │ │ ├── ax.svg │ │ ├── az.svg │ │ ├── ba.svg │ │ ├── bb.svg │ │ ├── bd.svg │ │ ├── be.svg │ │ ├── bf.svg │ │ ├── bg.svg │ │ ├── bh.svg │ │ ├── bi.svg │ │ ├── bj.svg │ │ ├── bl.svg │ │ ├── bm.svg │ │ ├── bn.svg │ │ ├── bo.svg │ │ ├── bq.svg │ │ ├── br.svg │ │ ├── bs.svg │ │ ├── bt.svg │ │ ├── bv.svg │ │ ├── bw.svg │ │ ├── by.svg │ │ ├── bz.svg │ │ ├── ca.svg │ │ ├── cc.svg │ │ ├── cd.svg │ │ ├── cefta.svg │ │ ├── cf.svg │ │ ├── cg.svg │ │ ├── ch.svg │ │ ├── ci.svg │ │ ├── ck.svg │ │ ├── cl.svg │ │ ├── cm.svg │ │ ├── cn.svg │ │ ├── co.svg │ │ ├── cp.svg │ │ ├── cr.svg │ │ ├── cu.svg │ │ ├── cv.svg │ │ ├── cw.svg │ │ ├── cx.svg │ │ ├── cy.svg │ │ ├── cz.svg │ │ ├── de.svg │ │ ├── dg.svg │ │ ├── dj.svg │ │ ├── dk.svg │ │ ├── dm.svg │ │ ├── do.svg │ │ ├── dz.svg │ │ ├── eac.svg │ │ ├── ec.svg │ │ ├── ee.svg │ │ ├── eg.svg │ │ ├── eh.svg │ │ ├── er.svg │ │ ├── es-ct.svg │ │ ├── es-ga.svg │ │ ├── es-pv.svg │ │ ├── es.svg │ │ ├── et.svg │ │ ├── eu.svg │ │ ├── fi.svg │ │ ├── fj.svg │ │ ├── fk.svg │ │ ├── fm.svg │ │ ├── fo.svg │ │ ├── fr.svg │ │ ├── ga.svg │ │ ├── gb-eng.svg │ │ ├── gb-nir.svg │ │ ├── gb-sct.svg │ │ ├── gb-wls.svg │ │ ├── gb.svg │ │ ├── gd.svg │ │ ├── ge.svg │ │ ├── gf.svg │ │ ├── gg.svg │ │ ├── gh.svg │ │ ├── gi.svg │ │ ├── gl.svg │ │ ├── gm.svg │ │ ├── gn.svg │ │ ├── gp.svg │ │ ├── gq.svg │ │ ├── gr.svg │ │ ├── gs.svg │ │ ├── gt.svg │ │ ├── gu.svg │ │ ├── gw.svg │ │ ├── gy.svg │ │ ├── hk.svg │ │ ├── hm.svg │ │ ├── hn.svg │ │ ├── hr.svg │ │ ├── ht.svg │ │ ├── hu.svg │ │ ├── ic.svg │ │ ├── id.svg │ │ ├── ie.svg │ │ ├── il.svg │ │ ├── im.svg │ │ ├── in.svg │ │ ├── io.svg │ │ ├── iq.svg │ │ ├── ir.svg │ │ ├── is.svg │ │ ├── it.svg │ │ ├── je.svg │ │ ├── jm.svg │ │ ├── jo.svg │ │ ├── jp.svg │ │ ├── ke.svg │ │ ├── kg.svg │ │ ├── kh.svg │ │ ├── ki.svg │ │ ├── km.svg │ │ ├── kn.svg │ │ ├── kp.svg │ │ ├── kr.svg │ │ ├── kw.svg │ │ ├── ky.svg │ │ ├── kz.svg │ │ ├── la.svg │ │ ├── lb.svg │ │ ├── lc.svg │ │ ├── li.svg │ │ ├── lk.svg │ │ ├── lr.svg │ │ ├── ls.svg │ │ ├── lt.svg │ │ ├── lu.svg │ │ ├── lv.svg │ │ ├── ly.svg │ │ ├── ma.svg │ │ ├── mc.svg │ │ ├── md.svg │ │ ├── me.svg │ │ ├── mf.svg │ │ ├── mg.svg │ │ ├── mh.svg │ │ ├── mk.svg │ │ ├── ml.svg │ │ ├── mm.svg │ │ ├── mn.svg │ │ ├── mo.svg │ │ ├── mp.svg │ │ ├── mq.svg │ │ ├── mr.svg │ │ ├── ms.svg │ │ ├── mt.svg │ │ ├── mu.svg │ │ ├── mv.svg │ │ ├── mw.svg │ │ ├── mx.svg │ │ ├── my.svg │ │ ├── mz.svg │ │ ├── na.svg │ │ ├── nc.svg │ │ ├── ne.svg │ │ ├── nf.svg │ │ ├── ng.svg │ │ ├── ni.svg │ │ ├── nl.svg │ │ ├── no.svg │ │ ├── np.svg │ │ ├── nr.svg │ │ ├── nu.svg │ │ ├── nz.svg │ │ ├── om.svg │ │ ├── pa.svg │ │ ├── pe.svg │ │ ├── pf.svg │ │ ├── pg.svg │ │ ├── ph.svg │ │ ├── pk.svg │ │ ├── pl.svg │ │ ├── pm.svg │ │ ├── pn.svg │ │ ├── pr.svg │ │ ├── ps.svg │ │ ├── pt.svg │ │ ├── pw.svg │ │ ├── py.svg │ │ ├── qa.svg │ │ ├── re.svg │ │ ├── ro.svg │ │ ├── rs.svg │ │ ├── ru.svg │ │ ├── rw.svg │ │ ├── sa.svg │ │ ├── sb.svg │ │ ├── sc.svg │ │ ├── sd.svg │ │ ├── se.svg │ │ ├── sg.svg │ │ ├── sh.svg │ │ ├── si.svg │ │ ├── sj.svg │ │ ├── sk.svg │ │ ├── sl.svg │ │ ├── sm.svg │ │ ├── sn.svg │ │ ├── so.svg │ │ ├── sr.svg │ │ ├── ss.svg │ │ ├── st.svg │ │ ├── sv.svg │ │ ├── sx.svg │ │ ├── sy.svg │ │ ├── sz.svg │ │ ├── ta.svg │ │ ├── tc.svg │ │ ├── td.svg │ │ ├── tf.svg │ │ ├── tg.svg │ │ ├── th.svg │ │ ├── tj.svg │ │ ├── tk.svg │ │ ├── tl.svg │ │ ├── tm.svg │ │ ├── tn.svg │ │ ├── to.svg │ │ ├── tr.svg │ │ ├── tt.svg │ │ ├── tv.svg │ │ ├── tw.svg │ │ ├── tz.svg │ │ ├── ua.svg │ │ ├── ug.svg │ │ ├── um.svg │ │ ├── un.svg │ │ ├── us.svg │ │ ├── uy.svg │ │ ├── uz.svg │ │ ├── va.svg │ │ ├── vc.svg │ │ ├── ve.svg │ │ ├── vg.svg │ │ ├── vi.svg │ │ ├── vn.svg │ │ ├── vu.svg │ │ ├── wf.svg │ │ ├── ws.svg │ │ ├── xk.svg │ │ ├── xx.svg │ │ ├── ye.svg │ │ ├── yt.svg │ │ ├── za.svg │ │ ├── zm.svg │ │ └── zw.svg ├── images │ ├── batman.png │ ├── harley-quinn.png │ ├── joker.png │ ├── poison-ivy.png │ ├── robin.png │ ├── swisnl │ │ └── filament-backgrounds │ │ │ ├── curated-by-swis │ │ │ ├── 01.jpg │ │ │ ├── 02.jpg │ │ │ ├── 03.jpg │ │ │ ├── 04.jpg │ │ │ ├── 05.jpg │ │ │ ├── 06.jpg │ │ │ ├── 07.jpg │ │ │ ├── 08.jpg │ │ │ ├── 09.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpg │ │ │ ├── 19.jpg │ │ │ ├── 20.jpg │ │ │ ├── 21.jpg │ │ │ ├── 22.jpg │ │ │ ├── 23.jpg │ │ │ ├── 24.jpg │ │ │ ├── 25.jpg │ │ │ ├── 26.jpg │ │ │ ├── 27.jpg │ │ │ ├── 28.jpg │ │ │ ├── 29.jpg │ │ │ ├── 30.jpg │ │ │ └── 31.jpg │ │ │ └── triangles │ │ │ ├── 01.svg │ │ │ ├── 02.svg │ │ │ ├── 03.svg │ │ │ ├── 04.svg │ │ │ ├── 05.svg │ │ │ ├── 06.svg │ │ │ ├── 07.svg │ │ │ ├── 08.svg │ │ │ ├── 09.svg │ │ │ ├── 10.svg │ │ │ ├── 11.svg │ │ │ ├── 12.svg │ │ │ ├── 13.svg │ │ │ ├── 14.svg │ │ │ ├── 15.svg │ │ │ ├── 16.svg │ │ │ ├── 17.svg │ │ │ ├── 18.svg │ │ │ ├── 19.svg │ │ │ ├── 20.svg │ │ │ ├── 21.svg │ │ │ ├── 22.svg │ │ │ ├── 23.svg │ │ │ ├── 24.svg │ │ │ └── 25.svg │ ├── undraw_bug_fixing_oc-7-a.svg │ └── zeus-logo.png ├── index.php ├── js │ ├── 300.js │ ├── 300.js.LICENSE.txt │ ├── 826.js │ ├── 826.js.LICENSE.txt │ ├── another-portfolio.js │ ├── another-portfolio.js.LICENSE.txt │ ├── app.js │ ├── app.js.LICENSE.txt │ ├── app │ │ ├── filament-export-0.3.0.js │ │ └── filament-tools.js │ ├── arbermustafa │ │ └── filament-locationpickr-field │ │ │ └── components │ │ │ ├── locationpickr-entry.js │ │ │ └── locationpickr-field.js │ ├── awcodes │ │ ├── curator │ │ │ └── components │ │ │ │ └── curation.js │ │ ├── mason │ │ │ └── components │ │ │ │ └── mason.js │ │ ├── pounce │ │ │ └── pounce.js │ │ ├── richie │ │ │ ├── components │ │ │ │ └── richie.js │ │ │ └── richie-lifecycle.js │ │ ├── scribble │ │ │ └── components │ │ │ │ └── scribble-component.js │ │ └── tiptap-editor │ │ │ └── components │ │ │ └── tiptap.js │ ├── codewithdennis │ │ └── filament-select-tree │ │ │ └── components │ │ │ ├── filament-select-tree.js │ │ │ └── tree.js │ ├── coolsam │ │ └── flatpickr │ │ │ ├── components │ │ │ └── flatpickr-component.js │ │ │ ├── flatpickr-confirm-date.js │ │ │ ├── flatpickr-month-select-plugin.js │ │ │ ├── flatpickr-range-plugin.js │ │ │ └── flatpickr-week-select-plugin.js │ ├── filament-daterangepicker-filter │ │ ├── filament-daterangepicker-filter2.7.3.0.js │ │ └── filament-daterangepicker-filter2.8.0.0.js │ ├── filament-export │ │ └── filament-export-0.3.0.js │ ├── filament-navigation │ │ ├── filament-navigation-scripts.js │ │ └── navigation-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 │ │ │ └── forms.js │ │ ├── notifications │ │ │ └── notifications.js │ │ ├── support │ │ │ ├── async-alpine.js │ │ │ └── support.js │ │ ├── tables │ │ │ ├── components │ │ │ │ └── table.js │ │ │ └── tables.js │ │ └── widgets │ │ │ └── components │ │ │ ├── chart.js │ │ │ └── stats-overview │ │ │ ├── card │ │ │ └── chart.js │ │ │ └── stat │ │ │ └── chart.js │ ├── lara-zeus │ │ ├── filament-lara-zeus.js │ │ ├── filament-zeus.js │ │ ├── qr │ │ │ ├── components │ │ │ │ └── qr.js │ │ │ └── qr.js │ │ └── quantity │ │ │ └── components │ │ │ └── quantity.js │ ├── malzariey │ │ └── filament-daterangepicker-filter │ │ │ └── components │ │ │ └── dateRangeComponent.js │ ├── njxqlus │ │ └── filament-progressbar │ │ │ └── filament-progressbar-scripts.js │ ├── node_modules_photoswipe_dist_photoswipe_esm_js.js │ ├── pxlrbt │ │ └── filament-spotlight │ │ │ └── spotlight-js.js │ ├── qrcode.js │ ├── saade │ │ ├── filament-autograph │ │ │ └── components │ │ │ │ └── filament-autograph.js │ │ └── filament-fullcalendar │ │ │ └── components │ │ │ └── filament-fullcalendar-alpine.js │ ├── sawirricardo │ │ └── filament-nouislider │ │ │ └── components │ │ │ └── filament-nouislider.js │ └── ysfkaya │ │ └── filament-phone-input │ │ └── components │ │ └── filament-phone-input.js ├── mix-manifest.json ├── robots.txt └── vendor │ ├── nuxtifyts │ └── dash-stack-theme │ │ ├── card-bg-pattern.svg │ │ └── dash-stack-shape.svg │ ├── zeus-artemis │ ├── css │ │ ├── another-portfolio.css │ │ ├── app.css │ │ ├── breeze.css │ │ ├── daisy.css │ │ └── daisyui.css │ └── js │ │ ├── 826.js │ │ ├── 826.js.LICENSE.txt │ │ ├── another-portfolio.js │ │ ├── another-portfolio.js.LICENSE.txt │ │ └── node_modules_photoswipe_dist_photoswipe_esm_js.js │ ├── zeus-athena │ ├── app.js │ └── athena.js │ └── zeus │ ├── filament-tail.css │ ├── frontend.css │ ├── lara-zeus.css │ ├── plugin.js │ └── plugin.js.LICENSE.txt ├── resources ├── css │ ├── another-portfolio.css │ ├── app.css │ ├── daisy.css │ ├── filament │ │ ├── admin │ │ │ ├── tailwind.config.js │ │ │ └── theme.css │ │ ├── filament-another-portfolio.css │ │ ├── filament-brush.css │ │ ├── filament-daisy.css │ │ ├── filament-def.css │ │ ├── filament-xp.css │ │ ├── guests │ │ │ ├── tailwind.config.js │ │ │ └── theme.css │ │ └── zeus.css │ ├── flag-icons.css │ ├── tailwind-another-portfolio.config.js │ ├── tailwind-daisy.config.js │ ├── tailwind.config.js │ └── xp.css ├── flags │ └── 4x3 │ │ ├── ac.svg │ │ ├── ad.svg │ │ ├── ae.svg │ │ ├── af.svg │ │ ├── ag.svg │ │ ├── ai.svg │ │ ├── al.svg │ │ ├── am.svg │ │ ├── ao.svg │ │ ├── aq.svg │ │ ├── ar.svg │ │ ├── arab.svg │ │ ├── as.svg │ │ ├── at.svg │ │ ├── au.svg │ │ ├── aw.svg │ │ ├── ax.svg │ │ ├── az.svg │ │ ├── ba.svg │ │ ├── bb.svg │ │ ├── bd.svg │ │ ├── be.svg │ │ ├── bf.svg │ │ ├── bg.svg │ │ ├── bh.svg │ │ ├── bi.svg │ │ ├── bj.svg │ │ ├── bl.svg │ │ ├── bm.svg │ │ ├── bn.svg │ │ ├── bo.svg │ │ ├── bq.svg │ │ ├── br.svg │ │ ├── bs.svg │ │ ├── bt.svg │ │ ├── bv.svg │ │ ├── bw.svg │ │ ├── by.svg │ │ ├── bz.svg │ │ ├── ca.svg │ │ ├── cc.svg │ │ ├── cd.svg │ │ ├── cefta.svg │ │ ├── cf.svg │ │ ├── cg.svg │ │ ├── ch.svg │ │ ├── ci.svg │ │ ├── ck.svg │ │ ├── cl.svg │ │ ├── cm.svg │ │ ├── cn.svg │ │ ├── co.svg │ │ ├── cp.svg │ │ ├── cr.svg │ │ ├── cu.svg │ │ ├── cv.svg │ │ ├── cw.svg │ │ ├── cx.svg │ │ ├── cy.svg │ │ ├── cz.svg │ │ ├── de.svg │ │ ├── dg.svg │ │ ├── dj.svg │ │ ├── dk.svg │ │ ├── dm.svg │ │ ├── do.svg │ │ ├── dz.svg │ │ ├── eac.svg │ │ ├── ec.svg │ │ ├── ee.svg │ │ ├── eg.svg │ │ ├── eh.svg │ │ ├── er.svg │ │ ├── es-ct.svg │ │ ├── es-ga.svg │ │ ├── es-pv.svg │ │ ├── es.svg │ │ ├── et.svg │ │ ├── eu.svg │ │ ├── fi.svg │ │ ├── fj.svg │ │ ├── fk.svg │ │ ├── fm.svg │ │ ├── fo.svg │ │ ├── fr.svg │ │ ├── ga.svg │ │ ├── gb-eng.svg │ │ ├── gb-nir.svg │ │ ├── gb-sct.svg │ │ ├── gb-wls.svg │ │ ├── gb.svg │ │ ├── gd.svg │ │ ├── ge.svg │ │ ├── gf.svg │ │ ├── gg.svg │ │ ├── gh.svg │ │ ├── gi.svg │ │ ├── gl.svg │ │ ├── gm.svg │ │ ├── gn.svg │ │ ├── gp.svg │ │ ├── gq.svg │ │ ├── gr.svg │ │ ├── gs.svg │ │ ├── gt.svg │ │ ├── gu.svg │ │ ├── gw.svg │ │ ├── gy.svg │ │ ├── hk.svg │ │ ├── hm.svg │ │ ├── hn.svg │ │ ├── hr.svg │ │ ├── ht.svg │ │ ├── hu.svg │ │ ├── ic.svg │ │ ├── id.svg │ │ ├── ie.svg │ │ ├── il.svg │ │ ├── im.svg │ │ ├── in.svg │ │ ├── io.svg │ │ ├── iq.svg │ │ ├── ir.svg │ │ ├── is.svg │ │ ├── it.svg │ │ ├── je.svg │ │ ├── jm.svg │ │ ├── jo.svg │ │ ├── jp.svg │ │ ├── ke.svg │ │ ├── kg.svg │ │ ├── kh.svg │ │ ├── ki.svg │ │ ├── km.svg │ │ ├── kn.svg │ │ ├── kp.svg │ │ ├── kr.svg │ │ ├── kw.svg │ │ ├── ky.svg │ │ ├── kz.svg │ │ ├── la.svg │ │ ├── lb.svg │ │ ├── lc.svg │ │ ├── li.svg │ │ ├── lk.svg │ │ ├── lr.svg │ │ ├── ls.svg │ │ ├── lt.svg │ │ ├── lu.svg │ │ ├── lv.svg │ │ ├── ly.svg │ │ ├── ma.svg │ │ ├── mc.svg │ │ ├── md.svg │ │ ├── me.svg │ │ ├── mf.svg │ │ ├── mg.svg │ │ ├── mh.svg │ │ ├── mk.svg │ │ ├── ml.svg │ │ ├── mm.svg │ │ ├── mn.svg │ │ ├── mo.svg │ │ ├── mp.svg │ │ ├── mq.svg │ │ ├── mr.svg │ │ ├── ms.svg │ │ ├── mt.svg │ │ ├── mu.svg │ │ ├── mv.svg │ │ ├── mw.svg │ │ ├── mx.svg │ │ ├── my.svg │ │ ├── mz.svg │ │ ├── na.svg │ │ ├── nc.svg │ │ ├── ne.svg │ │ ├── nf.svg │ │ ├── ng.svg │ │ ├── ni.svg │ │ ├── nl.svg │ │ ├── no.svg │ │ ├── np.svg │ │ ├── nr.svg │ │ ├── nu.svg │ │ ├── nz.svg │ │ ├── om.svg │ │ ├── pa.svg │ │ ├── pe.svg │ │ ├── pf.svg │ │ ├── pg.svg │ │ ├── ph.svg │ │ ├── pk.svg │ │ ├── pl.svg │ │ ├── pm.svg │ │ ├── pn.svg │ │ ├── pr.svg │ │ ├── ps.svg │ │ ├── pt.svg │ │ ├── pw.svg │ │ ├── py.svg │ │ ├── qa.svg │ │ ├── re.svg │ │ ├── ro.svg │ │ ├── rs.svg │ │ ├── ru.svg │ │ ├── rw.svg │ │ ├── sa.svg │ │ ├── sb.svg │ │ ├── sc.svg │ │ ├── sd.svg │ │ ├── se.svg │ │ ├── sg.svg │ │ ├── sh.svg │ │ ├── si.svg │ │ ├── sj.svg │ │ ├── sk.svg │ │ ├── sl.svg │ │ ├── sm.svg │ │ ├── sn.svg │ │ ├── so.svg │ │ ├── sr.svg │ │ ├── ss.svg │ │ ├── st.svg │ │ ├── sv.svg │ │ ├── sx.svg │ │ ├── sy.svg │ │ ├── sz.svg │ │ ├── ta.svg │ │ ├── tc.svg │ │ ├── td.svg │ │ ├── tf.svg │ │ ├── tg.svg │ │ ├── th.svg │ │ ├── tj.svg │ │ ├── tk.svg │ │ ├── tl.svg │ │ ├── tm.svg │ │ ├── tn.svg │ │ ├── to.svg │ │ ├── tr.svg │ │ ├── tt.svg │ │ ├── tv.svg │ │ ├── tw.svg │ │ ├── tz.svg │ │ ├── ua.svg │ │ ├── ug.svg │ │ ├── um.svg │ │ ├── un.svg │ │ ├── us.svg │ │ ├── uy.svg │ │ ├── uz.svg │ │ ├── va.svg │ │ ├── vc.svg │ │ ├── ve.svg │ │ ├── vg.svg │ │ ├── vi.svg │ │ ├── vn.svg │ │ ├── vu.svg │ │ ├── wf.svg │ │ ├── ws.svg │ │ ├── xk.svg │ │ ├── xx.svg │ │ ├── ye.svg │ │ ├── yt.svg │ │ ├── za.svg │ │ ├── zm.svg │ │ └── zw.svg ├── js │ └── another-portfolio.js └── views │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ └── verify-email.blade.php │ ├── components │ ├── app.blade.php │ ├── application-logo.blade.php │ ├── auth-session-status.blade.php │ ├── banner.blade.php │ ├── card.blade.php │ ├── danger-button.blade.php │ ├── dark-mode.blade.php │ ├── dropdown-b.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── guests │ │ └── package-card.blade.php │ ├── input-error.blade.php │ ├── input-label.blade.php │ ├── item-breeze.blade.php │ ├── item-daisy.blade.php │ ├── item.blade.php │ ├── lang-switcher.blade.php │ ├── list │ │ ├── index.blade.php │ │ └── item.blade.php │ ├── modal.blade.php │ ├── nav-link.blade.php │ ├── nav.blade.php │ ├── primary-button.blade.php │ ├── responsive-nav-link.blade.php │ ├── secondary-button.blade.php │ ├── section.blade.php │ ├── text-input.blade.php │ └── theme-switcher.blade.php │ ├── dashboard.blade.php │ ├── embed.blade.php │ ├── errors │ ├── 401.blade.php │ ├── 402.blade.php │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 429.blade.php │ ├── 500.blade.php │ ├── 503.blade.php │ ├── layout.blade.php │ └── minimal.blade.php │ ├── filament │ ├── clusters │ │ └── components-demo │ │ │ └── pages │ │ │ └── athena.blade.php │ ├── guests │ │ ├── pages │ │ │ ├── activity-timeline.blade.php │ │ │ ├── badgeable-column.blade.php │ │ │ ├── mason.blade.php │ │ │ ├── matinee.blade.php │ │ │ ├── preset-color-picker.blade.php │ │ │ ├── radio-deck.blade.php │ │ │ ├── richie.blade.php │ │ │ ├── select-tree.blade.php │ │ │ ├── shout.blade.php │ │ │ ├── socialment.blade.php │ │ │ └── table-repeater.blade.php │ │ └── widgets │ │ │ └── showcase.blade.php │ ├── hooks │ │ ├── another-portfolio-placeholder.blade.php │ │ ├── athena.blade.php │ │ ├── bolt.blade.php │ │ ├── breeze-placeholder.blade.php │ │ ├── car.blade.php │ │ ├── daisy-placeholder.blade.php │ │ ├── db-notice.blade.php │ │ ├── footer-guests.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── helen.blade.php │ │ ├── hera.blade.php │ │ ├── hermes.blade.php │ │ ├── lang-switcher.blade.php │ │ ├── my-dash.blade.php │ │ ├── panel-switcher.blade.php │ │ ├── placeholder.blade.php │ │ ├── qr-code-note.blade.php │ │ ├── sidebar-searcher.blade.php │ │ ├── store.blade.php │ │ ├── thunder.blade.php │ │ ├── tiles.blade.php │ │ ├── user-view-resource.blade.php │ │ ├── user.blade.php │ │ └── zeus-placeholder.blade.php │ ├── logo.blade.php │ ├── pages │ │ ├── accordion.blade.php │ │ ├── bolt.blade.php │ │ ├── calender.blade.php │ │ ├── embed.blade.php │ │ ├── inline-chart.blade.php │ │ ├── list-group.blade.php │ │ ├── mark.blade.php │ │ ├── popover.blade.php │ │ ├── qrcode.blade.php │ │ ├── quantity.blade.php │ │ ├── statistics.blade.php │ │ ├── tiles.blade.php │ │ ├── torch-filament.blade.php │ │ └── wizard.blade.php │ ├── test │ │ └── user-card.blade.php │ └── widgets │ │ ├── black-friday.blade.php │ │ ├── bookmarks-widget.blade.php │ │ ├── demo-overview.blade.php │ │ ├── feedback.blade.php │ │ ├── packages-overview.blade.php │ │ ├── plugins-showcase.blade.php │ │ └── support-widget.blade.php │ ├── forms │ └── components │ │ └── car.blade.php │ ├── items │ ├── another-portfolio.blade.php │ ├── breeze.blade.php │ ├── daisy.blade.php │ ├── soon.blade.php │ └── zeus.blade.php │ ├── layouts │ ├── app.blade.php │ ├── guest.blade.php │ └── navigation.blade.php │ ├── livewire │ ├── like-post.blade.php │ └── user-card.blade.php │ ├── mason │ ├── batman.blade.php │ ├── cards.blade.php │ ├── code.blade.php │ ├── newsletter-signup.blade.php │ ├── section.blade.php │ └── support-center.blade.php │ ├── profile │ ├── edit.blade.php │ └── partials │ │ ├── delete-user-form.blade.php │ │ ├── update-password-form.blade.php │ │ └── update-profile-information-form.blade.php │ ├── purg.blade.php │ ├── tables │ └── columns │ │ └── right-click.blade.php │ ├── vendor │ ├── filament-actions │ │ ├── badge-action.blade.php │ │ ├── badge-group.blade.php │ │ ├── button-action.blade.php │ │ ├── button-group.blade.php │ │ ├── components │ │ │ ├── action.blade.php │ │ │ ├── actions.blade.php │ │ │ ├── group.blade.php │ │ │ └── modals.blade.php │ │ ├── grouped-action.blade.php │ │ ├── grouped-group.blade.php │ │ ├── icon-button-action.blade.php │ │ ├── icon-button-group.blade.php │ │ ├── link-action.blade.php │ │ ├── link-group.blade.php │ │ └── select-action.blade.php │ ├── filament-forms │ │ ├── component-container.blade.php │ │ └── components │ │ │ ├── actions.blade.php │ │ │ ├── actions │ │ │ └── action-container.blade.php │ │ │ ├── builder.blade.php │ │ │ ├── builder │ │ │ └── block-picker.blade.php │ │ │ ├── checkbox-list.blade.php │ │ │ ├── checkbox.blade.php │ │ │ ├── color-picker.blade.php │ │ │ ├── date-time-picker.blade.php │ │ │ ├── field-wrapper │ │ │ ├── error-message.blade.php │ │ │ ├── helper-text.blade.php │ │ │ ├── hint.blade.php │ │ │ ├── index.blade.php │ │ │ └── label.blade.php │ │ │ ├── fieldset.blade.php │ │ │ ├── file-upload.blade.php │ │ │ ├── grid.blade.php │ │ │ ├── group.blade.php │ │ │ ├── hidden.blade.php │ │ │ ├── key-value.blade.php │ │ │ ├── livewire.blade.php │ │ │ ├── markdown-editor.blade.php │ │ │ ├── placeholder.blade.php │ │ │ ├── radio.blade.php │ │ │ ├── repeater │ │ │ ├── index.blade.php │ │ │ └── simple.blade.php │ │ │ ├── rich-editor.blade.php │ │ │ ├── rich-editor │ │ │ └── toolbar │ │ │ │ ├── button.blade.php │ │ │ │ └── group.blade.php │ │ │ ├── section.blade.php │ │ │ ├── select.blade.php │ │ │ ├── split.blade.php │ │ │ ├── tabs.blade.php │ │ │ ├── tabs │ │ │ └── tab.blade.php │ │ │ ├── tags-input.blade.php │ │ │ ├── text-input.blade.php │ │ │ ├── textarea.blade.php │ │ │ ├── toggle-buttons │ │ │ ├── grouped.blade.php │ │ │ └── index.blade.php │ │ │ ├── toggle.blade.php │ │ │ ├── wizard.blade.php │ │ │ └── wizard │ │ │ └── step.blade.php │ ├── filament-infolists │ │ ├── component-container.blade.php │ │ └── components │ │ │ ├── actions.blade.php │ │ │ ├── actions │ │ │ └── action-container.blade.php │ │ │ ├── affixes.blade.php │ │ │ ├── color-entry.blade.php │ │ │ ├── entries │ │ │ └── placeholder.blade.php │ │ │ ├── entry-wrapper │ │ │ ├── helper-text.blade.php │ │ │ ├── hint.blade.php │ │ │ ├── index.blade.php │ │ │ └── label.blade.php │ │ │ ├── fieldset.blade.php │ │ │ ├── grid.blade.php │ │ │ ├── group.blade.php │ │ │ ├── icon-entry.blade.php │ │ │ ├── image-entry.blade.php │ │ │ ├── key-value-entry.blade.php │ │ │ ├── livewire.blade.php │ │ │ ├── repeatable-entry.blade.php │ │ │ ├── section.blade.php │ │ │ ├── split.blade.php │ │ │ ├── tabs.blade.php │ │ │ ├── tabs │ │ │ └── tab.blade.php │ │ │ └── text-entry.blade.php │ ├── filament-notifications │ │ ├── components │ │ │ ├── actions.blade.php │ │ │ ├── body.blade.php │ │ │ ├── close-button.blade.php │ │ │ ├── database │ │ │ │ ├── echo.blade.php │ │ │ │ ├── modal │ │ │ │ │ ├── actions.blade.php │ │ │ │ │ ├── heading.blade.php │ │ │ │ │ └── index.blade.php │ │ │ │ └── trigger.blade.php │ │ │ ├── date.blade.php │ │ │ ├── echo.blade.php │ │ │ ├── icon.blade.php │ │ │ ├── notification.blade.php │ │ │ └── title.blade.php │ │ ├── database-notifications.blade.php │ │ ├── notification.blade.php │ │ └── notifications.blade.php │ ├── filament-panels │ │ ├── components │ │ │ ├── avatar │ │ │ │ ├── tenant.blade.php │ │ │ │ └── user.blade.php │ │ │ ├── form │ │ │ │ ├── actions.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── global-search │ │ │ │ ├── actions.blade.php │ │ │ │ ├── field.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ ├── no-results-message.blade.php │ │ │ │ ├── result-group.blade.php │ │ │ │ ├── result.blade.php │ │ │ │ └── results-container.blade.php │ │ │ ├── header │ │ │ │ ├── index.blade.php │ │ │ │ └── simple.blade.php │ │ │ ├── layout │ │ │ │ ├── base.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── simple.blade.php │ │ │ ├── logo.blade.php │ │ │ ├── page │ │ │ │ ├── index.blade.php │ │ │ │ ├── simple.blade.php │ │ │ │ ├── sub-navigation │ │ │ │ │ ├── select.blade.php │ │ │ │ │ ├── sidebar.blade.php │ │ │ │ │ └── tabs.blade.php │ │ │ │ └── unsaved-data-changes-alert.blade.php │ │ │ ├── resources │ │ │ │ ├── relation-managers.blade.php │ │ │ │ └── tabs.blade.php │ │ │ ├── sidebar │ │ │ │ ├── group.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── item.blade.php │ │ │ ├── tenant-menu.blade.php │ │ │ ├── theme-switcher │ │ │ │ ├── button.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── topbar │ │ │ │ ├── database-notifications-trigger.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── item.blade.php │ │ │ ├── unsaved-action-changes-alert.blade.php │ │ │ └── user-menu.blade.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.blade.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.blade.php │ │ │ │ ├── login.blade.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.blade.php │ │ │ │ │ └── reset-password.blade.php │ │ │ │ └── register.blade.php │ │ │ ├── dashboard.blade.php │ │ │ └── tenancy │ │ │ │ ├── edit-tenant-profile.blade.php │ │ │ │ └── register-tenant.blade.php │ │ ├── resources │ │ │ ├── pages │ │ │ │ ├── create-record.blade.php │ │ │ │ ├── edit-record.blade.php │ │ │ │ ├── list-records.blade.php │ │ │ │ ├── manage-related-records.blade.php │ │ │ │ └── view-record.blade.php │ │ │ └── relation-manager.blade.php │ │ └── widgets │ │ │ ├── account-widget.blade.php │ │ │ └── filament-info-widget.blade.php │ ├── filament-tables │ │ ├── columns │ │ │ ├── checkbox-column.blade.php │ │ │ ├── color-column.blade.php │ │ │ ├── icon-column.blade.php │ │ │ ├── image-column.blade.php │ │ │ ├── layout │ │ │ │ ├── grid.blade.php │ │ │ │ ├── panel.blade.php │ │ │ │ ├── split.blade.php │ │ │ │ └── stack.blade.php │ │ │ ├── select-column.blade.php │ │ │ ├── summaries │ │ │ │ ├── icon-count.blade.php │ │ │ │ ├── range.blade.php │ │ │ │ ├── text.blade.php │ │ │ │ └── values.blade.php │ │ │ ├── text-column.blade.php │ │ │ ├── text-input-column.blade.php │ │ │ └── toggle-column.blade.php │ │ ├── components │ │ │ ├── actions.blade.php │ │ │ ├── actions │ │ │ │ └── cell.blade.php │ │ │ ├── cell.blade.php │ │ │ ├── column-toggle │ │ │ │ └── dropdown.blade.php │ │ │ ├── columns │ │ │ │ ├── column.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ └── placeholder.blade.php │ │ │ ├── container.blade.php │ │ │ ├── empty-state │ │ │ │ ├── description.blade.php │ │ │ │ ├── heading.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── filters │ │ │ │ ├── dialog.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── indicators.blade.php │ │ │ ├── group │ │ │ │ └── header.blade.php │ │ │ ├── groups.blade.php │ │ │ ├── header-cell.blade.php │ │ │ ├── header.blade.php │ │ │ ├── reorder │ │ │ │ ├── cell.blade.php │ │ │ │ ├── handle.blade.php │ │ │ │ └── indicator.blade.php │ │ │ ├── row.blade.php │ │ │ ├── search-field.blade.php │ │ │ ├── selection │ │ │ │ ├── cell.blade.php │ │ │ │ ├── checkbox.blade.php │ │ │ │ ├── group-cell.blade.php │ │ │ │ ├── group-checkbox.blade.php │ │ │ │ └── indicator.blade.php │ │ │ ├── summary │ │ │ │ ├── header-cell.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── row.blade.php │ │ │ └── table.blade.php │ │ └── index.blade.php │ ├── filament-versions │ │ ├── footer-widget.blade.php │ │ ├── sidebar-widget.blade.php │ │ └── widget.blade.php │ ├── filament-widgets │ │ ├── chart-widget.blade.php │ │ ├── components │ │ │ ├── widget.blade.php │ │ │ └── widgets.blade.php │ │ ├── stats-overview-widget.blade.php │ │ ├── stats-overview-widget │ │ │ └── stat.blade.php │ │ └── table-widget.blade.php │ ├── filament │ │ ├── assets.blade.php │ │ └── components │ │ │ ├── actions.blade.php │ │ │ ├── avatar.blade.php │ │ │ ├── badge.blade.php │ │ │ ├── breadcrumbs.blade.php │ │ │ ├── button │ │ │ ├── group.blade.php │ │ │ └── index.blade.php │ │ │ ├── card.blade.php │ │ │ ├── dropdown │ │ │ ├── header.blade.php │ │ │ ├── index.blade.php │ │ │ └── list │ │ │ │ ├── index.blade.php │ │ │ │ └── item.blade.php │ │ │ ├── fieldset.blade.php │ │ │ ├── grid │ │ │ ├── column.blade.php │ │ │ └── index.blade.php │ │ │ ├── icon-button.blade.php │ │ │ ├── icon.blade.php │ │ │ ├── input │ │ │ ├── checkbox.blade.php │ │ │ ├── index.blade.php │ │ │ ├── radio.blade.php │ │ │ ├── select.blade.php │ │ │ └── wrapper.blade.php │ │ │ ├── link.blade.php │ │ │ ├── loading-indicator.blade.php │ │ │ ├── loading-section.blade.php │ │ │ ├── modal │ │ │ ├── description.blade.php │ │ │ ├── heading.blade.php │ │ │ └── index.blade.php │ │ │ ├── pagination │ │ │ ├── index.blade.php │ │ │ └── item.blade.php │ │ │ ├── section │ │ │ ├── description.blade.php │ │ │ ├── heading.blade.php │ │ │ └── index.blade.php │ │ │ └── tabs │ │ │ ├── index.blade.php │ │ │ └── item.blade.php │ ├── zeus-matrix-choice │ │ └── components │ │ │ └── matrix-choice.blade.php │ └── zeus │ │ ├── components │ │ └── app.blade.php │ │ └── themes │ │ └── zeus │ │ └── sky │ │ └── post.blade.php │ ├── welcome-all.blade.php │ ├── welcome-another.blade.php │ ├── welcome-daisy.blade.php │ ├── welcome.blade.php │ └── zeus │ └── fields │ └── car.blade.php ├── routes ├── auth.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 4 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [*.json] 18 | indent_size = 4 19 | 20 | [docker-compose.yml] 21 | indent_size = 4 22 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: atmonshi 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | /vendor/.idea 7 | /bootstrap/cache 8 | .env 9 | .env.backup 10 | .phpunit.result.cache 11 | docker-compose.override.yml 12 | Homestead.json 13 | Homestead.yaml 14 | npm-debug.log 15 | auth.json 16 | yarn-error.log 17 | /.idea 18 | /.vscode 19 | /pkg 20 | .DS_Store 21 | /packages 22 | /prod 23 | -------------------------------------------------------------------------------- /app/DefaultPathGenerator.php: -------------------------------------------------------------------------------- 1 | belongsTo(Compeny::class); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Models/Compeny.php: -------------------------------------------------------------------------------- 1 | hasMany(Car::class); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/Models/Curator.php: -------------------------------------------------------------------------------- 1 | 'array', 14 | ]; 15 | } 16 | -------------------------------------------------------------------------------- /app/Models/Guests/SelectTreeBlog.php: -------------------------------------------------------------------------------- 1 | belongsToMany(SelectTreeCategory::class); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Models/Guests/SelectTreeCategory.php: -------------------------------------------------------------------------------- 1 | hasMany(SelectTreeCategory::class); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Models/Mason.php: -------------------------------------------------------------------------------- 1 | 'array', 11 | ]; 12 | 13 | protected $guarded = []; 14 | } 15 | -------------------------------------------------------------------------------- /app/Models/Media.php: -------------------------------------------------------------------------------- 1 | */ 10 | use HasFactory; 11 | } 12 | -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- 1 | handleCommand(new ArgvInput); 14 | 15 | exit($status); 16 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'local' => [ 7 | 'driver' => 'local', 8 | 'root' => storage_path('app'), 9 | ], 10 | ], 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- 1 | env('LOG_DEPRECATIONS_CHANNEL', 'null'), 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /config/recently.php: -------------------------------------------------------------------------------- 1 | App\Models\User::class, 6 | 'max_items' => 20, 7 | 'width' => 'xs', 8 | 'global_search' => true, 9 | 'menu' => true, 10 | 'icon' => 'heroicon-o-arrow-uturn-left', 11 | ]; 12 | -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'domain' => env('MAILGUN_DOMAIN'), 7 | 'secret' => env('MAILGUN_SECRET'), 8 | 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), 9 | ], 10 | 11 | ]; 12 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/CarFactory.php: -------------------------------------------------------------------------------- 1 | $this->faker->name(), 13 | ]; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /database/factories/OfficeFactory.php: -------------------------------------------------------------------------------- 1 | $this->faker->words(3, true), 16 | 'slug' => $this->faker->slug(5), 17 | ]; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /database/factories/OperationsFactory.php: -------------------------------------------------------------------------------- 1 | count(10) 14 | ->create(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /database/seeders/CompenySeeder.php: -------------------------------------------------------------------------------- 1 | count(10) 18 | ->has(Car::factory()->count(3)) 19 | ->create(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /database/seeders/Concerns/HasFaker.php: -------------------------------------------------------------------------------- 1 | faker = Container::getInstance() 15 | ->make(Generator::class); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- 1 | count(5) 14 | ->create(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /lang/ar/auth.php: -------------------------------------------------------------------------------- 1 | 'بيانات الاعتماد هذه غير متطابقة مع البيانات المسجلة لدينا.', 7 | 'password' => 'كلمة المرور غير صحيحة.', 8 | 'throttle' => 'عدد كبير جدا من محاولات الدخول. يرجى المحاولة مرة أخرى بعد :seconds ثانية.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/ar/pagination.php: -------------------------------------------------------------------------------- 1 | 'التالي »', 7 | 'previous' => '« السابق', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/ar/passwords.php: -------------------------------------------------------------------------------- 1 | 'تمت إعادة تعيين كلمة المرور!', 7 | 'sent' => 'تم إرسال تفاصيل استعادة كلمة المرور الخاصة بك إلى بريدك الإلكتروني!', 8 | 'throttled' => 'الرجاء الانتظار قبل إعادة المحاولة.', 9 | 'token' => 'رمز استعادة كلمة المرور الذي أدخلته غير صحيح.', 10 | 'user' => 'لم يتم العثور على أيّ حسابٍ بهذا العنوان الإلكتروني.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/de/auth.php: -------------------------------------------------------------------------------- 1 | 'Diese Kombination aus Zugangsdaten wurde nicht in unserer Datenbank gefunden.', 7 | 'password' => 'Das Passwort ist falsch.', 8 | 'throttle' => 'Zu viele Loginversuche. Versuchen Sie es bitte in :seconds Sekunden nochmal.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/de/pagination.php: -------------------------------------------------------------------------------- 1 | 'Weiter »', 7 | 'previous' => '« Zurück', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/de/passwords.php: -------------------------------------------------------------------------------- 1 | 'Das Passwort wurde zurückgesetzt!', 7 | 'sent' => 'Passworterinnerung wurde gesendet!', 8 | 'throttled' => 'Bitte warten Sie, bevor Sie es erneut versuchen.', 9 | 'token' => 'Der Passwort-Wiederherstellungs-Schlüssel ist ungültig oder abgelaufen.', 10 | 'user' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- 1 | 'The password is incorrect.', 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | 'Your password has been reset!', 7 | 'sent' => 'We have emailed your password reset link!', 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/es/auth.php: -------------------------------------------------------------------------------- 1 | 'Estas credenciales no coinciden con nuestros registros.', 7 | 'password' => 'La contraseña es incorrecta.', 8 | 'throttle' => 'Demasiados intentos de acceso. Por favor intente nuevamente en :seconds segundos.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/es/pagination.php: -------------------------------------------------------------------------------- 1 | 'Siguiente »', 7 | 'previous' => '« Anterior', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/es/passwords.php: -------------------------------------------------------------------------------- 1 | 'Su contraseña ha sido restablecida.', 7 | 'sent' => 'Le hemos enviado por correo electrónico el enlace para restablecer su contraseña.', 8 | 'throttled' => 'Por favor espere antes de intentar de nuevo.', 9 | 'token' => 'El token de restablecimiento de contraseña es inválido.', 10 | 'user' => 'No encontramos ningún usuario con ese correo electrónico.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/fr/auth.php: -------------------------------------------------------------------------------- 1 | 'Ces identifiants ne correspondent pas à nos enregistrements.', 7 | 'password' => 'Le mot de passe est incorrect', 8 | 'throttle' => 'Tentatives de connexion trop nombreuses. Veuillez essayer de nouveau dans :seconds secondes.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/fr/pagination.php: -------------------------------------------------------------------------------- 1 | 'Suivant »', 7 | 'previous' => '« Précédent', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/fr/passwords.php: -------------------------------------------------------------------------------- 1 | 'Votre mot de passe a été réinitialisé !', 7 | 'sent' => 'Nous vous avons envoyé par email le lien de réinitialisation du mot de passe !', 8 | 'throttled' => 'Veuillez patienter avant de réessayer.', 9 | 'token' => 'Ce jeton de réinitialisation du mot de passe n\'est pas valide.', 10 | 'user' => 'Aucun utilisateur n\'a été trouvé avec cette adresse email.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/hu/auth.php: -------------------------------------------------------------------------------- 1 | 'Rossz email-jelszó páros.', 7 | 'password' => 'A(z) :attribute jelszónak kell, hogy legyen!', 8 | 'throttle' => 'Túl sok próbálkozás. Kérjük próbálja újra :seconds másodperc múlva.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/hu/pagination.php: -------------------------------------------------------------------------------- 1 | 'Következő »', 7 | 'previous' => '« Előző', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/hu/passwords.php: -------------------------------------------------------------------------------- 1 | 'Az új jelszó beállítva!', 7 | 'sent' => 'Jelszó-emlékeztető elküldve!', 8 | 'throttled' => 'Kérjük várjon, mielőtt újra megpróbálná.', 9 | 'token' => 'Ez az új jelszó generálásához tartozó token érvénytelen.', 10 | 'user' => 'Nem található felhasználó a megadott email címmel.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/id/auth.php: -------------------------------------------------------------------------------- 1 | 'Identitas tersebut tidak cocok dengan data kami.', 7 | 'password' => 'Kata sandi salah.', 8 | 'throttle' => 'Terlalu banyak upaya masuk. Silahkan coba lagi dalam :seconds detik.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/id/pagination.php: -------------------------------------------------------------------------------- 1 | 'Berikutnya »', 7 | 'previous' => '« Sebelumnya', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/id/passwords.php: -------------------------------------------------------------------------------- 1 | 'Kata sandi Anda sudah direset!', 7 | 'sent' => 'Kami sudah mengirim surel yang berisi tautan untuk mereset kata sandi Anda!', 8 | 'throttled' => 'Harap tunggu sebelum mencoba lagi.', 9 | 'token' => 'Token pengaturan ulang kata sandi tidak sah.', 10 | 'user' => 'Kami tidak dapat menemukan pengguna dengan alamat surel tersebut.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/it/auth.php: -------------------------------------------------------------------------------- 1 | 'Credenziali non valide.', 7 | 'password' => 'Il campo :attribute non è corretto.', 8 | 'throttle' => 'Troppi tentativi di accesso. Riprova tra :seconds secondi.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/it/pagination.php: -------------------------------------------------------------------------------- 1 | 'Successivo »', 7 | 'previous' => '« Precedente', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/it/passwords.php: -------------------------------------------------------------------------------- 1 | 'La password è stata reimpostata!', 7 | 'sent' => 'Ti abbiamo inviato una email con il link per il reset della password!', 8 | 'throttled' => 'Per favore, attendi prima di riprovare.', 9 | 'token' => 'Questo token di reset della password non è valido.', 10 | 'user' => 'Non riusciamo a trovare un utente con questo indirizzo email.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/ko/auth.php: -------------------------------------------------------------------------------- 1 | '제출된 인증 정보가 레코드와 일치하지 않습니다.', 7 | 'password' => '비밀번호가 잘못되었습니다.', 8 | 'throttle' => '너무 많은 로그인을 시도하였습니다. :seconds 초 후에 다시 시도하십시오.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/ko/pagination.php: -------------------------------------------------------------------------------- 1 | '다음 »', 7 | 'previous' => '« 이전', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/ko/passwords.php: -------------------------------------------------------------------------------- 1 | '비밀번호가 변경되었습니다!', 7 | 'sent' => '비밀번호 재설정 링크를 이메일로 전송했습니다!', 8 | 'throttled' => '잠시 후 다시 시도해주세요.', 9 | 'token' => '해당 비밀번호 재설정 토큰이 유효하지 않습니다.', 10 | 'user' => '해당 이메일을 사용하는 사용자를 찾을 수 없습니다.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/nl/auth.php: -------------------------------------------------------------------------------- 1 | 'Deze combinatie van e-mailadres en wachtwoord is niet geldig.', 7 | 'password' => 'Wachtwoord is onjuist.', 8 | 'throttle' => 'Te veel mislukte aanmeldpogingen. Probeer het nog eens over :seconds seconden.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/nl/pagination.php: -------------------------------------------------------------------------------- 1 | 'Volgende »', 7 | 'previous' => '« Vorige', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/nl/passwords.php: -------------------------------------------------------------------------------- 1 | 'Het wachtwoord van uw account is gewijzigd.', 7 | 'sent' => 'We hebben een e-mail verstuurd met instructies om een nieuw wachtwoord in te stellen.', 8 | 'throttled' => 'Gelieve even te wachten en het dan opnieuw te proberen.', 9 | 'token' => 'Dit wachtwoordhersteltoken is niet geldig.', 10 | 'user' => 'Geen gebruiker bekend met dit e-mailadres.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/pl/auth.php: -------------------------------------------------------------------------------- 1 | 'Błędny login lub hasło.', 7 | 'password' => 'Hasło jest nieprawidłowe.', 8 | 'throttle' => 'Za dużo nieudanych prób logowania. Proszę spróbować za :seconds sekund.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/pl/pagination.php: -------------------------------------------------------------------------------- 1 | 'Następna »', 7 | 'previous' => '« Poprzednia', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/pl/passwords.php: -------------------------------------------------------------------------------- 1 | 'Hasło zostało zresetowane!', 7 | 'sent' => 'Przypomnienie hasła zostało wysłane!', 8 | 'throttled' => 'Proszę zaczekać zanim spróbujesz ponownie.', 9 | 'token' => 'Token resetowania hasła jest nieprawidłowy.', 10 | 'user' => 'Nie znaleziono użytkownika z takim adresem e-mail.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/pt/auth.php: -------------------------------------------------------------------------------- 1 | 'As credenciais indicadas não coincidem com as registadas no sistema.', 7 | 'password' => 'A palavra-passe está errada.', 8 | 'throttle' => 'O número limite de tentativas de login foi atingido. Por favor tente novamente dentro de :seconds segundos.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/pt/pagination.php: -------------------------------------------------------------------------------- 1 | 'Próxima »', 7 | 'previous' => '« Anterior', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/pt/passwords.php: -------------------------------------------------------------------------------- 1 | 'A palavra-passe foi redefinida!', 7 | 'sent' => 'O lembrete para a palavra-passe foi enviado!', 8 | 'throttled' => 'Por favor aguarde, antes de tentar novamente.', 9 | 'token' => 'Este código de recuperação da palavra-passe é inválido.', 10 | 'user' => 'Não existe nenhum utilizador com o e-mail indicado.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/pt_BR/auth.php: -------------------------------------------------------------------------------- 1 | 'As credenciais indicadas não coincidem com as registadas no sistema.', 7 | 'password' => 'A palavra-passe está errada.', 8 | 'throttle' => 'O número limite de tentativas de login foi atingido. Por favor tente novamente dentro de :seconds segundos.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/pt_BR/pagination.php: -------------------------------------------------------------------------------- 1 | 'Próxima »', 7 | 'previous' => '« Anterior', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/pt_BR/passwords.php: -------------------------------------------------------------------------------- 1 | 'A palavra-passe foi redefinida!', 7 | 'sent' => 'O lembrete para a palavra-passe foi enviado!', 8 | 'throttled' => 'Por favor aguarde, antes de tentar novamente.', 9 | 'token' => 'Este código de recuperação da palavra-passe é inválido.', 10 | 'user' => 'Não existe nenhum utilizador com o e-mail indicado.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/pt_PT/auth.php: -------------------------------------------------------------------------------- 1 | 'As credenciais indicadas não coincidem com as registadas no sistema.', 7 | 'password' => 'A palavra-passe está errada.', 8 | 'throttle' => 'O número limite de tentativas de login foi atingido. Por favor tente novamente dentro de :seconds segundos.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/pt_PT/pagination.php: -------------------------------------------------------------------------------- 1 | 'Próxima »', 7 | 'previous' => '« Anterior', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/pt_PT/passwords.php: -------------------------------------------------------------------------------- 1 | 'A palavra-passe foi redefinida!', 7 | 'sent' => 'O lembrete para a palavra-passe foi enviado!', 8 | 'throttled' => 'Por favor aguarde, antes de tentar novamente.', 9 | 'token' => 'Este código de recuperação da palavra-passe é inválido.', 10 | 'user' => 'Não existe nenhum utilizador com o e-mail indicado.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/ru/auth.php: -------------------------------------------------------------------------------- 1 | 'Неверное имя пользователя или пароль.', 7 | 'password' => 'Некорректный пароль.', 8 | 'throttle' => 'Слишком много попыток входа. Пожалуйста, попробуйте ещё раз через :seconds секунд.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/ru/pagination.php: -------------------------------------------------------------------------------- 1 | 'Вперёд »', 7 | 'previous' => '« Назад', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/ru/passwords.php: -------------------------------------------------------------------------------- 1 | 'Ваш пароль был сброшен.', 7 | 'sent' => 'Ссылка на сброс пароля была отправлена.', 8 | 'throttled' => 'Пожалуйста, подождите перед повторной попыткой.', 9 | 'token' => 'Ошибочный код сброса пароля.', 10 | 'user' => 'Не удалось найти пользователя с указанным электронным адресом.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/tr/auth.php: -------------------------------------------------------------------------------- 1 | 'Bu kimlik bilgileri kayıtlarımızla eşleşmiyor.', 7 | 'password' => 'Parola geçersiz.', 8 | 'throttle' => 'Çok fazla giriş denemesi. :seconds saniye sonra lütfen tekrar deneyin.', 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/tr/pagination.php: -------------------------------------------------------------------------------- 1 | 'Sonrakiler »', 7 | 'previous' => '« Öncekiler', 8 | ]; 9 | -------------------------------------------------------------------------------- /lang/tr/passwords.php: -------------------------------------------------------------------------------- 1 | 'Parolanız sıfırlandı!', 7 | 'sent' => 'Parola sıfırlama bağlantınız e-posta ile gönderildi!', 8 | 'throttled' => 'Tekrar denemeden önce lütfen bekleyin.', 9 | 'token' => 'Parola sıfırlama kodu geçersiz.', 10 | 'user' => 'Bu e-posta adresi ile kayıtlı bir üye bulunamadı.', 11 | ]; 12 | -------------------------------------------------------------------------------- /lang/vendor/advanced-tables/ar/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/lang/vendor/advanced-tables/ar/.gitkeep -------------------------------------------------------------------------------- /lang/vendor/advanced-tables/en/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/lang/vendor/advanced-tables/en/.gitkeep -------------------------------------------------------------------------------- /lang/vendor/livewire-ui-spotlight/ar/spotlight.php: -------------------------------------------------------------------------------- 1 | 'مالذي تبحث عنه؟', 5 | ]; 6 | -------------------------------------------------------------------------------- /lang/vendor/livewire-ui-spotlight/en/spotlight.php: -------------------------------------------------------------------------------- 1 | 'What do you want to do?', 5 | ]; 6 | -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- 1 | parameters: 2 | 3 | paths: 4 | - app/ 5 | 6 | # Level 10 is the highest level 7 | level: 5 8 | 9 | # ignoreErrors: 10 | # - '#PHPDoc tag @var#' 11 | # 12 | # excludePaths: 13 | # - ./*/*/FileToBeExcluded.php -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "laravel", 3 | "rules": { 4 | "blank_line_before_statement": true, 5 | "concat_space": { 6 | "spacing": "one" 7 | }, 8 | "method_argument_space": true, 9 | "single_trait_insert_per_statement": true, 10 | "types_spaces": { 11 | "space": "single" 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | plugins: { 3 | 'tailwindcss/nesting': 'postcss-nesting', 4 | tailwindcss: {}, 5 | autoprefixer: {}, 6 | }, 7 | } 8 | -------------------------------------------------------------------------------- /public/boredom/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/boredom/1.png -------------------------------------------------------------------------------- /public/boredom/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/boredom/2.png -------------------------------------------------------------------------------- /public/boredom/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/boredom/3.png -------------------------------------------------------------------------------- /public/boredom/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/boredom/4.png -------------------------------------------------------------------------------- /public/boredom/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/boredom/5.png -------------------------------------------------------------------------------- /public/boredom/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/boredom/6.png -------------------------------------------------------------------------------- /public/boredom/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/boredom/7.png -------------------------------------------------------------------------------- /public/boredom/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/boredom/8.png -------------------------------------------------------------------------------- /public/build/assets/ae-Cw7Z85ds.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/build/assets/am-DMt4_dd4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/at-DEs-d2vT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/build/assets/bd-BF9t1-60.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/build/assets/be-CQHhekKF.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/bf-YclsoDuF.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/bg-36KQGGCT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/bh-BQqEGq6F.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/build/assets/bl-Cbl3-_fk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/bq-BYpdxEeT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/bw-CmvcZF16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/cd-D5P_nhlb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/ch-sfriZoF1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/build/assets/ci-C8Q8IYTn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/co-DV591zMm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/cp-C16-Rq6i.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/cr-BlYVN-_Q.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/cz-WWBC5Aeb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/de-Cuu9Ae9f.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/dk-DmS9BCZB.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/dz-Dytc1TFu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/ee-DWx48TGL.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/es-ct-CVyhLp7O.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/build/assets/es-pv-BrAvXTGu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/fi-DWUIkfjL.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/fr-izgDhMyD.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/ga-BklUhLH_.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/gb-eng-C8iDhGHN.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/gb-sct-fW5q01ek.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/build/assets/gf-DrFBivB-.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/gh-CS3UqJbz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/build/assets/gl-CHaBnMib.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/build/assets/gn-1dJNy9oQ.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/gp-CxWsRt0L.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/hu-7Q5wwIIi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/ic-CSo4d8tH.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/id-DiSP6Fmm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/build/assets/ie-ChAXClx3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/it-Br7q0Zh6.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/jm-Cnv59OoQ.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/build/assets/lc-DTHoqiP_.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/build/assets/lt-DoukV-Sm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/lu-CiYX1xIO.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/lv-C-KfY8Yc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/build/assets/ma-BTRNTRUj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/build/assets/mc-PK078JHl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/build/assets/mf-Cqov9b_F.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/mg-C168LHXW.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/mk-D9SIMr-a.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/ml-DVf6ujpi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/mq-8sqmH3J6.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/mr-BGnUZZDB.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/build/assets/mu-mcq7cUFl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/build/assets/mv-BynAllfM.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/build/assets/ne-B1jPOYkl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/build/assets/ng-su4NM9If.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/build/assets/nl-B1kG68CJ.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/no-qf2JPO73.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/pl-o38JROoc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/build/assets/pm-CemH-yXo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/qa-rGT-VRyR.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/build/assets/re-Bem26mMr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/ro-CoSeqKY1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/ru-9AQIVTNm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/sc-CRNsSLg9.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/se-XrM-r19S.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/build/assets/sj-BFFEGknm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/sl-DxLJY5vJ.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/sn-S8ipNF1U.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/build/assets/sr-Co7OKBh3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/build/assets/ss-BqjdRDr3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/build/assets/sy-DA3zSpGw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/build/assets/td-DSDAe2XA.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/th-tzq84hgd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/tn-Cg7K2F6s.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/build/assets/to-D8uVsoxb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/build/assets/tt-Cyw4ydH4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/ua-Bq0XgQqK.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/build/assets/vc-CGEau3PJ.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/build/assets/wf-BC-g0f0O.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/build/assets/xx-zm_JmrXl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/build/assets/ye-rye0K4Zu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/build/assets/yt-Cy2KL3x0.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/css/arbermustafa/filament-locationpickr-field/locationpickr.css: -------------------------------------------------------------------------------- 1 | .locationPickr{min-height:30vh;z-index:1!important}div.location-div{margin:10px}button.location-button{background:#fff;display:table-cell;border:0;margin:0;padding:0 17px;cursor:pointer;text-align:center;height:40px;vertical-align:middle;color:#565656;font-family:Roboto,Arial,sans-serif;font-size:18px;border-radius:2px;box-shadow:0 1px 4px -1px #0000004d;min-width:66px}button.location-button:hover{background:#ebebeb padding-box;color:#000} -------------------------------------------------------------------------------- /public/css/awcodes/filament-badgeable-column/filament-badgeable-column.css: -------------------------------------------------------------------------------- 1 | .badgeable-column-badge .truncate{overflow: visible !important;} 2 | -------------------------------------------------------------------------------- /public/css/lara-zeus/plugin.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /**! 2 | * Sortable 1.15.0 3 | * @author RubaXa 4 | * @author owenm 5 | * @license MIT 6 | */ 7 | -------------------------------------------------------------------------------- /public/css/njxqlus/filament-progressbar/filament-progressbar-styles.css: -------------------------------------------------------------------------------- 1 | :root{--filament-progressbar-color:#29d}.pace{-webkit-pointer-events:none;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.pace-inactive{display:none}.pace .pace-progress{background:var(--filament-progressbar-color);position:fixed;z-index:2000;top:0;right:100%;width:100%;height:3px} -------------------------------------------------------------------------------- /public/css/zeus/bolt-pro/image-picker.css: -------------------------------------------------------------------------------- 1 | .headings-component:is(h1,h2,h3,h4,h5,h6){font-weight:700;letter-spacing:-.025em;line-height:1.1}h1.headings-component{font-size:2rem}h2.headings-component{font-size:1.75rem}h3.headings-component{font-size:1.5rem}h4.headings-component{font-size:1.25rem}h5.headings-component,h6.headings-component{font-size:1rem} -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/flags/4x3/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/flags/4x3/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/flags/4x3/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/flags/4x3/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/bh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/flags/4x3/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/flags/4x3/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/cp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/es-ct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/flags/4x3/es-pv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/flags/4x3/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/flags/4x3/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/flags/4x3/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/ic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/flags/4x3/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/flags/4x3/lc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/flags/4x3/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/flags/4x3/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/flags/4x3/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/flags/4x3/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/mr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/flags/4x3/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/flags/4x3/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/flags/4x3/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/flags/4x3/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/flags/4x3/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/flags/4x3/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/flags/4x3/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/sc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/se.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/flags/4x3/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/sn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/flags/4x3/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/flags/4x3/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/flags/4x3/sy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/flags/4x3/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/tn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/flags/4x3/to.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/flags/4x3/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/flags/4x3/vc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/flags/4x3/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/flags/4x3/xx.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/flags/4x3/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/flags/4x3/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/images/batman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/batman.png -------------------------------------------------------------------------------- /public/images/harley-quinn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/harley-quinn.png -------------------------------------------------------------------------------- /public/images/joker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/joker.png -------------------------------------------------------------------------------- /public/images/poison-ivy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/poison-ivy.png -------------------------------------------------------------------------------- /public/images/robin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/robin.png -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/01.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/02.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/03.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/04.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/05.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/06.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/07.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/08.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/09.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/10.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/11.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/12.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/13.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/14.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/15.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/16.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/17.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/18.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/19.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/20.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/21.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/22.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/23.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/24.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/25.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/26.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/27.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/28.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/29.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/30.jpg -------------------------------------------------------------------------------- /public/images/swisnl/filament-backgrounds/curated-by-swis/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/swisnl/filament-backgrounds/curated-by-swis/31.jpg -------------------------------------------------------------------------------- /public/images/zeus-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/images/zeus-logo.png -------------------------------------------------------------------------------- /public/js/300.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * PhotoSwipe 5.4.4 - https://photoswipe.com 3 | * (c) 2024 Dmytro Semenov 4 | */ 5 | -------------------------------------------------------------------------------- /public/js/826.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * PhotoSwipe 5.3.9 - https://photoswipe.com 3 | * (c) 2023 Dmytro Semenov 4 | */ 5 | -------------------------------------------------------------------------------- /public/js/another-portfolio.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * PhotoSwipe Lightbox 5.4.4 - https://photoswipe.com 3 | * (c) 2024 Dmytro Semenov 4 | */ 5 | -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/413e685d5df6af65fef5eb987226a8e467e5aade/public/js/app.js -------------------------------------------------------------------------------- /public/js/app.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * focus-trap 6.6.1 3 | * @license MIT, https://github.com/focus-trap/focus-trap/blob/master/LICENSE 4 | */ 5 | -------------------------------------------------------------------------------- /public/js/filament/forms/forms.js: -------------------------------------------------------------------------------- 1 | (()=>{})(); 2 | -------------------------------------------------------------------------------- /public/js/filament/tables/tables.js: -------------------------------------------------------------------------------- 1 | (()=>{})(); 2 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /public/vendor/zeus-artemis/js/826.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * PhotoSwipe 5.3.9 - https://photoswipe.com 3 | * (c) 2023 Dmytro Semenov 4 | */ 5 | -------------------------------------------------------------------------------- /public/vendor/zeus-artemis/js/another-portfolio.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * PhotoSwipe 5.4.4 - https://photoswipe.com 3 | * (c) 2024 Dmytro Semenov 4 | */ 5 | 6 | /*! 7 | * PhotoSwipe Lightbox 5.4.4 - https://photoswipe.com 8 | * (c) 2024 Dmytro Semenov 9 | */ 10 | -------------------------------------------------------------------------------- /public/vendor/zeus/plugin.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /**! 2 | * Sortable 1.15.3 3 | * @author RubaXa 4 | * @author owenm 5 | * @license MIT 6 | */ 7 | -------------------------------------------------------------------------------- /resources/css/filament/guests/theme.css: -------------------------------------------------------------------------------- 1 | @import '/vendor/filament/filament/resources/css/theme.css'; 2 | @import '/node_modules/cropperjs/dist/cropper.css'; 3 | @import 'tippy.js/dist/tippy.css'; 4 | @import '/vendor/awcodes/filament-table-repeater/resources/css/plugin.css'; 5 | @import '/vendor/awcodes/mason/resources/css/index.css'; 6 | @import '/vendor/awcodes/richie/resources/css/index.css'; 7 | 8 | @config 'tailwind.config.js'; 9 | -------------------------------------------------------------------------------- /resources/flags/4x3/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/flags/4x3/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/flags/4x3/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/flags/4x3/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/bh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/flags/4x3/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /resources/flags/4x3/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/cp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/es-ct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/flags/4x3/es-pv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/flags/4x3/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/flags/4x3/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/flags/4x3/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/ic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/flags/4x3/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/flags/4x3/lc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/flags/4x3/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/flags/4x3/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/flags/4x3/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/flags/4x3/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/mr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/flags/4x3/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/flags/4x3/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/flags/4x3/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/flags/4x3/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/flags/4x3/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/flags/4x3/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/flags/4x3/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/sc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/se.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/flags/4x3/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/sn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/flags/4x3/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/flags/4x3/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/flags/4x3/sy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/flags/4x3/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/tn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/flags/4x3/to.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /resources/flags/4x3/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/flags/4x3/vc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/flags/4x3/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/flags/4x3/xx.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/flags/4x3/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/flags/4x3/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/js/another-portfolio.js: -------------------------------------------------------------------------------- 1 | import PhotoSwipeLightbox from 'photoswipe/lightbox'; 2 | 3 | const lightbox = new PhotoSwipeLightbox({ 4 | mainClass: 'pswp--custom-icon-colors', 5 | gallery: '#library-images-gallery', 6 | showHideAnimationType: 'fade', 7 | children: 'a', 8 | pswpModule: () => import('photoswipe') 9 | }); 10 | lightbox.init(); 11 | -------------------------------------------------------------------------------- /resources/views/components/auth-session-status.blade.php: -------------------------------------------------------------------------------- 1 | @props(['status']) 2 | 3 | @if ($status) 4 |
merge(['class' => 'font-medium text-sm text-green-600 dark:text-green-400']) }}> 5 | {{ $status }} 6 |
7 | @endif 8 | -------------------------------------------------------------------------------- /resources/views/components/danger-button.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- 1 | merge(['class' => 'block w-full px-4 py-2 text-left text-sm leading-5 text-gray-700 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800 focus:outline-none focus:bg-gray-100 dark:focus:bg-gray-800 transition duration-150 ease-in-out']) }}>{{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- 1 | @props(['messages']) 2 | 3 | @if ($messages) 4 |
    merge(['class' => 'text-sm text-red-600 dark:text-red-400 space-y-1']) }}> 5 | @foreach ((array) $messages as $message) 6 |
  • {{ $message }}
  • 7 | @endforeach 8 |
9 | @endif 10 | -------------------------------------------------------------------------------- /resources/views/components/input-label.blade.php: -------------------------------------------------------------------------------- 1 | @props(['value']) 2 | 3 | 6 | -------------------------------------------------------------------------------- /resources/views/components/item-daisy.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

{{ $title }}

4 |

{{ $desc }}

5 |
6 | {{ $btns }} 7 |
8 |
9 |
10 | -------------------------------------------------------------------------------- /resources/views/components/list/index.blade.php: -------------------------------------------------------------------------------- 1 |
    2 | {{ $slot }} 3 |
4 | -------------------------------------------------------------------------------- /resources/views/components/list/item.blade.php: -------------------------------------------------------------------------------- 1 |
  • 2 | 6 | {{ $slot }} 7 | 8 |
  • 9 | -------------------------------------------------------------------------------- /resources/views/components/text-input.blade.php: -------------------------------------------------------------------------------- 1 | @props(['disabled' => false]) 2 | 3 | merge(['class' => 'border-gray-300 dark:border-gray-700 dark:bg-gray-900 dark:text-gray-300 focus:border-indigo-500 dark:focus:border-indigo-600 focus:ring-indigo-500 dark:focus:ring-indigo-600 rounded-md shadow-sm']) !!}> 4 | -------------------------------------------------------------------------------- /resources/views/errors/401.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::minimal') 2 | 3 | @section('title', __('Unauthorized')) 4 | @section('code', '401') 5 | @section('message', __('Unauthorized')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/402.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::minimal') 2 | 3 | @section('title', __('Payment Required')) 4 | @section('code', '402') 5 | @section('message', __('Payment Required')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::minimal') 2 | 3 | @section('title', __('Forbidden')) 4 | @section('code', '403') 5 | @section('message', __($exception->getMessage() ?: 'Forbidden')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::minimal') 2 | 3 | @section('title', __('Not Found')) 4 | @section('code', '404') 5 | @section('message', __('Not Found')) 6 | @section('image', 'svg/undraw_page_not_found_su7k.svg') 7 | -------------------------------------------------------------------------------- /resources/views/errors/419.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::minimal') 2 | 3 | @section('title', __('Page Expired')) 4 | @section('code', '419') 5 | @section('message', __('Page Expired')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/429.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::minimal') 2 | 3 | @section('title', __('Too Many Requests')) 4 | @section('code', '429') 5 | @section('message', __('Too Many Requests')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::minimal') 2 | 3 | @section('title', __('Server Error')) 4 | @section('code', '500') 5 | @section('message') 6 |
    Error Code: {{ app('sentry')->getLastEventId() }}
    7 | {{ __('Server Error') }} 8 |
    9 |

    10 | will be fixed soon 11 |

    12 | @endsection 13 | -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::minimal') 2 | 3 | @section('title', __('Service Unavailable')) 4 | @section('code', '503') 5 | @section('message', __('Service Unavailable')) 6 | -------------------------------------------------------------------------------- /resources/views/filament/clusters/components-demo/pages/athena.blade.php: -------------------------------------------------------------------------------- 1 | 2 | @livewire(\LaraZeus\Athena\Livewire\ShowService::class,[ 3 | 'service'=>\LaraZeus\Athena\Models\Service::where('slug', 'car-washer')->first() 4 | ], 'show-service' ) 5 | 6 | -------------------------------------------------------------------------------- /resources/views/filament/hooks/panel-switcher.blade.php: -------------------------------------------------------------------------------- 1 |
    2 | 3 |
    -------------------------------------------------------------------------------- /resources/views/filament/hooks/store.blade.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /resources/views/filament/logo.blade.php: -------------------------------------------------------------------------------- 1 |
    2 | Lara-zeus packages 3 | @zeusz 4 |
    5 | -------------------------------------------------------------------------------- /resources/views/filament/pages/bolt.blade.php: -------------------------------------------------------------------------------- 1 |
    2 | 7 |
    8 | -------------------------------------------------------------------------------- /resources/views/filament/pages/embed.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | {{ $this->openAction }} 5 |
    6 | 7 | 8 | 9 | {{ $this->form }} 10 |
    11 | -------------------------------------------------------------------------------- /resources/views/filament/pages/inline-chart.blade.php: -------------------------------------------------------------------------------- 1 | 2 | {{ $this->table }} 3 | 4 | -------------------------------------------------------------------------------- /resources/views/filament/pages/list-group.blade.php: -------------------------------------------------------------------------------- 1 | 2 | {{ $this->infolist }} 3 | 4 | -------------------------------------------------------------------------------- /resources/views/filament/pages/popover.blade.php: -------------------------------------------------------------------------------- 1 | 2 | {{ $this->table }} 3 | 4 |
    5 |

    using popover in infolist

    6 | {{ $this->infolist }} 7 |
    8 | 9 |
    10 |

    using popover in forms

    11 | {{ $this->form }} 12 |
    13 |
    14 | -------------------------------------------------------------------------------- /resources/views/filament/pages/qrcode.blade.php: -------------------------------------------------------------------------------- 1 | 2 | {{ $this->form }} 3 | 4 | -------------------------------------------------------------------------------- /resources/views/filament/pages/quantity.blade.php: -------------------------------------------------------------------------------- 1 | 2 | {{ $this->form }} 3 | 4 | -------------------------------------------------------------------------------- /resources/views/filament/pages/torch-filament.blade.php: -------------------------------------------------------------------------------- 1 | 2 | {{ $this->infolist }} 3 | 4 | -------------------------------------------------------------------------------- /resources/views/filament/pages/wizard.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
    3 |
    4 | {{ $this->form }} 5 | 6 | 9 |
    10 | 11 | 12 |
    13 |
    14 | -------------------------------------------------------------------------------- /resources/views/filament/widgets/bookmarks-widget.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 8 | {{ $this->bookmarkInfolist }} 9 | 10 | 11 | -------------------------------------------------------------------------------- /resources/views/livewire/like-post.blade.php: -------------------------------------------------------------------------------- 1 |
    2 | {{ $this->loveAction }} 3 |
    4 | -------------------------------------------------------------------------------- /resources/views/livewire/user-card.blade.php: -------------------------------------------------------------------------------- 1 |
    2 | {{ $record->id }}
    3 | {{ $record->name }}
    4 |
    5 | -------------------------------------------------------------------------------- /resources/views/mason/code.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'id' => null, 3 | 'code' => null, 4 | 'language' => null, 5 | ]) 6 | 7 |
    8 |
    9 |
    {{ html_entity_decode($code) }}
    10 |
    11 |
    12 | -------------------------------------------------------------------------------- /resources/views/mason/newsletter-signup.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'background_color' => 'primary', 3 | 'heading' => null, 4 | ]) 5 | 6 | newsletter-signup form will be here, someday -------------------------------------------------------------------------------- /resources/views/vendor/filament-actions/badge-action.blade.php: -------------------------------------------------------------------------------- 1 | 8 | {{ $getLabel() }} 9 | 10 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-actions/badge-group.blade.php: -------------------------------------------------------------------------------- 1 | 8 | {{ $getLabel() }} 9 | 10 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-actions/button-action.blade.php: -------------------------------------------------------------------------------- 1 | 12 | {{ $getLabel() }} 13 | 14 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-actions/button-group.blade.php: -------------------------------------------------------------------------------- 1 | 12 | {{ $getLabel() }} 13 | 14 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-actions/components/actions.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-actions/grouped-action.blade.php: -------------------------------------------------------------------------------- 1 | 9 | {{ $getLabel() }} 10 | 11 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-actions/grouped-group.blade.php: -------------------------------------------------------------------------------- 1 | 9 | {{ $getLabel() }} 10 | 11 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-actions/icon-button-action.blade.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-actions/icon-button-group.blade.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-actions/link-action.blade.php: -------------------------------------------------------------------------------- 1 | 10 | {{ $getLabel() }} 11 | 12 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-actions/link-group.blade.php: -------------------------------------------------------------------------------- 1 | 11 | {{ $getLabel() }} 12 | 13 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-forms/components/actions/action-container.blade.php: -------------------------------------------------------------------------------- 1 | @foreach ($getActions() as $action) 2 | @if ($action->isVisible()) 3 | {{ $action }} 4 | @endif 5 | @endforeach 6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-forms/components/field-wrapper/error-message.blade.php: -------------------------------------------------------------------------------- 1 |

    class([ 5 | 'fi-fo-field-wrp-error-message text-sm text-danger-600 dark:text-danger-400', 6 | ]) 7 | }} 8 | > 9 | {{ $slot }} 10 |

    11 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-forms/components/field-wrapper/helper-text.blade.php: -------------------------------------------------------------------------------- 1 |
    class(['fi-fo-field-wrp-helper-text break-words text-sm text-gray-500']) }} 3 | > 4 | {{ $slot }} 5 |
    6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-forms/components/grid.blade.php: -------------------------------------------------------------------------------- 1 |
    merge([ 5 | 'id' => $getId(), 6 | ], escape: false) 7 | ->merge($getExtraAttributes(), escape: false) 8 | }} 9 | > 10 | {{ $getChildComponentContainer() }} 11 |
    12 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-forms/components/group.blade.php: -------------------------------------------------------------------------------- 1 |
    merge([ 5 | 'id' => $getId(), 6 | ], escape: false) 7 | ->merge($getExtraAttributes(), escape: false) 8 | }} 9 | > 10 | {{ $getChildComponentContainer() }} 11 |
    12 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-forms/components/hidden.blade.php: -------------------------------------------------------------------------------- 1 | merge([ 5 | 'id' => $getId(), 6 | 'type' => 'hidden', 7 | $applyStateBindingModifiers('wire:model') => $getStatePath(), 8 | ], escape: false) 9 | ->merge($getExtraAttributes(), escape: false) 10 | ->class(['fi-fo-hidden']) 11 | }} 12 | /> 13 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-forms/components/rich-editor/toolbar/group.blade.php: -------------------------------------------------------------------------------- 1 |
    class(['flex gap-x-1']) }}> 2 | {{ $slot }} 3 |
    4 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-infolists/components/actions/action-container.blade.php: -------------------------------------------------------------------------------- 1 | @foreach ($getActions() as $action) 2 | @if ($action->isVisible()) 3 | {{ $action }} 4 | @endif 5 | @endforeach 6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-infolists/components/entries/placeholder.blade.php: -------------------------------------------------------------------------------- 1 |
    4 | {{ $slot }} 5 |
    6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-infolists/components/entry-wrapper/helper-text.blade.php: -------------------------------------------------------------------------------- 1 |
    class(['fi-in-entry-wrp-helper-text break-words text-sm text-gray-500']) }} 3 | > 4 | {{ $slot }} 5 |
    6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-infolists/components/entry-wrapper/label.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'prefix' => null, 3 | 'suffix' => null, 4 | ]) 5 | 6 |
    class(['fi-in-entry-wrp-label inline-flex items-center gap-x-3']) }} 8 | > 9 | {{ $prefix }} 10 | 11 | 12 | {{ $slot }} 13 | 14 | 15 | {{ $suffix }} 16 |
    17 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-infolists/components/grid.blade.php: -------------------------------------------------------------------------------- 1 |
    merge([ 5 | 'id' => $getId(), 6 | ], escape: false) 7 | ->merge($getExtraAttributes(), escape: false) 8 | }} 9 | > 10 | {{ $getChildComponentContainer() }} 11 |
    12 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-infolists/components/group.blade.php: -------------------------------------------------------------------------------- 1 |
    merge([ 5 | 'id' => $getId(), 6 | ], escape: false) 7 | ->merge($getExtraAttributes(), escape: false) 8 | }} 9 | > 10 | {{ $getChildComponentContainer() }} 11 |
    12 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-notifications/components/actions.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'actions', 3 | ]) 4 | 5 |
    class(['fi-no-notification-actions flex gap-x-3']) }} 7 | > 8 | @foreach ($actions as $action) 9 | {{ $action }} 10 | @endforeach 11 |
    12 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-notifications/components/body.blade.php: -------------------------------------------------------------------------------- 1 |
    class(['fi-no-notification-body overflow-hidden break-words text-sm text-gray-500 dark:text-gray-400']) }} 3 | > 4 | {{ $slot }} 5 |
    6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-notifications/components/close-button.blade.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-notifications/components/database/trigger.blade.php: -------------------------------------------------------------------------------- 1 |
    class(['inline-block']) }} 5 | > 6 | {{ $slot }} 7 |
    8 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-notifications/components/date.blade.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-notifications/components/title.blade.php: -------------------------------------------------------------------------------- 1 |

    class(['fi-no-notification-title text-sm font-medium text-gray-950 dark:text-white']) }} 3 | > 4 | {{ $slot }} 5 |

    6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-panels/components/avatar/user.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'user' => filament()->auth()->user(), 3 | ]) 4 | 5 | 13 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-panels/components/form/index.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'method' => 'post', 3 | ]) 4 | 5 |
    class(['fi-form grid gap-y-6']) }} 12 | > 13 | {{ $slot }} 14 |
    15 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-panels/components/global-search/actions.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'actions', 3 | ]) 4 | 5 |
    class('fi-global-search-result-actions mt-3 flex gap-x-3 px-4 pb-4') }} 7 | > 8 | @foreach ($actions as $action) 9 | @if ($action->isVisible()) 10 | {{ $action }} 11 | @endif 12 | @endforeach 13 |
    14 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-panels/components/global-search/no-results-message.blade.php: -------------------------------------------------------------------------------- 1 |

    class(['fi-global-search-no-results-message px-4 py-4 text-sm text-gray-500 dark:text-gray-400']) }} 3 | > 4 | {{ __('filament-panels::global-search.no_results_message') }} 5 |

    6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-panels/components/topbar/database-notifications-trigger.blade.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-panels/pages/tenancy/edit-tenant-profile.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ $this->form }} 4 | 5 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-panels/pages/tenancy/register-tenant.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ $this->form }} 4 | 5 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-tables/components/actions/cell.blade.php: -------------------------------------------------------------------------------- 1 | 7 |
    8 | {{ $slot }} 9 |
    10 |
    11 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-tables/components/cell.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'tag' => 'td', 3 | ]) 4 | 5 | <{{ $tag }} 6 | {{ $attributes->class(['fi-ta-cell p-0 first-of-type:ps-1 last-of-type:pe-1 sm:first-of-type:ps-3 sm:last-of-type:pe-3']) }} 7 | > 8 | {{ $slot }} 9 | 10 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-tables/components/columns/placeholder.blade.php: -------------------------------------------------------------------------------- 1 |
    4 | {{ $slot }} 5 |
    6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-tables/components/container.blade.php: -------------------------------------------------------------------------------- 1 |
    class([ 4 | 'fi-ta-ctn divide-y divide-gray-200 overflow-hidden rounded-xl bg-white shadow-sm ring-1 ring-gray-950/5 dark:divide-white/10 dark:bg-gray-900 dark:ring-white/10', 5 | ]) 6 | }} 7 | > 8 | {{ $slot }} 9 |
    10 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-tables/components/empty-state/description.blade.php: -------------------------------------------------------------------------------- 1 |

    class(['fi-ta-empty-state-description text-sm text-gray-500 dark:text-gray-400']) }} 3 | > 4 | {{ $slot }} 5 |

    6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-tables/components/empty-state/heading.blade.php: -------------------------------------------------------------------------------- 1 |

    class(['fi-ta-empty-state-heading text-base font-semibold leading-6 text-gray-950 dark:text-white']) }} 3 | > 4 | {{ $slot }} 5 |

    6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-tables/components/reorder/cell.blade.php: -------------------------------------------------------------------------------- 1 | 7 |
    8 | {{ $slot }} 9 |
    10 |
    11 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-tables/components/reorder/handle.blade.php: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-tables/components/selection/cell.blade.php: -------------------------------------------------------------------------------- 1 | 7 |
    8 | {{ $slot }} 9 |
    10 |
    11 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-tables/components/selection/group-cell.blade.php: -------------------------------------------------------------------------------- 1 | 7 |
    8 | {{ $slot }} 9 |
    10 |
    11 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-tables/components/summary/header-cell.blade.php: -------------------------------------------------------------------------------- 1 | class(['fi-ta-summary-header-cell px-3 py-2 text-sm font-medium text-gray-950 dark:text-white sm:first-of-type:ps-6']) }} 3 | > 4 | {{ $slot }} 5 | 6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-widgets/table-widget.blade.php: -------------------------------------------------------------------------------- 1 | 2 | {{ \Filament\Support\Facades\FilamentView::renderHook(\Filament\Widgets\View\WidgetsRenderHook::TABLE_WIDGET_START, scopes: static::class) }} 3 | 4 | {{ $this->table }} 5 | 6 | {{ \Filament\Support\Facades\FilamentView::renderHook(\Filament\Widgets\View\WidgetsRenderHook::TABLE_WIDGET_END, scopes: static::class) }} 7 | 8 | -------------------------------------------------------------------------------- /resources/views/vendor/filament/components/button/group.blade.php: -------------------------------------------------------------------------------- 1 |
    class([ 4 | 'fi-btn-group grid grid-flow-col rounded-lg shadow-sm ring-1 ring-gray-950/10 dark:ring-white/20', 5 | ]) 6 | }} 7 | > 8 | {{ $slot }} 9 |
    10 | -------------------------------------------------------------------------------- /resources/views/vendor/filament/components/card.blade.php: -------------------------------------------------------------------------------- 1 | 2 | {{ $slot }} 3 | 4 | -------------------------------------------------------------------------------- /resources/views/vendor/filament/components/dropdown/list/index.blade.php: -------------------------------------------------------------------------------- 1 |
    class(['fi-dropdown-list p-1']) }}> 2 | {{ $slot }} 3 |
    4 | -------------------------------------------------------------------------------- /resources/views/vendor/filament/components/modal/description.blade.php: -------------------------------------------------------------------------------- 1 |

    class(['fi-modal-description text-sm text-gray-500 dark:text-gray-400']) }} 3 | > 4 | {{ $slot }} 5 |

    6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament/components/modal/heading.blade.php: -------------------------------------------------------------------------------- 1 |

    class(['fi-modal-heading text-base font-semibold leading-6 text-gray-950 dark:text-white']) }} 3 | > 4 | {{ $slot }} 5 |

    6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament/components/section/description.blade.php: -------------------------------------------------------------------------------- 1 |

    class(['fi-section-header-description overflow-hidden break-words text-sm text-gray-500 dark:text-gray-400']) }} 3 | > 4 | {{ $slot }} 5 |

    6 | -------------------------------------------------------------------------------- /resources/views/vendor/filament/components/section/heading.blade.php: -------------------------------------------------------------------------------- 1 |

    class(['fi-section-header-heading text-base font-semibold leading-6 text-gray-950 dark:text-white']) }} 3 | > 4 | {{ $slot }} 5 |

    6 | -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- 1 | 2 | @include('welcome-all') 3 | {{--@if(session('current_theme') === 'another-portfolio') 4 | @include('welcome-another') 5 | @elseif(session('current_theme') === 'daisy') 6 | @include('welcome-daisy') 7 | @else 8 | @include('welcome-all') 9 | @endif--}} 10 | 11 | -------------------------------------------------------------------------------- /resources/views/zeus/fields/car.blade.php: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | {{ $car->name }} 5 | {{ $car->name }} 6 | 7 | 8 |
    -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | daily() 7 | ->at('4:00'); 8 | 9 | /*Schedule::command('php artisan seo:scan --quiet') 10 | ->weekly() 11 | ->at('5:00');*/ 12 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /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 | --------------------------------------------------------------------------------