├── .editorconfig ├── .env.example ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── app ├── Console │ └── Commands │ │ ├── CheckFilamentCompat.php │ │ ├── FilamentViewsDemo.php │ │ └── ResetDemoApp.php ├── CuratedBySwis.php ├── DefaultPathGenerator.php ├── Filament │ ├── Clusters │ │ └── ComponentsDemo.php │ ├── DemoWidgets │ │ └── MiniChart.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 ├── Models │ ├── Car.php │ ├── Compeny.php │ ├── Curator.php │ ├── Emoji.php │ ├── FilamentUser.php │ ├── Mason.php │ ├── Media.php │ ├── Package.php │ ├── Post.php │ └── User.php ├── Policies │ └── FormPolicy.php ├── Providers │ ├── AppServiceProvider.php │ └── Filament │ │ ├── AdminPanelProvider.php │ │ └── MyCustomVersionProvider.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_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.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-B5pn215e.css │ │ ├── another-portfolio-D2pnwEdv.js │ │ ├── ao-BqGWXiAn.svg │ │ ├── app-bWsH6sIW.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-BTbddvCX.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-MqHnNcJw.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 │ │ └── 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 │ ├── 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 │ ├── 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 ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/README.md -------------------------------------------------------------------------------- /app/CuratedBySwis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/CuratedBySwis.php -------------------------------------------------------------------------------- /app/DefaultPathGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/DefaultPathGenerator.php -------------------------------------------------------------------------------- /app/Filament/Pages/Accordion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/Accordion.php -------------------------------------------------------------------------------- /app/Filament/Pages/Athena.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/Athena.php -------------------------------------------------------------------------------- /app/Filament/Pages/Auth/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/Auth/Login.php -------------------------------------------------------------------------------- /app/Filament/Pages/DashboardPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/DashboardPage.php -------------------------------------------------------------------------------- /app/Filament/Pages/Embed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/Embed.php -------------------------------------------------------------------------------- /app/Filament/Pages/InlineChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/InlineChart.php -------------------------------------------------------------------------------- /app/Filament/Pages/ListGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/ListGroup.php -------------------------------------------------------------------------------- /app/Filament/Pages/Mark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/Mark.php -------------------------------------------------------------------------------- /app/Filament/Pages/Matrix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/Matrix.php -------------------------------------------------------------------------------- /app/Filament/Pages/Popover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/Popover.php -------------------------------------------------------------------------------- /app/Filament/Pages/QrCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/QrCode.php -------------------------------------------------------------------------------- /app/Filament/Pages/Quantity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/Quantity.php -------------------------------------------------------------------------------- /app/Filament/Pages/Statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/Statistics.php -------------------------------------------------------------------------------- /app/Filament/Pages/Tiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/Tiles.php -------------------------------------------------------------------------------- /app/Filament/Pages/TorchFilament.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Pages/TorchFilament.php -------------------------------------------------------------------------------- /app/Filament/Widgets/BlackFriday.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Widgets/BlackFriday.php -------------------------------------------------------------------------------- /app/Filament/Widgets/Feedback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Widgets/Feedback.php -------------------------------------------------------------------------------- /app/Filament/Widgets/LoveStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Filament/Widgets/LoveStats.php -------------------------------------------------------------------------------- /app/Forms/Components/Car.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Forms/Components/Car.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Http/Middleware/SetLang.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetTheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Http/Middleware/SetTheme.php -------------------------------------------------------------------------------- /app/Livewire/LikePost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Livewire/LikePost.php -------------------------------------------------------------------------------- /app/Livewire/UserCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Livewire/UserCard.php -------------------------------------------------------------------------------- /app/Models/Car.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Models/Car.php -------------------------------------------------------------------------------- /app/Models/Compeny.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Models/Compeny.php -------------------------------------------------------------------------------- /app/Models/Curator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Models/Curator.php -------------------------------------------------------------------------------- /app/Models/Emoji.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Models/Emoji.php -------------------------------------------------------------------------------- /app/Models/FilamentUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Models/FilamentUser.php -------------------------------------------------------------------------------- /app/Models/Mason.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Models/Mason.php -------------------------------------------------------------------------------- /app/Models/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Models/Media.php -------------------------------------------------------------------------------- /app/Models/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Models/Package.php -------------------------------------------------------------------------------- /app/Models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Models/Post.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Policies/FormPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Policies/FormPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /app/Zeus/CustomSchema/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Zeus/CustomSchema/Field.php -------------------------------------------------------------------------------- /app/Zeus/CustomSchema/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Zeus/CustomSchema/Form.php -------------------------------------------------------------------------------- /app/Zeus/CustomSchema/Section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Zeus/CustomSchema/Section.php -------------------------------------------------------------------------------- /app/Zeus/DataSources/Car.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Zeus/DataSources/Car.php -------------------------------------------------------------------------------- /app/Zeus/Fields/Car.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/app/Zeus/Fields/Car.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/composer-local.json -------------------------------------------------------------------------------- /composer-prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/composer-prod.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/composer.lock -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/app.php -------------------------------------------------------------------------------- /config/blade-icons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/blade-icons.php -------------------------------------------------------------------------------- /config/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/comments.php -------------------------------------------------------------------------------- /config/corcel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/corcel.php -------------------------------------------------------------------------------- /config/curator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/curator.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/database.php -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/debugbar.php -------------------------------------------------------------------------------- /config/filament-export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/filament-export.php -------------------------------------------------------------------------------- /config/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/filament-shield.php -------------------------------------------------------------------------------- /config/filament-umami-widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/filament-umami-widgets.php -------------------------------------------------------------------------------- /config/filament.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/filament.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/github.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/github.php -------------------------------------------------------------------------------- /config/icon-picker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/icon-picker.php -------------------------------------------------------------------------------- /config/laravelpackagist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/laravelpackagist.php -------------------------------------------------------------------------------- /config/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/livewire.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/media-library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/media-library.php -------------------------------------------------------------------------------- /config/querydetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/querydetector.php -------------------------------------------------------------------------------- /config/recently.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/recently.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/sentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/sentry.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/services.php -------------------------------------------------------------------------------- /config/torchlight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/torchlight.php -------------------------------------------------------------------------------- /config/zeus-athena.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/zeus-athena.php -------------------------------------------------------------------------------- /config/zeus-bolt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/zeus-bolt.php -------------------------------------------------------------------------------- /config/zeus-delia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/zeus-delia.php -------------------------------------------------------------------------------- /config/zeus-sky.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/zeus-sky.php -------------------------------------------------------------------------------- /config/zeus-thunder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/zeus-thunder.php -------------------------------------------------------------------------------- /config/zeus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/config/zeus.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/CarFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/factories/CarFactory.php -------------------------------------------------------------------------------- /database/factories/FieldFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/factories/FieldFactory.php -------------------------------------------------------------------------------- /database/factories/FormFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/factories/FormFactory.php -------------------------------------------------------------------------------- /database/factories/LetterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/factories/LetterFactory.php -------------------------------------------------------------------------------- /database/factories/MediaFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/factories/MediaFactory.php -------------------------------------------------------------------------------- /database/factories/OfficeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/factories/OfficeFactory.php -------------------------------------------------------------------------------- /database/factories/PostFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/factories/PostFactory.php -------------------------------------------------------------------------------- /database/factories/TicketFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/factories/TicketFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeders/AthenaSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/seeders/AthenaSeeder.php -------------------------------------------------------------------------------- /database/seeders/BoltProSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/seeders/BoltProSeeder.php -------------------------------------------------------------------------------- /database/seeders/BoltSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/seeders/BoltSeeder.php -------------------------------------------------------------------------------- /database/seeders/CarSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/seeders/CarSeeder.php -------------------------------------------------------------------------------- /database/seeders/CompenySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/seeders/CompenySeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/HermesSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/seeders/HermesSeeder.php -------------------------------------------------------------------------------- /database/seeders/RainSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/seeders/RainSeeder.php -------------------------------------------------------------------------------- /database/seeders/SkySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/seeders/SkySeeder.php -------------------------------------------------------------------------------- /database/seeders/ThunderSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/seeders/ThunderSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /database/seeders/WindSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/database/seeders/WindSeeder.php -------------------------------------------------------------------------------- /lang/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/ar.json -------------------------------------------------------------------------------- /lang/ar/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/ar/auth.php -------------------------------------------------------------------------------- /lang/ar/http-statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/ar/http-statuses.php -------------------------------------------------------------------------------- /lang/ar/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/ar/pagination.php -------------------------------------------------------------------------------- /lang/ar/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/ar/passwords.php -------------------------------------------------------------------------------- /lang/ar/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/ar/validation.php -------------------------------------------------------------------------------- /lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/de.json -------------------------------------------------------------------------------- /lang/de/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/de/auth.php -------------------------------------------------------------------------------- /lang/de/http-statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/de/http-statuses.php -------------------------------------------------------------------------------- /lang/de/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/de/pagination.php -------------------------------------------------------------------------------- /lang/de/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/de/passwords.php -------------------------------------------------------------------------------- /lang/de/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/de/validation.php -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/http-statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/lang/en/http-statuses.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | {})(); 2 | -------------------------------------------------------------------------------- /public/js/filament/tables/tables.js: -------------------------------------------------------------------------------- 1 | (()=>{})(); 2 | -------------------------------------------------------------------------------- /public/js/lara-zeus/qr/qr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/public/js/lara-zeus/qr/qr.js -------------------------------------------------------------------------------- /public/js/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/public/js/qrcode.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /public/vendor/zeus-athena/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/public/vendor/zeus-athena/app.js -------------------------------------------------------------------------------- /public/vendor/zeus/frontend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/public/vendor/zeus/frontend.css -------------------------------------------------------------------------------- /public/vendor/zeus/lara-zeus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/public/vendor/zeus/lara-zeus.css -------------------------------------------------------------------------------- /public/vendor/zeus/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/public/vendor/zeus/plugin.js -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/css/daisy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/css/daisy.css -------------------------------------------------------------------------------- /resources/css/filament/zeus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/css/filament/zeus.css -------------------------------------------------------------------------------- /resources/css/flag-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/css/flag-icons.css -------------------------------------------------------------------------------- /resources/css/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/css/tailwind.config.js -------------------------------------------------------------------------------- /resources/css/xp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/css/xp.css -------------------------------------------------------------------------------- /resources/flags/4x3/ac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ac.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ad.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ae.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ae.svg -------------------------------------------------------------------------------- /resources/flags/4x3/af.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/af.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ag.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ai.svg -------------------------------------------------------------------------------- /resources/flags/4x3/al.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/al.svg -------------------------------------------------------------------------------- /resources/flags/4x3/am.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/am.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ao.svg -------------------------------------------------------------------------------- /resources/flags/4x3/aq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/aq.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ar.svg -------------------------------------------------------------------------------- /resources/flags/4x3/arab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/arab.svg -------------------------------------------------------------------------------- /resources/flags/4x3/as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/as.svg -------------------------------------------------------------------------------- /resources/flags/4x3/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/at.svg -------------------------------------------------------------------------------- /resources/flags/4x3/au.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/au.svg -------------------------------------------------------------------------------- /resources/flags/4x3/aw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/aw.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ax.svg -------------------------------------------------------------------------------- /resources/flags/4x3/az.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/az.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ba.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bb.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bd.svg -------------------------------------------------------------------------------- /resources/flags/4x3/be.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/be.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bf.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bg.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bh.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bi.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bj.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bl.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bm.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bn.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bo.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bq.svg -------------------------------------------------------------------------------- /resources/flags/4x3/br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/br.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bs.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bt.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bv.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bw.svg -------------------------------------------------------------------------------- /resources/flags/4x3/by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/by.svg -------------------------------------------------------------------------------- /resources/flags/4x3/bz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/bz.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ca.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cc.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cd.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cefta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cefta.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cf.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cg.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ch.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ci.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ck.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cl.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cm.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cn.svg -------------------------------------------------------------------------------- /resources/flags/4x3/co.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/co.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cp.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cr.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cu.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cv.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cw.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cx.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cy.svg -------------------------------------------------------------------------------- /resources/flags/4x3/cz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/cz.svg -------------------------------------------------------------------------------- /resources/flags/4x3/de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/de.svg -------------------------------------------------------------------------------- /resources/flags/4x3/dg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/dg.svg -------------------------------------------------------------------------------- /resources/flags/4x3/dj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/dj.svg -------------------------------------------------------------------------------- /resources/flags/4x3/dk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/dk.svg -------------------------------------------------------------------------------- /resources/flags/4x3/dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/dm.svg -------------------------------------------------------------------------------- /resources/flags/4x3/do.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/do.svg -------------------------------------------------------------------------------- /resources/flags/4x3/dz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/dz.svg -------------------------------------------------------------------------------- /resources/flags/4x3/eac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/eac.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ec.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ee.svg -------------------------------------------------------------------------------- /resources/flags/4x3/eg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/eg.svg -------------------------------------------------------------------------------- /resources/flags/4x3/eh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/eh.svg -------------------------------------------------------------------------------- /resources/flags/4x3/er.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/er.svg -------------------------------------------------------------------------------- /resources/flags/4x3/es-ct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/es-ct.svg -------------------------------------------------------------------------------- /resources/flags/4x3/es-ga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/es-ga.svg -------------------------------------------------------------------------------- /resources/flags/4x3/es-pv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/es-pv.svg -------------------------------------------------------------------------------- /resources/flags/4x3/es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/es.svg -------------------------------------------------------------------------------- /resources/flags/4x3/et.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/et.svg -------------------------------------------------------------------------------- /resources/flags/4x3/eu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/eu.svg -------------------------------------------------------------------------------- /resources/flags/4x3/fi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/fi.svg -------------------------------------------------------------------------------- /resources/flags/4x3/fj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/fj.svg -------------------------------------------------------------------------------- /resources/flags/4x3/fk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/fk.svg -------------------------------------------------------------------------------- /resources/flags/4x3/fm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/fm.svg -------------------------------------------------------------------------------- /resources/flags/4x3/fo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/fo.svg -------------------------------------------------------------------------------- /resources/flags/4x3/fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/fr.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ga.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gb-eng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gb-eng.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gb-nir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gb-nir.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gb-sct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gb-sct.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gb-wls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gb-wls.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gb.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gd.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ge.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gf.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gg.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gh.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gi.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gl.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gm.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gn.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gp.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gq.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gr.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gs.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gt.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gu.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gw.svg -------------------------------------------------------------------------------- /resources/flags/4x3/gy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/gy.svg -------------------------------------------------------------------------------- /resources/flags/4x3/hk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/hk.svg -------------------------------------------------------------------------------- /resources/flags/4x3/hm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/hm.svg -------------------------------------------------------------------------------- /resources/flags/4x3/hn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/hn.svg -------------------------------------------------------------------------------- /resources/flags/4x3/hr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/hr.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ht.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ht.svg -------------------------------------------------------------------------------- /resources/flags/4x3/hu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/hu.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ic.svg -------------------------------------------------------------------------------- /resources/flags/4x3/id.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/id.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ie.svg -------------------------------------------------------------------------------- /resources/flags/4x3/il.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/il.svg -------------------------------------------------------------------------------- /resources/flags/4x3/im.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/im.svg -------------------------------------------------------------------------------- /resources/flags/4x3/in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/in.svg -------------------------------------------------------------------------------- /resources/flags/4x3/io.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/io.svg -------------------------------------------------------------------------------- /resources/flags/4x3/iq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/iq.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ir.svg -------------------------------------------------------------------------------- /resources/flags/4x3/is.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/is.svg -------------------------------------------------------------------------------- /resources/flags/4x3/it.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/it.svg -------------------------------------------------------------------------------- /resources/flags/4x3/je.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/je.svg -------------------------------------------------------------------------------- /resources/flags/4x3/jm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/jm.svg -------------------------------------------------------------------------------- /resources/flags/4x3/jo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/jo.svg -------------------------------------------------------------------------------- /resources/flags/4x3/jp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/jp.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ke.svg -------------------------------------------------------------------------------- /resources/flags/4x3/kg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/kg.svg -------------------------------------------------------------------------------- /resources/flags/4x3/kh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/kh.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ki.svg -------------------------------------------------------------------------------- /resources/flags/4x3/km.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/km.svg -------------------------------------------------------------------------------- /resources/flags/4x3/kn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/kn.svg -------------------------------------------------------------------------------- /resources/flags/4x3/kp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/kp.svg -------------------------------------------------------------------------------- /resources/flags/4x3/kr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/kr.svg -------------------------------------------------------------------------------- /resources/flags/4x3/kw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/kw.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ky.svg -------------------------------------------------------------------------------- /resources/flags/4x3/kz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/kz.svg -------------------------------------------------------------------------------- /resources/flags/4x3/la.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/la.svg -------------------------------------------------------------------------------- /resources/flags/4x3/lb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/lb.svg -------------------------------------------------------------------------------- /resources/flags/4x3/lc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/lc.svg -------------------------------------------------------------------------------- /resources/flags/4x3/li.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/li.svg -------------------------------------------------------------------------------- /resources/flags/4x3/lk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/lk.svg -------------------------------------------------------------------------------- /resources/flags/4x3/lr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/lr.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ls.svg -------------------------------------------------------------------------------- /resources/flags/4x3/lt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/lt.svg -------------------------------------------------------------------------------- /resources/flags/4x3/lu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/lu.svg -------------------------------------------------------------------------------- /resources/flags/4x3/lv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/lv.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ly.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ma.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mc.svg -------------------------------------------------------------------------------- /resources/flags/4x3/md.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/md.svg -------------------------------------------------------------------------------- /resources/flags/4x3/me.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/me.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mf.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mg.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mh.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mk.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ml.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mm.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mn.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mo.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mp.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mq.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mr.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ms.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mt.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mu.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mv.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mw.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mx.svg -------------------------------------------------------------------------------- /resources/flags/4x3/my.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/my.svg -------------------------------------------------------------------------------- /resources/flags/4x3/mz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/mz.svg -------------------------------------------------------------------------------- /resources/flags/4x3/na.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/na.svg -------------------------------------------------------------------------------- /resources/flags/4x3/nc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/nc.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ne.svg -------------------------------------------------------------------------------- /resources/flags/4x3/nf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/nf.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ng.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ni.svg -------------------------------------------------------------------------------- /resources/flags/4x3/nl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/nl.svg -------------------------------------------------------------------------------- /resources/flags/4x3/no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/no.svg -------------------------------------------------------------------------------- /resources/flags/4x3/np.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/np.svg -------------------------------------------------------------------------------- /resources/flags/4x3/nr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/nr.svg -------------------------------------------------------------------------------- /resources/flags/4x3/nu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/nu.svg -------------------------------------------------------------------------------- /resources/flags/4x3/nz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/nz.svg -------------------------------------------------------------------------------- /resources/flags/4x3/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/om.svg -------------------------------------------------------------------------------- /resources/flags/4x3/pa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/pa.svg -------------------------------------------------------------------------------- /resources/flags/4x3/pe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/pe.svg -------------------------------------------------------------------------------- /resources/flags/4x3/pf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/pf.svg -------------------------------------------------------------------------------- /resources/flags/4x3/pg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/pg.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ph.svg -------------------------------------------------------------------------------- /resources/flags/4x3/pk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/pk.svg -------------------------------------------------------------------------------- /resources/flags/4x3/pl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/pl.svg -------------------------------------------------------------------------------- /resources/flags/4x3/pm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/pm.svg -------------------------------------------------------------------------------- /resources/flags/4x3/pn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/pn.svg -------------------------------------------------------------------------------- /resources/flags/4x3/pr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/pr.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ps.svg -------------------------------------------------------------------------------- /resources/flags/4x3/pt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/pt.svg -------------------------------------------------------------------------------- /resources/flags/4x3/pw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/pw.svg -------------------------------------------------------------------------------- /resources/flags/4x3/py.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/py.svg -------------------------------------------------------------------------------- /resources/flags/4x3/qa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/qa.svg -------------------------------------------------------------------------------- /resources/flags/4x3/re.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/re.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ro.svg -------------------------------------------------------------------------------- /resources/flags/4x3/rs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/rs.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ru.svg -------------------------------------------------------------------------------- /resources/flags/4x3/rw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/rw.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sa.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sb.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sc.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sd.svg -------------------------------------------------------------------------------- /resources/flags/4x3/se.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/se.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sg.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sh.svg -------------------------------------------------------------------------------- /resources/flags/4x3/si.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/si.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sj.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sk.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sl.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sm.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sn.svg -------------------------------------------------------------------------------- /resources/flags/4x3/so.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/so.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sr.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ss.svg -------------------------------------------------------------------------------- /resources/flags/4x3/st.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/st.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sv.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sx.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sy.svg -------------------------------------------------------------------------------- /resources/flags/4x3/sz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/sz.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ta.svg -------------------------------------------------------------------------------- /resources/flags/4x3/tc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/tc.svg -------------------------------------------------------------------------------- /resources/flags/4x3/td.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/td.svg -------------------------------------------------------------------------------- /resources/flags/4x3/tf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/tf.svg -------------------------------------------------------------------------------- /resources/flags/4x3/tg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/tg.svg -------------------------------------------------------------------------------- /resources/flags/4x3/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/th.svg -------------------------------------------------------------------------------- /resources/flags/4x3/tj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/tj.svg -------------------------------------------------------------------------------- /resources/flags/4x3/tk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/tk.svg -------------------------------------------------------------------------------- /resources/flags/4x3/tl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/tl.svg -------------------------------------------------------------------------------- /resources/flags/4x3/tm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/tm.svg -------------------------------------------------------------------------------- /resources/flags/4x3/tn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/tn.svg -------------------------------------------------------------------------------- /resources/flags/4x3/to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/to.svg -------------------------------------------------------------------------------- /resources/flags/4x3/tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/tr.svg -------------------------------------------------------------------------------- /resources/flags/4x3/tt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/tt.svg -------------------------------------------------------------------------------- /resources/flags/4x3/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/tv.svg -------------------------------------------------------------------------------- /resources/flags/4x3/tw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/tw.svg -------------------------------------------------------------------------------- /resources/flags/4x3/tz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/tz.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ua.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ug.svg -------------------------------------------------------------------------------- /resources/flags/4x3/um.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/um.svg -------------------------------------------------------------------------------- /resources/flags/4x3/un.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/un.svg -------------------------------------------------------------------------------- /resources/flags/4x3/us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/us.svg -------------------------------------------------------------------------------- /resources/flags/4x3/uy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/uy.svg -------------------------------------------------------------------------------- /resources/flags/4x3/uz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/uz.svg -------------------------------------------------------------------------------- /resources/flags/4x3/va.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/va.svg -------------------------------------------------------------------------------- /resources/flags/4x3/vc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/vc.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ve.svg -------------------------------------------------------------------------------- /resources/flags/4x3/vg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/vg.svg -------------------------------------------------------------------------------- /resources/flags/4x3/vi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/vi.svg -------------------------------------------------------------------------------- /resources/flags/4x3/vn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/vn.svg -------------------------------------------------------------------------------- /resources/flags/4x3/vu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/vu.svg -------------------------------------------------------------------------------- /resources/flags/4x3/wf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/wf.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ws.svg -------------------------------------------------------------------------------- /resources/flags/4x3/xk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/xk.svg -------------------------------------------------------------------------------- /resources/flags/4x3/xx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/xx.svg -------------------------------------------------------------------------------- /resources/flags/4x3/ye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/ye.svg -------------------------------------------------------------------------------- /resources/flags/4x3/yt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/yt.svg -------------------------------------------------------------------------------- /resources/flags/4x3/za.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/za.svg -------------------------------------------------------------------------------- /resources/flags/4x3/zm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/zm.svg -------------------------------------------------------------------------------- /resources/flags/4x3/zw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/flags/4x3/zw.svg -------------------------------------------------------------------------------- /resources/js/another-portfolio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/js/another-portfolio.js -------------------------------------------------------------------------------- /resources/views/embed.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/demo/HEAD/resources/views/embed.blade.php -------------------------------------------------------------------------------- /resources/views/filament/hooks/panel-switcher.blade.php: -------------------------------------------------------------------------------- 1 |