gitextract_prmjevic/ ├── .gitattributes ├── .github/ │ ├── config.yml │ ├── dependabot.yml │ ├── issue_template.md │ ├── pull_request_template.md │ ├── stale.yml │ ├── support.yml │ └── workflows/ │ └── add-to-project.yml ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE.md ├── app/ │ ├── Console/ │ │ ├── Commands/ │ │ │ ├── Inspire.php │ │ │ └── RefreshDb.php │ │ └── Kernel.php │ ├── Enums/ │ │ ├── MonsterStatus.php │ │ ├── ProductCondition.php │ │ └── ProductStatus.php │ ├── Events/ │ │ └── Event.php │ ├── Exceptions/ │ │ └── Handler.php │ ├── Http/ │ │ ├── Controllers/ │ │ │ ├── Admin/ │ │ │ │ ├── AdminPageController.php │ │ │ │ ├── CaveCrudController.php │ │ │ │ ├── Charts/ │ │ │ │ │ ├── LatestUsersChartController.php │ │ │ │ │ ├── Lines/ │ │ │ │ │ │ ├── ChartjsLineChartController.php │ │ │ │ │ │ ├── EchartsLineChartController.php │ │ │ │ │ │ ├── FrappeLineChartController.php │ │ │ │ │ │ └── HighchartsLineChartController.php │ │ │ │ │ ├── NewEntriesChartController.php │ │ │ │ │ └── Pies/ │ │ │ │ │ ├── ChartjsPieController.php │ │ │ │ │ ├── EchartsPieController.php │ │ │ │ │ ├── FrappePieController.php │ │ │ │ │ └── HighchartsPieController.php │ │ │ │ ├── ColumnMonsterCrudController.php │ │ │ │ ├── DummyCrudController.php │ │ │ │ ├── EditableMonsterCrudController.php │ │ │ │ ├── FieldMonsterCrudController.php │ │ │ │ ├── FluentMonsterCrudController.php │ │ │ │ ├── HeroCrudController.php │ │ │ │ ├── IconCrudController.php │ │ │ │ ├── MeetingCrudController.php │ │ │ │ ├── MonsterCrudController.php │ │ │ │ ├── Operations/ │ │ │ │ │ └── SMSOperation.php │ │ │ │ ├── PetShop/ │ │ │ │ │ ├── BadgeCrudController.php │ │ │ │ │ ├── CommentCrudController.php │ │ │ │ │ ├── InvoiceCrudController.php │ │ │ │ │ ├── OwnerCrudController.php │ │ │ │ │ ├── OwnerPetsCrudController.php │ │ │ │ │ ├── PassportCrudController.php │ │ │ │ │ ├── PetCrudController.php │ │ │ │ │ └── SkillCrudController.php │ │ │ │ ├── ProductCrudController.php │ │ │ │ ├── StoryCrudController.php │ │ │ │ └── UserCrudController.php │ │ │ ├── Api/ │ │ │ │ └── ArticleController.php │ │ │ └── Controller.php │ │ ├── Kernel.php │ │ ├── Middleware/ │ │ │ ├── Authenticate.php │ │ │ ├── CheckIfAdmin.php │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── Theme.php │ │ │ ├── ValidateSignature.php │ │ │ └── VerifyCsrfToken.php │ │ └── Requests/ │ │ ├── BadgeRequest.php │ │ ├── CaveRequest.php │ │ ├── CommentRequest.php │ │ ├── DummyRequest.php │ │ ├── HeroRequest.php │ │ ├── IconRequest.php │ │ ├── InvoiceRequest.php │ │ ├── MeetingRequest.php │ │ ├── MonsterRequest.php │ │ ├── OwnerRequest.php │ │ ├── PassportRequest.php │ │ ├── PetRequest.php │ │ ├── ProductRequest.php │ │ ├── Request.php │ │ ├── SkillRequest.php │ │ └── StoryRequest.php │ ├── Jobs/ │ │ └── Job.php │ ├── Library/ │ │ └── Elfinder.php │ ├── Listeners/ │ │ └── .gitkeep │ ├── Models/ │ │ ├── Address.php │ │ ├── Article.php │ │ ├── Ball.php │ │ ├── Bill.php │ │ ├── Category.php │ │ ├── Cave.php │ │ ├── Country.php │ │ ├── Dummy.php │ │ ├── Graffiti.php │ │ ├── Hero.php │ │ ├── Icon.php │ │ ├── Meeting.php │ │ ├── MenuItem.php │ │ ├── Monster.php │ │ ├── Page.php │ │ ├── PetShop/ │ │ │ ├── Avatar.php │ │ │ ├── Badge.php │ │ │ ├── Comment.php │ │ │ ├── Invoice.php │ │ │ ├── InvoiceItem.php │ │ │ ├── Owner.php │ │ │ ├── Passport.php │ │ │ ├── Pet.php │ │ │ └── Skill.php │ │ ├── PostalBox.php │ │ ├── PostalBoxer.php │ │ ├── Product.php │ │ ├── Recommend.php │ │ ├── Sentiment.php │ │ ├── Star.php │ │ ├── Story.php │ │ ├── Tag.php │ │ ├── Traits/ │ │ │ └── LogsActivity.php │ │ ├── Universe.php │ │ └── Wish.php │ ├── PageTemplates.php │ ├── Policies/ │ │ └── .gitkeep │ ├── Providers/ │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── User.php │ └── helpers.php ├── artisan ├── bootstrap/ │ ├── app.php │ ├── autoload.php │ └── cache/ │ └── .gitignore ├── composer.json ├── config/ │ ├── app.php │ ├── auth.php │ ├── backpack/ │ │ ├── base.php │ │ ├── crud.php │ │ ├── pagemanager.php │ │ ├── permissionmanager.php │ │ ├── testing.php │ │ ├── theme-tabler.php │ │ └── ui.php │ ├── backup.php │ ├── broadcasting.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── debugbar.php │ ├── elfinder.php │ ├── filesystems.php │ ├── gravatar.php │ ├── image.php │ ├── logging.php │ ├── mail.php │ ├── permission.php │ ├── prologue/ │ │ └── alerts.php │ ├── queue.php │ ├── services.php │ ├── session.php │ ├── sluggable.php │ └── view.php ├── database/ │ ├── .gitignore │ ├── factories/ │ │ ├── ArticleFactory.php │ │ ├── BillFactory.php │ │ ├── CategoryFactory.php │ │ ├── CaveFactory.php │ │ ├── HeroFactory.php │ │ ├── MeetingFactory.php │ │ ├── MenuItemFactory.php │ │ ├── MonsterFactory.php │ │ ├── PageFactory.php │ │ ├── PetShop/ │ │ │ ├── BadgeFactory.php │ │ │ ├── InvoiceFactory.php │ │ │ ├── InvoiceItemFactory.php │ │ │ ├── OwnerFactory.php │ │ │ ├── PassportFactory.php │ │ │ ├── PetFactory.php │ │ │ ├── SkillFactory.php │ │ │ └── StoryFactory.php │ │ ├── PostalBoxerFactory.php │ │ ├── ProductFactory.php │ │ ├── RecommendFactory.php │ │ ├── TagFactory.php │ │ └── UserFactory.php │ ├── migrations/ │ │ ├── .gitkeep │ │ ├── 2013_04_09_062329_create_backpack_revisions_table.php │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2015_08_04_130507_create_article_tag_table.php │ │ ├── 2015_08_04_130520_create_articles_table.php │ │ ├── 2015_08_04_130551_create_categories_table.php │ │ ├── 2015_08_04_131614_create_settings_table.php │ │ ├── 2015_08_04_131626_create_tags_table.php │ │ ├── 2016_05_05_115641_create_menu_items_table.php │ │ ├── 2016_05_25_121918_create_pages_table.php │ │ ├── 2016_07_24_060017_add_slug_to_categories_table.php │ │ ├── 2016_07_24_060101_add_slug_to_tags_table.php │ │ ├── 2017_04_20_100848_create_monsters_table.php │ │ ├── 2017_04_21_052454_create_monster_tag_table.php │ │ ├── 2017_04_21_052455_create_monster_articles_table.php │ │ ├── 2017_04_21_052456_create_monster_category_table.php │ │ ├── 2017_12_18_075638_create_icons_table.php │ │ ├── 2017_12_19_081247_create_products_table.php │ │ ├── 2018_12_12_075319_create_permission_tables.php │ │ ├── 2019_09_13_093251_create_failed_jobs_table.php │ │ ├── 2019_12_02_101119_add_browse_multiple_to_monsters_table.php │ │ ├── 2020_03_12_100831_alter_monsters_table_add_relationship_columns.php │ │ ├── 2020_03_12_100831_alter_monsters_table_remove_address.php │ │ ├── 2020_03_29_054416_create_dummy_table.php │ │ ├── 2020_03_31_114745_add_columns_to_monster_table.php │ │ ├── 2020_03_31_114745_create_address_table.php │ │ ├── 2020_03_31_114745_create_pivotable_relations_tables.php │ │ ├── 2020_03_31_114745_remove_backpackuser_model.php │ │ ├── 2020_03_31_114745_rename_address_column_from_monsters.php │ │ ├── 2021_05_07_151146_make_notes_nullable_on_monster_product.php │ │ ├── 2021_08_08_130950_change_upload_multiple_column_in_monsters_table.php │ │ ├── 2021_10_13_081033_remove_simplemde_attribute_from_monsters.php │ │ ├── 2022_01_17_083405_create_owners_table.php │ │ ├── 2022_01_17_083526_create_invoices_table.php │ │ ├── 2022_01_17_083644_create_invoice_items_table.php │ │ ├── 2022_01_17_114317_create_pets_table.php │ │ ├── 2022_01_17_114318_create_owner_pet_table.php │ │ ├── 2022_01_17_114741_create_passports_table.php │ │ ├── 2022_01_17_120235_create_skills_table.php │ │ ├── 2022_01_17_120236_create_pet_skill_table.php │ │ ├── 2022_01_17_133436_create_avatars_table.php │ │ ├── 2022_01_17_135143_create_comments_table.php │ │ ├── 2022_01_17_141636_create_badges_table.php │ │ ├── 2022_01_17_141725_create_badgeables_table.php │ │ ├── 2022_01_21_153540_create_countries_table.php │ │ ├── 2022_01_21_155236_create_graffitis_table.php │ │ ├── 2022_01_21_165125_add_country_id_addresses_table.php │ │ ├── 2022_01_21_165552_create_wishes_table.php │ │ ├── 2022_01_21_165553_create_balls_table.php │ │ ├── 2022_01_21_165554_create_universes_table.php │ │ ├── 2022_01_22_063032_create_heroes_table.php │ │ ├── 2022_01_22_063323_add_hero_id_to_monsters_table.php │ │ ├── 2022_01_22_072809_create_stories_table.php │ │ ├── 2022_01_22_074008_add_story_id_to_monsters_table.php │ │ ├── 2022_01_22_145356_create_caves_table.php │ │ ├── 2022_01_22_145812_add_cave_id_to_monsters_table.php │ │ ├── 2022_10_08_084702_add_status_to_products.php │ │ ├── 2022_11_20_221518_create_activity_log_table.php │ │ ├── 2022_11_20_221519_add_event_column_to_activity_log_table.php │ │ ├── 2022_11_20_221520_add_batch_uuid_column_to_activity_log_table.php │ │ ├── 2022_12_30_162821_add_soft_deletes_to_pets.php │ │ ├── 2023_01_23_174016_add_status_to_monsters_table.php │ │ ├── 2023_01_23_194158_add_features_to_monsters_table.php │ │ ├── 2023_01_23_195752_add_ckeditor_to_monsters_table.php │ │ ├── 2023_02_22_191429_create_media_table.php │ │ ├── 2023_05_31_101941_add_dropzone_column_to_monsters_table.php │ │ ├── 2023_07_13_071933_add_soft_deletes_to_invoices_table.php │ │ ├── 2023_07_16_114745_rename_address_to_google_column_from_monsters.php │ │ ├── 2023_08_30_093542_add_email_verified_at_column_to_users.php │ │ ├── 2023_11_23_111148_add_category_relationship_column_to_monsters_table.php │ │ ├── 2024_02_03_225118_create_meetings_table.php │ │ ├── 2024_04_11_085730_create_language_lines_table.php │ │ ├── 2024_04_24_115407_add_json_api_fields_to_monster_table.php │ │ └── 2024_10_14_000001_create_pan_analytics_table.php │ └── seeders/ │ ├── .gitkeep │ ├── BadgeSeeder.php │ ├── CaveSeeder.php │ ├── CountryTableSeeder.php │ ├── DatabaseSeeder.php │ ├── HeroSeeder.php │ ├── IconsTableSeeder.php │ ├── InvoiceItemSeeder.php │ ├── InvoiceSeeder.php │ ├── MeetingSeeder.php │ ├── MillionCommentsSeeder.php │ ├── OwnerSeeder.php │ ├── PassportSeeder.php │ ├── PermissionManagerTablesSeeder.php │ ├── PetSeeder.php │ ├── PetShopSeeder.php │ ├── ReportDemoSeeder.php │ ├── SkillSeeder.php │ ├── StorySeeder.php │ ├── UniversesSeeder.php │ └── UsersTableSeeder.php ├── docker/ │ └── infra/ │ └── certs/ │ ├── local-dev-key.pem │ └── local-dev.pem ├── docker-compose.yml ├── entrypoint.d/ │ └── 51-after.sh ├── install.sh ├── lang/ │ ├── en/ │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── vendor/ │ ├── backpack/ │ │ ├── en/ │ │ │ └── crud.php │ │ └── tr/ │ │ └── crud.php │ └── backup/ │ ├── ar/ │ │ └── notifications.php │ ├── bg/ │ │ └── notifications.php │ ├── bn/ │ │ └── notifications.php │ ├── cs/ │ │ └── notifications.php │ ├── da/ │ │ └── notifications.php │ ├── de/ │ │ └── notifications.php │ ├── en/ │ │ └── notifications.php │ ├── es/ │ │ └── notifications.php │ ├── fa/ │ │ └── notifications.php │ ├── fi/ │ │ └── notifications.php │ ├── fr/ │ │ └── notifications.php │ ├── hi/ │ │ └── notifications.php │ ├── id/ │ │ └── notifications.php │ ├── it/ │ │ └── notifications.php │ ├── ja/ │ │ └── notifications.php │ ├── nl/ │ │ └── notifications.php │ ├── no/ │ │ └── notifications.php │ ├── pl/ │ │ └── notifications.php │ ├── pt/ │ │ └── notifications.php │ ├── pt-BR/ │ │ └── notifications.php │ ├── ro/ │ │ └── notifications.php │ ├── ru/ │ │ └── notifications.php │ ├── tr/ │ │ └── notifications.php │ ├── uk/ │ │ └── notifications.php │ ├── zh-CN/ │ │ └── notifications.php │ └── zh-TW/ │ └── notifications.php ├── package.json ├── phpunit.xml ├── public/ │ ├── .htaccess │ ├── assets/ │ │ ├── css/ │ │ │ └── backpack_electric_purple_overlay.css │ │ └── js/ │ │ ├── ga.js │ │ ├── meetings.js │ │ └── monster/ │ │ ├── fields.js │ │ ├── test-custom-field.js │ │ ├── test-disable-field.js │ │ ├── test-enable-field.js │ │ ├── test-hide-field.js │ │ ├── test-onchange-field.js │ │ ├── test-require-field.js │ │ ├── test-show-field.js │ │ ├── test-top-scenarios.js │ │ └── test-unrequire-field.js │ ├── index.php │ ├── robots.txt │ ├── uploads/ │ │ └── .gitkeep │ └── web.config ├── readme.md ├── reload.sh ├── resources/ │ ├── assets/ │ │ └── sass/ │ │ └── app.scss │ └── views/ │ ├── admin/ │ │ ├── metrics/ │ │ │ └── top_products.blade.php │ │ ├── new-in-v7.blade.php │ │ ├── partials/ │ │ │ ├── chip-examples.blade.php │ │ │ ├── dataform-examples.blade.php │ │ │ ├── dataform-modal-examples.blade.php │ │ │ ├── datagrid-examples.blade.php │ │ │ ├── datalist-examples.blade.php │ │ │ └── datatable-examples.blade.php │ │ └── petshop_about.blade.php │ ├── vendor/ │ │ ├── .gitkeep │ │ └── backpack/ │ │ ├── crud/ │ │ │ ├── buttons/ │ │ │ │ ├── fake-editable-columns.blade.php │ │ │ │ └── passports.blade.php │ │ │ ├── chips/ │ │ │ │ ├── invoice.blade.php │ │ │ │ └── owner.blade.php │ │ │ ├── columns/ │ │ │ │ └── custom_view_column_example.blade.php │ │ │ └── details_row/ │ │ │ └── monster.blade.php │ │ ├── theme-coreuiv2/ │ │ │ ├── auth/ │ │ │ │ └── login.blade.php │ │ │ ├── dashboard.blade.php │ │ │ └── inc/ │ │ │ ├── alerts.blade.php │ │ │ └── topbar_right_content.blade.php │ │ ├── theme-coreuiv4/ │ │ │ ├── auth/ │ │ │ │ └── login.blade.php │ │ │ ├── dashboard.blade.php │ │ │ └── inc/ │ │ │ ├── alerts.blade.php │ │ │ └── topbar_right_content.blade.php │ │ ├── theme-tabler/ │ │ │ ├── auth/ │ │ │ │ └── login/ │ │ │ │ └── inc/ │ │ │ │ └── form.blade.php │ │ │ ├── dashboard.blade.php │ │ │ ├── inc/ │ │ │ │ ├── alerts.blade.php │ │ │ │ ├── commercial.blade.php │ │ │ │ └── topbar_right_content.blade.php │ │ │ └── layouts/ │ │ │ └── partials/ │ │ │ └── sidebar_shortcuts.blade.php │ │ └── ui/ │ │ └── inc/ │ │ └── menu_items.blade.php │ └── welcome.blade.php ├── routes/ │ ├── api.php │ ├── backpack/ │ │ ├── custom.php │ │ └── permissionmanager.php │ ├── console.php │ └── web.php ├── start.sh ├── storage/ │ ├── app/ │ │ └── .gitignore │ ├── clockwork/ │ │ └── .gitignore │ ├── debugbar/ │ │ └── .gitignore │ ├── framework/ │ │ ├── .gitignore │ │ ├── cache/ │ │ │ └── .gitignore │ │ ├── sessions/ │ │ │ └── .gitignore │ │ └── views/ │ │ └── .gitignore │ └── logs/ │ └── .gitignore ├── tests/ │ └── Feature/ │ ├── Admin/ │ │ ├── CaveCrudControllerTest.php │ │ ├── ColumnMonsterCrudControllerTest.php │ │ ├── DummyCrudControllerTest.php │ │ ├── EditableMonsterCrudControllerTest.php │ │ ├── FieldMonsterCrudControllerTest.php │ │ ├── FluentMonsterCrudControllerTest.php │ │ ├── HeroCrudControllerTest.php │ │ ├── IconCrudControllerTest.php │ │ ├── MeetingCrudControllerTest.php │ │ ├── MonsterCrudControllerTest.php │ │ ├── PetShop/ │ │ │ ├── BadgeCrudControllerTest.php │ │ │ ├── CommentCrudControllerTest.php │ │ │ ├── InvoiceCrudControllerTest.php │ │ │ ├── OwnerCrudControllerTest.php │ │ │ ├── OwnerPetsCrudControllerTest.php │ │ │ ├── PassportCrudControllerTest.php │ │ │ ├── PetCrudControllerTest.php │ │ │ └── SkillCrudControllerTest.php │ │ ├── ProductCrudControllerTest.php │ │ ├── StoryCrudControllerTest.php │ │ └── UserCrudControllerTest.php │ └── Backpack/ │ ├── DefaultCreateTests.php │ ├── DefaultDeleteTests.php │ ├── DefaultListTests.php │ ├── DefaultShowTests.php │ ├── DefaultTestBase.php │ └── DefaultUpdateTests.php └── vite.config.js