├── .babelrc ├── .bladeignore ├── .dockerignore ├── .editorconfig ├── .env.ci ├── .env.example ├── .gitattributes ├── .gitignore ├── .husky └── .gitignore ├── .nvmrc ├── .php-cs-fixer.dist.php ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── Console │ ├── Commands │ │ ├── BlockMakeCommand.php │ │ ├── CreateAdminCommand.php │ │ ├── ExportContentCommand.php │ │ ├── ExportSeedDataCommand.php │ │ ├── SetupCommand.php │ │ ├── UpdateSequencesCommand.php │ │ └── UpdateTranslationsCommand.php │ └── Kernel.php ├── DataTransferObjects │ └── SearchResult.php ├── Enums │ └── UserRole.php ├── Exceptions │ ├── Handler.php │ ├── InvalidBlockTypeException.php │ ├── InvalidFormFieldTypeException.php │ ├── InvalidWebsiteFactoryEditionException.php │ ├── LanguageNotInISO639.php │ ├── MethodNotDefinedException.php │ └── PropertyNotDefinedException.php ├── Exports │ └── FormSubmissionsExport.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── AdminController.php │ │ │ ├── DashboardController.php │ │ │ ├── DecisionAuthorController.php │ │ │ ├── DecisionCategoryController.php │ │ │ ├── DecisionController.php │ │ │ ├── FormController.php │ │ │ ├── FormSubmissionController.php │ │ │ ├── HelpController.php │ │ │ ├── LanguageController.php │ │ │ ├── MediaController.php │ │ │ ├── MenuController.php │ │ │ ├── PageController.php │ │ │ ├── PartnerController.php │ │ │ ├── PersonController.php │ │ │ ├── PostCategoryController.php │ │ │ ├── PostController.php │ │ │ ├── SearchController.php │ │ │ ├── SettingController.php │ │ │ └── UserController.php │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── VerifyEmailController.php │ │ │ └── WelcomeUserController.php │ │ ├── Controller.php │ │ └── Front │ │ │ ├── DecisionAuthorController.php │ │ │ ├── DecisionCategoryController.php │ │ │ ├── DecisionController.php │ │ │ ├── DonationController.php │ │ │ ├── FormController.php │ │ │ ├── HealthCheckController.php │ │ │ ├── PageController.php │ │ │ ├── PersonController.php │ │ │ ├── PostCategoryController.php │ │ │ ├── PostController.php │ │ │ ├── SearchController.php │ │ │ └── ThemeController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Admin │ │ │ ├── EnsureUserHasRole.php │ │ │ └── SetLocale.php │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── Front │ │ │ ├── SetLocale.php │ │ │ └── SetSeoDefaults.php │ │ ├── HandleInertiaRequests.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── Admin │ │ │ ├── DecisionAuthorRequest.php │ │ │ ├── DecisionCategoryRequest.php │ │ │ ├── DecisionRequest.php │ │ │ ├── FormRequest.php │ │ │ ├── LanguageRequest.php │ │ │ ├── MediaStoreRequest.php │ │ │ ├── MediaUpdateRequest.php │ │ │ ├── MenuRequest.php │ │ │ ├── PageRequest.php │ │ │ ├── PartnerRequest.php │ │ │ ├── PersonRequest.php │ │ │ ├── PostCategoryRequest.php │ │ │ ├── PostRequest.php │ │ │ ├── SettingRequest.php │ │ │ └── UserRequest.php │ │ ├── Auth │ │ │ └── LoginRequest.php │ │ └── Front │ │ │ ├── DonationRequest.php │ │ │ ├── FormSubmissionRequest.php │ │ │ └── SearchRequest.php │ └── Resources │ │ ├── BlockResource.php │ │ ├── Collections │ │ ├── DecisionAuthorCollection.php │ │ ├── DecisionCategoryCollection.php │ │ ├── DecisionCollection.php │ │ ├── FormCollection.php │ │ ├── FormSubmissionCollection.php │ │ ├── LanguageCollection.php │ │ ├── MenuItemCollection.php │ │ ├── PageCollection.php │ │ ├── PartnerCollection.php │ │ ├── PersonCollection.php │ │ ├── PostCategoryCollection.php │ │ ├── PostCollection.php │ │ ├── ResourceCollection.php │ │ └── UserCollection.php │ │ ├── DecisionAuthorResource.php │ │ ├── DecisionCategoryResource.php │ │ ├── DecisionResource.php │ │ ├── FormResource.php │ │ ├── FormSubmissionResource.php │ │ ├── LanguageResource.php │ │ ├── MediaResource.php │ │ ├── MenuItemResource.php │ │ ├── PageResource.php │ │ ├── PartnerResource.php │ │ ├── PersonResource.php │ │ ├── PostCategoryResource.php │ │ ├── PostResource.php │ │ ├── RelatedResource.php │ │ ├── Resource.php │ │ └── UserResource.php ├── Listeners │ └── SetEmailHeaders.php ├── Mail │ └── FormSubmitted.php ├── Models │ ├── Block.php │ ├── Category.php │ ├── Decision.php │ ├── DecisionAuthor.php │ ├── DecisionCategory.php │ ├── Form.php │ ├── FormField.php │ ├── FormSubmission.php │ ├── Language.php │ ├── LanguageLine.php │ ├── Media.php │ ├── MenuItem.php │ ├── Page.php │ ├── Partner.php │ ├── Person.php │ ├── Post.php │ ├── PostCategory.php │ ├── Related.php │ ├── Setting.php │ └── User.php ├── Notifications │ └── WelcomeNotification.php ├── Payments │ ├── Euplatesc │ │ ├── Gateway.php │ │ ├── GatewayParametersTrait.php │ │ └── Message │ │ │ ├── PurchaseRequest.php │ │ │ └── PurchaseResponse.php │ ├── Mobilpay │ │ ├── Gateway.php │ │ ├── GatewayParametersTrait.php │ │ └── Message │ │ │ ├── PurchaseRequest.php │ │ │ └── PurchaseResponse.php │ └── PaymentGateway.php ├── Policies │ ├── DecisionAuthorPolicy.php │ ├── DecisionCategoryPolicy.php │ ├── DecisionPolicy.php │ ├── FormPolicy.php │ ├── FormSubmissionPolicy.php │ ├── LanguagePolicy.php │ ├── MediaPolicy.php │ ├── MenuItemPolicy.php │ ├── PagePolicy.php │ ├── PartnerPolicy.php │ ├── PersonPolicy.php │ ├── PostCategoryPolicy.php │ ├── PostPolicy.php │ ├── SettingPolicy.php │ └── UserPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── LanguageServiceProvider.php │ ├── MediaServiceProvider.php │ ├── RouteServiceProvider.php │ └── SettingsServiceProvider.php ├── Rules │ ├── OneEmailPerLine.php │ ├── ValidHex.php │ └── ValidRGB.php ├── Services │ ├── BlockCollection.php │ ├── Features.php │ ├── ISO_639_1.php │ ├── SupportsTrait.php │ ├── Time.php │ └── TranslatableFormRequestRules.php ├── Traits │ ├── ClearsResponseCache.php │ ├── Duplicatable.php │ ├── Filterable.php │ ├── HasBlocks.php │ ├── HasMedia.php │ ├── HasRelated.php │ ├── HasRole.php │ ├── HasSlug.php │ ├── HasUuid.php │ ├── NestedSet.php │ ├── Publishable.php │ ├── Searchable.php │ ├── Sortable.php │ └── Translatable.php ├── View │ └── Components │ │ ├── Blocks.php │ │ ├── Blocks │ │ ├── Accordion.php │ │ ├── BlockComponent.php │ │ ├── Budget.php │ │ ├── CallToAction.php │ │ ├── Cards.php │ │ ├── Carousel.php │ │ ├── Counter.php │ │ ├── DecisionTree.php │ │ ├── Divider.php │ │ ├── DonationEuplatesc.php │ │ ├── DonationMobilpay.php │ │ ├── DonationPaypal.php │ │ ├── Embed.php │ │ ├── Form.php │ │ ├── Header.php │ │ ├── HeroBgImage.php │ │ ├── Html.php │ │ ├── Image.php │ │ ├── ImageGrid.php │ │ ├── ImageText.php │ │ ├── ImagesWithLinks.php │ │ ├── People.php │ │ ├── Progress.php │ │ └── Text.php │ │ ├── Button.php │ │ ├── DonationForm.php │ │ ├── Layout.php │ │ ├── NestedNavigation.php │ │ ├── Site │ │ ├── Banner.php │ │ ├── BannerGovernment.php │ │ ├── CookieNotice.php │ │ ├── Footer.php │ │ ├── Header.php │ │ ├── LanguageSwitcher.php │ │ ├── Meta.php │ │ ├── Notice.php │ │ ├── Partners.php │ │ └── SearchForm.php │ │ └── SocialMediaLinks.php └── helpers.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── blade-icons.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── excel.php ├── filesystems.php ├── hashing.php ├── image.php ├── logging.php ├── mail.php ├── mediable.php ├── queue.php ├── responsecache.php ├── search.php ├── sentry.php ├── services.php ├── session.php ├── translation-loader.php ├── view.php ├── website-factory.php └── ziggy.php ├── database ├── .gitignore ├── factories │ ├── BlockFactory.php │ ├── CategoryFactory.php │ ├── DecisionCategoryFactory.php │ ├── DecisionFactory.php │ ├── Factory.php │ ├── FormFactory.php │ ├── FormSubmissionFactory.php │ ├── MenuItemFactory.php │ ├── PageFactory.php │ ├── PartnerFactory.php │ ├── PersonFactory.php │ ├── PostCategoryFactory.php │ ├── PostFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2016_06_27_000000_create_mediable_tables.php │ ├── 2020_10_12_000000_add_variants_to_media.php │ ├── 2021_08_01_000001_create_menu_items_table.php │ ├── 2021_08_01_000001_create_settings_table.php │ ├── 2021_08_01_000002_create_blocks_table.php │ ├── 2021_08_01_000003_create_pages_table.php │ ├── 2021_08_01_000003_create_posts_table.php │ ├── 2021_08_01_000004_create_categories_table.php │ ├── 2021_08_01_000005_create_forms_table.php │ ├── 2021_08_01_000006_create_form_submissions_table.php │ ├── 2021_08_01_000007_create_people_table.php │ ├── 2021_08_01_000009_create_related_table.php │ ├── 2021_08_10_000008_create_decisions_table.php │ ├── 2022_04_11_165028_create_language_lines_table.php │ ├── 2022_04_11_170351_create_languages_table.php │ ├── 2022_05_23_121352_create_sessions_table.php │ ├── 2022_05_23_121401_create_cache_table.php │ ├── 2022_06_06_152444_add_author_column_to_posts_table.php │ ├── 2022_07_04_165047_add_route_column_to_menu_items_table.php │ ├── 2022_07_05_142701_create_decision_categories_table.php │ ├── 2022_09_01_122715_create_partners_table.php │ ├── 2022_09_14_111233_add_nested_set_columns_to_pages_table.php │ ├── 2022_10_26_141907_add_number_column_to_decisions_table.php │ ├── 2022_10_26_162826_create_decision_authors_table.php │ ├── 2023_04_20_171819_add_new_tab_column_to_menu_items_table.php │ ├── 2024_02_14_201150_add_iso_639-1_support_to_languages_table.php │ ├── 2024_05_13_175108_add_alt_to_media.php │ └── 2024_05_13_180708_make_directory_column_nullable_in_media_table.php └── seeders │ ├── DatabaseSeeder.php │ └── data │ ├── ong.sql │ └── school.sql ├── docker-compose.yml ├── docker ├── nginx │ └── nginx.conf ├── openssl │ └── openssl.cnf ├── php │ ├── php.ini │ └── www.conf └── s6-rc.d │ ├── laravel │ ├── init.sh │ ├── type │ └── up │ ├── nginx │ ├── run │ └── type │ ├── php │ ├── run │ └── type │ └── user │ └── contents.d │ ├── laravel │ ├── nginx │ └── php ├── docs └── examples │ └── docker-compose.yml ├── help ├── content │ ├── government │ │ ├── en │ │ │ ├── 01-Introduction │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-what.md │ │ │ │ ├── 03-data-responsibility.md │ │ │ │ ├── 04-updates.md │ │ │ │ ├── 05-notifications.md │ │ │ │ └── 06-requests.md │ │ │ ├── 02-Users │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-add.md │ │ │ │ ├── 03-roles.md │ │ │ │ └── 04-edit.md │ │ │ ├── 03-Settings │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-general.md │ │ │ │ ├── 03-branding.md │ │ │ │ ├── 04-integrations.md │ │ │ │ ├── 05-notice.md │ │ │ │ ├── 06-social.md │ │ │ │ ├── 07-donations.md │ │ │ │ ├── 08-languages.md │ │ │ │ └── 09-menus.md │ │ │ └── 04-Content │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-architecture.md │ │ │ │ ├── 03-pages.md │ │ │ │ ├── 04-blocks.md │ │ │ │ ├── 05-blog.md │ │ │ │ ├── 06-forms.md │ │ │ │ ├── 07-form-blocks.md │ │ │ │ ├── 08-form-submissions.md │ │ │ │ ├── 09-people.md │ │ │ │ ├── 10-media.md │ │ │ │ ├── 11-transfer.md │ │ │ │ └── 12-test.md │ │ └── ro │ │ │ ├── 01-Introducere │ │ │ ├── 01-intro.md │ │ │ ├── 02-what.md │ │ │ ├── 03-data-responsibility.md │ │ │ ├── 04-updates.md │ │ │ ├── 05-notifications.md │ │ │ └── 06-requests.md │ │ │ ├── 02-Utilizatori │ │ │ ├── 01-intro.md │ │ │ ├── 02-add.md │ │ │ ├── 03-roles.md │ │ │ └── 04-edit.md │ │ │ ├── 03-Setări │ │ │ ├── 01-intro.md │ │ │ ├── 02-general.md │ │ │ ├── 03-branding.md │ │ │ ├── 04-integrations.md │ │ │ ├── 05-notice.md │ │ │ ├── 06-social.md │ │ │ ├── 08-languages.md │ │ │ └── 09-menus.md │ │ │ └── 04-Conținut │ │ │ ├── 01-intro.md │ │ │ ├── 03-pages.md │ │ │ ├── 04-blocks.md │ │ │ ├── 05-blog.md │ │ │ ├── 06-forms.md │ │ │ ├── 07-form-blocks.md │ │ │ ├── 08-form-submissions.md │ │ │ ├── 09-people.md │ │ │ ├── 10-media.md │ │ │ ├── 11-transfer.md │ │ │ └── 12-test.md │ ├── ong │ │ ├── en │ │ │ ├── 01-Introduction │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-what.md │ │ │ │ ├── 03-data-responsibility.md │ │ │ │ ├── 04-updates.md │ │ │ │ ├── 05-notifications.md │ │ │ │ └── 06-requests.md │ │ │ ├── 02-Users │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-add.md │ │ │ │ ├── 03-roles.md │ │ │ │ └── 04-edit.md │ │ │ ├── 03-Settings │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-general.md │ │ │ │ ├── 03-branding.md │ │ │ │ ├── 04-integrations.md │ │ │ │ ├── 05-notice.md │ │ │ │ ├── 06-social.md │ │ │ │ ├── 07-donations.md │ │ │ │ ├── 08-languages.md │ │ │ │ └── 09-menus.md │ │ │ └── 04-Content │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-architecture.md │ │ │ │ ├── 03-pages.md │ │ │ │ ├── 04-blocks.md │ │ │ │ ├── 05-blog.md │ │ │ │ ├── 06-forms.md │ │ │ │ ├── 07-form-blocks.md │ │ │ │ ├── 08-form-submissions.md │ │ │ │ ├── 09-people.md │ │ │ │ ├── 10-media.md │ │ │ │ ├── 11-transfer.md │ │ │ │ └── 12-test.md │ │ ├── es │ │ │ ├── 01-Introduction │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-what.md │ │ │ │ ├── 03-data-responsibility.md │ │ │ │ ├── 04-updates.md │ │ │ │ ├── 05-notifications.md │ │ │ │ └── 06-requests.md │ │ │ ├── 02-Users │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-add.md │ │ │ │ ├── 03-roles.md │ │ │ │ └── 04-edit.md │ │ │ ├── 03-Settings │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-general.md │ │ │ │ ├── 03-branding.md │ │ │ │ ├── 04-integrations.md │ │ │ │ ├── 05-notice.md │ │ │ │ ├── 06-social.md │ │ │ │ ├── 07-donations.md │ │ │ │ ├── 08-languages.md │ │ │ │ └── 09-menus.md │ │ │ └── 04-Content │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-architecture.md │ │ │ │ ├── 03-pages.md │ │ │ │ ├── 04-blocks.md │ │ │ │ ├── 05-blog.md │ │ │ │ ├── 06-forms.md │ │ │ │ ├── 07-form-blocks.md │ │ │ │ ├── 08-form-submissions.md │ │ │ │ ├── 09-people.md │ │ │ │ ├── 10-media.md │ │ │ │ ├── 11-transfer.md │ │ │ │ └── 12-test.md │ │ ├── ka │ │ │ ├── 01-Introduction │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-what.md │ │ │ │ ├── 03-data-responsibility.md │ │ │ │ ├── 04-updates.md │ │ │ │ ├── 05-notifications.md │ │ │ │ └── 06-requests.md │ │ │ ├── 02-Users │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-add.md │ │ │ │ ├── 03-roles.md │ │ │ │ └── 04-edit.md │ │ │ ├── 03-Settings │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-general.md │ │ │ │ ├── 03-branding.md │ │ │ │ ├── 04-integrations.md │ │ │ │ ├── 05-notice.md │ │ │ │ ├── 06-social.md │ │ │ │ ├── 07-donations.md │ │ │ │ ├── 08-languages.md │ │ │ │ └── 09-menus.md │ │ │ └── 04-Content │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-architecture.md │ │ │ │ ├── 03-pages.md │ │ │ │ ├── 04-blocks.md │ │ │ │ ├── 05-blog.md │ │ │ │ ├── 06-forms.md │ │ │ │ ├── 07-form-blocks.md │ │ │ │ ├── 08-form-submissions.md │ │ │ │ ├── 09-people.md │ │ │ │ ├── 10-media.md │ │ │ │ ├── 11-transfer.md │ │ │ │ └── 12-test.md │ │ └── ro │ │ │ ├── 01-Introducere │ │ │ ├── 01-intro.md │ │ │ ├── 02-what.md │ │ │ ├── 03-data-responsibility.md │ │ │ ├── 04-updates.md │ │ │ ├── 05-notifications.md │ │ │ └── 06-requests.md │ │ │ ├── 02-Utilizatori │ │ │ ├── 01-intro.md │ │ │ ├── 02-add.md │ │ │ ├── 03-roles.md │ │ │ └── 04-edit.md │ │ │ ├── 03-Setări │ │ │ ├── 01-intro.md │ │ │ ├── 02-general.md │ │ │ ├── 03-branding.md │ │ │ ├── 04-integrations.md │ │ │ ├── 05-notice.md │ │ │ ├── 06-social.md │ │ │ ├── 07-donations.md │ │ │ ├── 08-languages.md │ │ │ └── 09-menus.md │ │ │ └── 04-Conținut │ │ │ ├── 01-intro.md │ │ │ ├── 02-architecture.md │ │ │ ├── 03-pages.md │ │ │ ├── 04-blocks.md │ │ │ ├── 05-blog.md │ │ │ ├── 06-forms.md │ │ │ ├── 07-form-blocks.md │ │ │ ├── 08-form-submissions.md │ │ │ ├── 09-people.md │ │ │ ├── 10-media.md │ │ │ ├── 11-transfer.md │ │ │ └── 12-test.md │ └── school │ │ ├── en │ │ ├── 01-Introduction │ │ │ ├── 01-intro.md │ │ │ ├── 02-what.md │ │ │ ├── 03-data-responsibility.md │ │ │ ├── 04-updates.md │ │ │ ├── 05-notifications.md │ │ │ └── 06-requests.md │ │ ├── 02-Users │ │ │ ├── 01-intro.md │ │ │ ├── 02-add.md │ │ │ ├── 03-roles.md │ │ │ └── 04-edit.md │ │ ├── 03-Settings │ │ │ ├── 01-intro.md │ │ │ ├── 02-general.md │ │ │ ├── 03-branding.md │ │ │ ├── 04-integrations.md │ │ │ ├── 05-notice.md │ │ │ ├── 06-social.md │ │ │ ├── 08-languages.md │ │ │ └── 09-menus.md │ │ └── 04-Content │ │ │ ├── 01-intro.md │ │ │ ├── 02-architecture.md │ │ │ ├── 03-pages.md │ │ │ ├── 04-blocks.md │ │ │ ├── 05-blog.md │ │ │ ├── 06-forms.md │ │ │ ├── 07-form-blocks.md │ │ │ ├── 08-form-submissions.md │ │ │ ├── 09-people.md │ │ │ ├── 10-media.md │ │ │ ├── 11-transfer.md │ │ │ └── 12-test.md │ │ └── ro │ │ ├── 01-Introducere │ │ ├── 01-intro.md │ │ ├── 02-what.md │ │ ├── 03-data-responsibility.md │ │ ├── 04-updates.md │ │ ├── 05-notifications.md │ │ └── 06-requests.md │ │ ├── 02-Utilizatori │ │ ├── 01-intro.md │ │ ├── 02-add.md │ │ ├── 03-roles.md │ │ └── 04-edit.md │ │ ├── 03-Setări │ │ ├── 01-intro.md │ │ ├── 02-general.md │ │ ├── 03-branding.md │ │ ├── 04-integrations.md │ │ ├── 05-notice.md │ │ ├── 06-social.md │ │ ├── 08-languages.md │ │ └── 09-menus.md │ │ └── 04-Conținut │ │ ├── 01-intro.md │ │ ├── 02-architecture.md │ │ ├── 03-pages.md │ │ ├── 04-blocks.md │ │ ├── 05-blog.md │ │ ├── 06-forms.md │ │ ├── 07-form-blocks.md │ │ ├── 08-form-submissions.md │ │ ├── 09-people.md │ │ ├── 10-media.md │ │ ├── 11-transfer.md │ │ └── 12-test.md └── images │ ├── 001.png │ ├── 002.png │ ├── 003.png │ ├── 004.png │ ├── 005.png │ ├── 006.png │ ├── 007.png │ ├── 008.png │ ├── 009.png │ ├── 010.png │ ├── 011.png │ ├── 012.png │ ├── 013.png │ ├── 014.png │ ├── 015.png │ ├── 016.png │ ├── 017.png │ ├── 018.png │ ├── 019.png │ ├── 020.png │ ├── 021.png │ ├── 022.png │ ├── 023.png │ ├── 024.png │ ├── 025.png │ ├── 026.png │ ├── 027.png │ ├── 028.png │ └── 029.png ├── jsconfig.json ├── lang ├── ar.json ├── ar │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── bs.json ├── bs │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── cnr.json ├── cnr │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── de.json ├── de │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── el.json ├── el │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── en.json ├── en │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── es.json ├── es │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── es_MX.json ├── es_MX │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── fr.json ├── fr │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── hr.json ├── hr │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── hy.json ├── hy │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── it.json ├── it │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── ka.json ├── ka │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── nl.json ├── nl │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── pt.json ├── pt │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── ro.json ├── ro │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── ru.json ├── ru │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── sr.json ├── sr │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── tr.json ├── tr │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── uk.json └── uk │ ├── banner.php │ ├── email.php │ ├── error.php │ └── validation.php ├── package.json ├── phpunit.xml.dist ├── postcss.config.js ├── public ├── .htaccess ├── index.php └── robots.txt ├── resources ├── css │ ├── admin.css │ ├── public.css │ └── public.tailwind.config.js ├── images │ └── favicon.png ├── js │ ├── admin.js │ ├── components │ │ ├── Accordion.vue │ │ ├── AppLogo.vue │ │ ├── Blocks │ │ │ ├── Block │ │ │ │ ├── Accordion.vue │ │ │ │ ├── Budget.vue │ │ │ │ ├── CallToAction.vue │ │ │ │ ├── Cards.vue │ │ │ │ ├── Carousel.vue │ │ │ │ ├── Counter.vue │ │ │ │ ├── DecisionTree.vue │ │ │ │ ├── Divider.vue │ │ │ │ ├── DonationEuplatesc.vue │ │ │ │ ├── DonationMobilpay.vue │ │ │ │ ├── DonationPaypal.vue │ │ │ │ ├── Embed.vue │ │ │ │ ├── Form.vue │ │ │ │ ├── Header.vue │ │ │ │ ├── HeroBgImage.vue │ │ │ │ ├── Html.vue │ │ │ │ ├── Image.vue │ │ │ │ ├── ImageGrid.vue │ │ │ │ ├── ImageText.vue │ │ │ │ ├── ImagesWithLinks.vue │ │ │ │ ├── People.vue │ │ │ │ ├── Progress.vue │ │ │ │ └── Text.vue │ │ │ ├── BlockItem.vue │ │ │ ├── BlockList.vue │ │ │ ├── BlockRepeater.vue │ │ │ ├── BudgetLevel.vue │ │ │ ├── Form │ │ │ │ ├── Checkbox.vue │ │ │ │ ├── Content.vue │ │ │ │ ├── Date.vue │ │ │ │ ├── Divider.vue │ │ │ │ ├── Email.vue │ │ │ │ ├── File.vue │ │ │ │ ├── Number.vue │ │ │ │ ├── Radio.vue │ │ │ │ ├── Select.vue │ │ │ │ ├── Text.vue │ │ │ │ ├── Textarea.vue │ │ │ │ └── Url.vue │ │ │ └── Repeater │ │ │ │ ├── AccordionItem.vue │ │ │ │ ├── CardItem.vue │ │ │ │ ├── CarouselItem.vue │ │ │ │ ├── CounterItem.vue │ │ │ │ ├── DecisionTreeChoice.vue │ │ │ │ ├── DecisionTreeStep.vue │ │ │ │ └── ImageWithLink.vue │ │ ├── Breadcrumbs.vue │ │ ├── Dropdown.vue │ │ ├── DropdownItem.vue │ │ ├── Editor │ │ │ ├── BubbleMenus.vue │ │ │ ├── Button.vue │ │ │ ├── FontColor.vue │ │ │ └── Toolbar.vue │ │ ├── FileTypeIcon.vue │ │ ├── FlashToast.vue │ │ ├── Form │ │ │ ├── Button.vue │ │ │ ├── Checkbox.vue │ │ │ ├── CheckboxGroup.vue │ │ │ ├── ColorPicker.vue │ │ │ ├── Container.vue │ │ │ ├── Datepicker.vue │ │ │ ├── Draggable.vue │ │ │ ├── Editor.vue │ │ │ ├── Field.vue │ │ │ ├── File.vue │ │ │ ├── IconPicker.vue │ │ │ ├── Input.vue │ │ │ ├── Label.vue │ │ │ ├── LocalizedField.vue │ │ │ ├── Media.vue │ │ │ ├── Radio.vue │ │ │ ├── RadioGroup.vue │ │ │ ├── Range.vue │ │ │ ├── Related.vue │ │ │ ├── Select.vue │ │ │ ├── SelectMultiple.vue │ │ │ ├── Slug.vue │ │ │ ├── Switch.vue │ │ │ ├── Textarea.vue │ │ │ └── Toggle.vue │ │ ├── Help │ │ │ ├── Ask.vue │ │ │ ├── Help.vue │ │ │ ├── List.vue │ │ │ ├── SectionBadge.vue │ │ │ └── Topic.vue │ │ ├── Icon.vue │ │ ├── InputError.vue │ │ ├── LanguageReset.vue │ │ ├── LanguageSwitcher.vue │ │ ├── Layout │ │ │ ├── Authenticated.vue │ │ │ └── Guest.vue │ │ ├── Media │ │ │ ├── Actions.vue │ │ │ ├── Details.vue │ │ │ ├── Library.vue │ │ │ ├── LoadingIndicator.vue │ │ │ ├── ManagerControls.vue │ │ │ └── Uploader.vue │ │ ├── Menu │ │ │ ├── Item.vue │ │ │ ├── Navbar.vue │ │ │ └── Search.vue │ │ ├── MenuBuilder │ │ │ ├── Item.vue │ │ │ └── List.vue │ │ ├── Modal │ │ │ ├── Base.vue │ │ │ └── Confirmation.vue │ │ ├── NavLink.vue │ │ ├── Pagination.vue │ │ ├── Panel.vue │ │ ├── PanelModel.vue │ │ ├── ProgressBar.vue │ │ ├── Search.vue │ │ ├── Settings │ │ │ └── Section.vue │ │ ├── Table │ │ │ ├── InertiaTable.vue │ │ │ ├── TableActions.vue │ │ │ ├── TableEmpty.vue │ │ │ ├── TableFilters.vue │ │ │ ├── TableHeader.vue │ │ │ └── TableRow.vue │ │ └── ValidationErrors.vue │ ├── helpers │ │ ├── defaultValue.js │ │ ├── defineBlock.js │ │ ├── defineFormBlock.js │ │ ├── defineInput.js │ │ ├── defineRepeater.js │ │ ├── ensureCallbacks.js │ │ ├── index.js │ │ ├── typeOf.js │ │ ├── useBlock.js │ │ ├── useEdition.js │ │ ├── useFeature.js │ │ ├── useFilter.js │ │ ├── useForm.js │ │ ├── useLocale.js │ │ ├── useMedia.js │ │ ├── useRelated.js │ │ └── useRoute.js │ ├── icons.json │ ├── pages │ │ ├── Auth │ │ │ ├── ConfirmPassword.vue │ │ │ ├── ForgotPassword.vue │ │ │ ├── Login.vue │ │ │ ├── ResetPassword.vue │ │ │ ├── VerifyEmail.vue │ │ │ └── Welcome.vue │ │ ├── Dashboard.vue │ │ ├── Decisions │ │ │ ├── Authors │ │ │ │ ├── Edit.vue │ │ │ │ └── Index.vue │ │ │ ├── Categories │ │ │ │ ├── Edit.vue │ │ │ │ └── Index.vue │ │ │ ├── Edit.vue │ │ │ └── Index.vue │ │ ├── Forms │ │ │ ├── Edit.vue │ │ │ ├── Index.vue │ │ │ ├── Show.vue │ │ │ └── Submission.vue │ │ ├── Languages │ │ │ ├── Edit.vue │ │ │ └── Index.vue │ │ ├── Menus │ │ │ └── Edit.vue │ │ ├── Pages │ │ │ ├── Edit.vue │ │ │ └── Index.vue │ │ ├── Partners │ │ │ ├── Edit.vue │ │ │ └── Index.vue │ │ ├── People │ │ │ ├── Edit.vue │ │ │ └── Index.vue │ │ ├── Posts │ │ │ ├── Categories │ │ │ │ ├── Edit.vue │ │ │ │ └── Index.vue │ │ │ ├── Edit.vue │ │ │ └── Index.vue │ │ ├── Settings │ │ │ ├── Donations.vue │ │ │ ├── Site.vue │ │ │ ├── SiteNotice.vue │ │ │ └── Social.vue │ │ └── Users │ │ │ ├── Edit.vue │ │ │ └── Index.vue │ ├── plugins │ │ ├── i18n.js │ │ └── registerComponents.js │ ├── public.js │ └── public │ │ ├── budget.js │ │ ├── decisionTree.js │ │ ├── fileupload.js │ │ └── form.js ├── svg │ ├── code4-sm.svg │ ├── code4.svg │ ├── commitglobal-sm.svg │ ├── commitglobal.svg │ ├── drag.svg │ ├── fallback.svg │ └── logo.svg └── views │ ├── admin.blade.php │ ├── components │ ├── blocks.blade.php │ ├── blocks │ │ ├── _missing.blade.php │ │ ├── _title.blade.php │ │ ├── accordion.blade.php │ │ ├── budget.blade.php │ │ ├── call-to-action.blade.php │ │ ├── cards.blade.php │ │ ├── carousel.blade.php │ │ ├── carousel │ │ │ ├── bg_image.blade.php │ │ │ ├── plain.blade.php │ │ │ └── side_image.blade.php │ │ ├── counter.blade.php │ │ ├── decision-tree.blade.php │ │ ├── divider.blade.php │ │ ├── donation-euplatesc.blade.php │ │ ├── donation-mobilpay.blade.php │ │ ├── donation-paypal.blade.php │ │ ├── embed.blade.php │ │ ├── form.blade.php │ │ ├── form │ │ │ ├── _error.blade.php │ │ │ ├── _field.blade.php │ │ │ ├── checkbox.blade.php │ │ │ ├── content.blade.php │ │ │ ├── date.blade.php │ │ │ ├── divider.blade.php │ │ │ ├── email.blade.php │ │ │ ├── file.blade.php │ │ │ ├── number.blade.php │ │ │ ├── radio.blade.php │ │ │ ├── select.blade.php │ │ │ ├── text.blade.php │ │ │ ├── textarea.blade.php │ │ │ └── url.blade.php │ │ ├── header.blade.php │ │ ├── hero-bg-image.blade.php │ │ ├── html.blade.php │ │ ├── image-grid.blade.php │ │ ├── image-text.blade.php │ │ ├── image.blade.php │ │ ├── images-with-links.blade.php │ │ ├── people.blade.php │ │ ├── progress.blade.php │ │ └── text.blade.php │ ├── button.blade.php │ ├── categories.blade.php │ ├── donation-form.blade.php │ ├── form.blade.php │ ├── layout.blade.php │ ├── media │ │ ├── attachments.blade.php │ │ ├── figure.blade.php │ │ └── image.blade.php │ ├── menu-item │ │ ├── external.blade.php │ │ ├── model.blade.php │ │ ├── route.blade.php │ │ └── text.blade.php │ ├── nested-navigation │ │ ├── item.blade.php │ │ └── main.blade.php │ ├── site │ │ ├── banner-government.blade.php │ │ ├── banner-school.blade.php │ │ ├── banner.blade.php │ │ ├── cookie-notice.blade.php │ │ ├── footer-government.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── language-switcher.blade.php │ │ ├── meta.blade.php │ │ ├── notice.blade.php │ │ ├── partners.blade.php │ │ ├── search-form.blade.php │ │ └── skip-to-content.blade.php │ └── social-media-links.blade.php │ ├── emails │ └── forms │ │ └── submitted.blade.php │ ├── errors │ ├── 401.blade.php │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 429.blade.php │ ├── 500.blade.php │ ├── 503.blade.php │ └── minimal.blade.php │ ├── front │ ├── decisions │ │ ├── _loop.blade.php │ │ ├── category.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── forms │ │ └── show.blade.php │ ├── pages │ │ └── show.blade.php │ ├── people │ │ └── show.blade.php │ ├── posts │ │ ├── _loop.blade.php │ │ ├── category.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ └── search │ │ └── results.blade.php │ ├── pagination │ ├── default.blade.php │ └── simple.blade.php │ └── vendor │ ├── mail │ ├── html │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── link.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── subcopy.blade.php │ │ ├── table.blade.php │ │ └── themes │ │ │ └── default.css │ └── text │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── link.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── subcopy.blade.php │ │ └── table.blade.php │ └── notifications │ └── email.blade.php ├── routes ├── admin.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── clockwork │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── stubs ├── blocks │ ├── blade.stub │ ├── view-component.stub │ └── vue.stub ├── migration.create.stub ├── migration.stub └── migration.update.stub ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── AuthenticationTest.php │ ├── EmailVerificationTest.php │ ├── FormTest.php │ ├── PasswordConfirmationTest.php │ └── PasswordResetTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/.babelrc -------------------------------------------------------------------------------- /.bladeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/.bladeignore -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/.env.ci -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Commands/BlockMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Console/Commands/BlockMakeCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/CreateAdminCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Console/Commands/CreateAdminCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/ExportContentCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Console/Commands/ExportContentCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/ExportSeedDataCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Console/Commands/ExportSeedDataCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/SetupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Console/Commands/SetupCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/UpdateSequencesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Console/Commands/UpdateSequencesCommand.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/DataTransferObjects/SearchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/DataTransferObjects/SearchResult.php -------------------------------------------------------------------------------- /app/Enums/UserRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Enums/UserRole.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exceptions/InvalidBlockTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Exceptions/InvalidBlockTypeException.php -------------------------------------------------------------------------------- /app/Exceptions/InvalidFormFieldTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Exceptions/InvalidFormFieldTypeException.php -------------------------------------------------------------------------------- /app/Exceptions/LanguageNotInISO639.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Exceptions/LanguageNotInISO639.php -------------------------------------------------------------------------------- /app/Exceptions/MethodNotDefinedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Exceptions/MethodNotDefinedException.php -------------------------------------------------------------------------------- /app/Exceptions/PropertyNotDefinedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Exceptions/PropertyNotDefinedException.php -------------------------------------------------------------------------------- /app/Exports/FormSubmissionsExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Exports/FormSubmissionsExport.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Admin/AdminController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/DecisionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Admin/DecisionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/FormController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Admin/FormController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/HelpController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Admin/HelpController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/LanguageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Admin/LanguageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/MediaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Admin/MediaController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/MenuController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Admin/MenuController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Admin/PageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/PartnerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Admin/PartnerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/PersonController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Admin/PersonController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/PostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Admin/PostController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Admin/SearchController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/SettingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Admin/SettingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Admin/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Front/DecisionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Front/DecisionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Front/DonationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Front/DonationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Front/FormController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Front/FormController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Front/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Front/PageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Front/PersonController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Front/PersonController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Front/PostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Front/PostController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Front/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Front/SearchController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Front/ThemeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Controllers/Front/ThemeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Admin/EnsureUserHasRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Middleware/Admin/EnsureUserHasRole.php -------------------------------------------------------------------------------- /app/Http/Middleware/Admin/SetLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Middleware/Admin/SetLocale.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/Front/SetLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Middleware/Front/SetLocale.php -------------------------------------------------------------------------------- /app/Http/Middleware/Front/SetSeoDefaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Middleware/Front/SetSeoDefaults.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/DecisionAuthorRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Admin/DecisionAuthorRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/DecisionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Admin/DecisionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/FormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Admin/FormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/LanguageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Admin/LanguageRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/MediaStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Admin/MediaStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/MediaUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Admin/MediaUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/MenuRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Admin/MenuRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/PageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Admin/PageRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/PartnerRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Admin/PartnerRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/PersonRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Admin/PersonRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/PostCategoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Admin/PostCategoryRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/PostRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Admin/PostRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/SettingRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Admin/SettingRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/UserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Admin/UserRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Front/DonationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Front/DonationRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Front/FormSubmissionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Front/FormSubmissionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Front/SearchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Requests/Front/SearchRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/BlockResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/BlockResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Collections/FormCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/Collections/FormCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/Collections/PageCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/Collections/PageCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/Collections/PostCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/Collections/PostCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/Collections/UserCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/Collections/UserCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/DecisionAuthorResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/DecisionAuthorResource.php -------------------------------------------------------------------------------- /app/Http/Resources/DecisionCategoryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/DecisionCategoryResource.php -------------------------------------------------------------------------------- /app/Http/Resources/DecisionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/DecisionResource.php -------------------------------------------------------------------------------- /app/Http/Resources/FormResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/FormResource.php -------------------------------------------------------------------------------- /app/Http/Resources/FormSubmissionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/FormSubmissionResource.php -------------------------------------------------------------------------------- /app/Http/Resources/LanguageResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/LanguageResource.php -------------------------------------------------------------------------------- /app/Http/Resources/MediaResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/MediaResource.php -------------------------------------------------------------------------------- /app/Http/Resources/MenuItemResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/MenuItemResource.php -------------------------------------------------------------------------------- /app/Http/Resources/PageResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/PageResource.php -------------------------------------------------------------------------------- /app/Http/Resources/PartnerResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/PartnerResource.php -------------------------------------------------------------------------------- /app/Http/Resources/PersonResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/PersonResource.php -------------------------------------------------------------------------------- /app/Http/Resources/PostCategoryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/PostCategoryResource.php -------------------------------------------------------------------------------- /app/Http/Resources/PostResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/PostResource.php -------------------------------------------------------------------------------- /app/Http/Resources/RelatedResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/RelatedResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/Resource.php -------------------------------------------------------------------------------- /app/Http/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Http/Resources/UserResource.php -------------------------------------------------------------------------------- /app/Listeners/SetEmailHeaders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Listeners/SetEmailHeaders.php -------------------------------------------------------------------------------- /app/Mail/FormSubmitted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Mail/FormSubmitted.php -------------------------------------------------------------------------------- /app/Models/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/Block.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Decision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/Decision.php -------------------------------------------------------------------------------- /app/Models/DecisionAuthor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/DecisionAuthor.php -------------------------------------------------------------------------------- /app/Models/DecisionCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/DecisionCategory.php -------------------------------------------------------------------------------- /app/Models/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/Form.php -------------------------------------------------------------------------------- /app/Models/FormField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/FormField.php -------------------------------------------------------------------------------- /app/Models/FormSubmission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/FormSubmission.php -------------------------------------------------------------------------------- /app/Models/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/Language.php -------------------------------------------------------------------------------- /app/Models/LanguageLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/LanguageLine.php -------------------------------------------------------------------------------- /app/Models/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/Media.php -------------------------------------------------------------------------------- /app/Models/MenuItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/MenuItem.php -------------------------------------------------------------------------------- /app/Models/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/Page.php -------------------------------------------------------------------------------- /app/Models/Partner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/Partner.php -------------------------------------------------------------------------------- /app/Models/Person.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/Person.php -------------------------------------------------------------------------------- /app/Models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/Post.php -------------------------------------------------------------------------------- /app/Models/PostCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/PostCategory.php -------------------------------------------------------------------------------- /app/Models/Related.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/Related.php -------------------------------------------------------------------------------- /app/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/Setting.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Notifications/WelcomeNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Notifications/WelcomeNotification.php -------------------------------------------------------------------------------- /app/Payments/Euplatesc/Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Payments/Euplatesc/Gateway.php -------------------------------------------------------------------------------- /app/Payments/Euplatesc/GatewayParametersTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Payments/Euplatesc/GatewayParametersTrait.php -------------------------------------------------------------------------------- /app/Payments/Mobilpay/Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Payments/Mobilpay/Gateway.php -------------------------------------------------------------------------------- /app/Payments/Mobilpay/GatewayParametersTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Payments/Mobilpay/GatewayParametersTrait.php -------------------------------------------------------------------------------- /app/Payments/Mobilpay/Message/PurchaseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Payments/Mobilpay/Message/PurchaseRequest.php -------------------------------------------------------------------------------- /app/Payments/PaymentGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Payments/PaymentGateway.php -------------------------------------------------------------------------------- /app/Policies/DecisionAuthorPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/DecisionAuthorPolicy.php -------------------------------------------------------------------------------- /app/Policies/DecisionCategoryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/DecisionCategoryPolicy.php -------------------------------------------------------------------------------- /app/Policies/DecisionPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/DecisionPolicy.php -------------------------------------------------------------------------------- /app/Policies/FormPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/FormPolicy.php -------------------------------------------------------------------------------- /app/Policies/FormSubmissionPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/FormSubmissionPolicy.php -------------------------------------------------------------------------------- /app/Policies/LanguagePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/LanguagePolicy.php -------------------------------------------------------------------------------- /app/Policies/MediaPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/MediaPolicy.php -------------------------------------------------------------------------------- /app/Policies/MenuItemPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/MenuItemPolicy.php -------------------------------------------------------------------------------- /app/Policies/PagePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/PagePolicy.php -------------------------------------------------------------------------------- /app/Policies/PartnerPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/PartnerPolicy.php -------------------------------------------------------------------------------- /app/Policies/PersonPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/PersonPolicy.php -------------------------------------------------------------------------------- /app/Policies/PostCategoryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/PostCategoryPolicy.php -------------------------------------------------------------------------------- /app/Policies/PostPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/PostPolicy.php -------------------------------------------------------------------------------- /app/Policies/SettingPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/SettingPolicy.php -------------------------------------------------------------------------------- /app/Policies/UserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Policies/UserPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/LanguageServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Providers/LanguageServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/MediaServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Providers/MediaServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/SettingsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Providers/SettingsServiceProvider.php -------------------------------------------------------------------------------- /app/Rules/OneEmailPerLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Rules/OneEmailPerLine.php -------------------------------------------------------------------------------- /app/Rules/ValidHex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Rules/ValidHex.php -------------------------------------------------------------------------------- /app/Rules/ValidRGB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Rules/ValidRGB.php -------------------------------------------------------------------------------- /app/Services/BlockCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Services/BlockCollection.php -------------------------------------------------------------------------------- /app/Services/Features.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Services/Features.php -------------------------------------------------------------------------------- /app/Services/ISO_639_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Services/ISO_639_1.php -------------------------------------------------------------------------------- /app/Services/SupportsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Services/SupportsTrait.php -------------------------------------------------------------------------------- /app/Services/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Services/Time.php -------------------------------------------------------------------------------- /app/Services/TranslatableFormRequestRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Services/TranslatableFormRequestRules.php -------------------------------------------------------------------------------- /app/Traits/ClearsResponseCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Traits/ClearsResponseCache.php -------------------------------------------------------------------------------- /app/Traits/Duplicatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Traits/Duplicatable.php -------------------------------------------------------------------------------- /app/Traits/Filterable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Traits/Filterable.php -------------------------------------------------------------------------------- /app/Traits/HasBlocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Traits/HasBlocks.php -------------------------------------------------------------------------------- /app/Traits/HasMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Traits/HasMedia.php -------------------------------------------------------------------------------- /app/Traits/HasRelated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Traits/HasRelated.php -------------------------------------------------------------------------------- /app/Traits/HasRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Traits/HasRole.php -------------------------------------------------------------------------------- /app/Traits/HasSlug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Traits/HasSlug.php -------------------------------------------------------------------------------- /app/Traits/HasUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Traits/HasUuid.php -------------------------------------------------------------------------------- /app/Traits/NestedSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Traits/NestedSet.php -------------------------------------------------------------------------------- /app/Traits/Publishable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Traits/Publishable.php -------------------------------------------------------------------------------- /app/Traits/Searchable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Traits/Searchable.php -------------------------------------------------------------------------------- /app/Traits/Sortable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Traits/Sortable.php -------------------------------------------------------------------------------- /app/Traits/Translatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/Traits/Translatable.php -------------------------------------------------------------------------------- /app/View/Components/Blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/Accordion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/Accordion.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/BlockComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/BlockComponent.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/Budget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/Budget.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/CallToAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/CallToAction.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/Cards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/Cards.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/Carousel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/Carousel.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/Counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/Counter.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/DecisionTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/DecisionTree.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/Divider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/Divider.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/DonationEuplatesc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/DonationEuplatesc.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/DonationMobilpay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/DonationMobilpay.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/DonationPaypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/DonationPaypal.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/Embed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/Embed.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/Form.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/Header.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/HeroBgImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/HeroBgImage.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/Html.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/Image.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/ImageGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/ImageGrid.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/ImageText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/ImageText.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/ImagesWithLinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/ImagesWithLinks.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/People.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/People.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/Progress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/Progress.php -------------------------------------------------------------------------------- /app/View/Components/Blocks/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Blocks/Text.php -------------------------------------------------------------------------------- /app/View/Components/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Button.php -------------------------------------------------------------------------------- /app/View/Components/DonationForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/DonationForm.php -------------------------------------------------------------------------------- /app/View/Components/Layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Layout.php -------------------------------------------------------------------------------- /app/View/Components/NestedNavigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/NestedNavigation.php -------------------------------------------------------------------------------- /app/View/Components/Site/Banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Site/Banner.php -------------------------------------------------------------------------------- /app/View/Components/Site/BannerGovernment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Site/BannerGovernment.php -------------------------------------------------------------------------------- /app/View/Components/Site/CookieNotice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Site/CookieNotice.php -------------------------------------------------------------------------------- /app/View/Components/Site/Footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Site/Footer.php -------------------------------------------------------------------------------- /app/View/Components/Site/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Site/Header.php -------------------------------------------------------------------------------- /app/View/Components/Site/LanguageSwitcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Site/LanguageSwitcher.php -------------------------------------------------------------------------------- /app/View/Components/Site/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Site/Meta.php -------------------------------------------------------------------------------- /app/View/Components/Site/Notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Site/Notice.php -------------------------------------------------------------------------------- /app/View/Components/Site/Partners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Site/Partners.php -------------------------------------------------------------------------------- /app/View/Components/Site/SearchForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/Site/SearchForm.php -------------------------------------------------------------------------------- /app/View/Components/SocialMediaLinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/View/Components/SocialMediaLinks.php -------------------------------------------------------------------------------- /app/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/app/helpers.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/blade-icons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/blade-icons.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/database.php -------------------------------------------------------------------------------- /config/excel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/excel.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/image.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/mediable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/mediable.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/responsecache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/responsecache.php -------------------------------------------------------------------------------- /config/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/search.php -------------------------------------------------------------------------------- /config/sentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/sentry.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/session.php -------------------------------------------------------------------------------- /config/translation-loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/translation-loader.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/view.php -------------------------------------------------------------------------------- /config/website-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/website-factory.php -------------------------------------------------------------------------------- /config/ziggy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/config/ziggy.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/BlockFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/factories/BlockFactory.php -------------------------------------------------------------------------------- /database/factories/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/factories/CategoryFactory.php -------------------------------------------------------------------------------- /database/factories/DecisionCategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/factories/DecisionCategoryFactory.php -------------------------------------------------------------------------------- /database/factories/DecisionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/factories/DecisionFactory.php -------------------------------------------------------------------------------- /database/factories/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/factories/Factory.php -------------------------------------------------------------------------------- /database/factories/FormFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/factories/FormFactory.php -------------------------------------------------------------------------------- /database/factories/FormSubmissionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/factories/FormSubmissionFactory.php -------------------------------------------------------------------------------- /database/factories/MenuItemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/factories/MenuItemFactory.php -------------------------------------------------------------------------------- /database/factories/PageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/factories/PageFactory.php -------------------------------------------------------------------------------- /database/factories/PartnerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/factories/PartnerFactory.php -------------------------------------------------------------------------------- /database/factories/PersonFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/factories/PersonFactory.php -------------------------------------------------------------------------------- /database/factories/PostCategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/factories/PostCategoryFactory.php -------------------------------------------------------------------------------- /database/factories/PostFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/factories/PostFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/data/ong.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/seeders/data/ong.sql -------------------------------------------------------------------------------- /database/seeders/data/school.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/database/seeders/data/school.sql -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/docker/nginx/nginx.conf -------------------------------------------------------------------------------- /docker/openssl/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/docker/openssl/openssl.cnf -------------------------------------------------------------------------------- /docker/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/docker/php/php.ini -------------------------------------------------------------------------------- /docker/php/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/docker/php/www.conf -------------------------------------------------------------------------------- /docker/s6-rc.d/laravel/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/docker/s6-rc.d/laravel/init.sh -------------------------------------------------------------------------------- /docker/s6-rc.d/laravel/type: -------------------------------------------------------------------------------- 1 | oneshot 2 | -------------------------------------------------------------------------------- /docker/s6-rc.d/laravel/up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/docker/s6-rc.d/laravel/up -------------------------------------------------------------------------------- /docker/s6-rc.d/nginx/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | nginx 4 | -------------------------------------------------------------------------------- /docker/s6-rc.d/nginx/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /docker/s6-rc.d/php/run: -------------------------------------------------------------------------------- 1 | #!/command/with-contenv sh 2 | 3 | php-fpm 4 | -------------------------------------------------------------------------------- /docker/s6-rc.d/php/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /docker/s6-rc.d/user/contents.d/laravel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/s6-rc.d/user/contents.d/nginx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/s6-rc.d/user/contents.d/php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/examples/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/docs/examples/docker-compose.yml -------------------------------------------------------------------------------- /help/content/government/en/02-Users/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/en/02-Users/01-intro.md -------------------------------------------------------------------------------- /help/content/government/en/02-Users/02-add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/en/02-Users/02-add.md -------------------------------------------------------------------------------- /help/content/government/en/02-Users/03-roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/en/02-Users/03-roles.md -------------------------------------------------------------------------------- /help/content/government/en/02-Users/04-edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/en/02-Users/04-edit.md -------------------------------------------------------------------------------- /help/content/government/en/04-Content/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/en/04-Content/01-intro.md -------------------------------------------------------------------------------- /help/content/government/en/04-Content/03-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/en/04-Content/03-pages.md -------------------------------------------------------------------------------- /help/content/government/en/04-Content/05-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/en/04-Content/05-blog.md -------------------------------------------------------------------------------- /help/content/government/en/04-Content/06-forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/en/04-Content/06-forms.md -------------------------------------------------------------------------------- /help/content/government/en/04-Content/10-media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/en/04-Content/10-media.md -------------------------------------------------------------------------------- /help/content/government/en/04-Content/12-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/en/04-Content/12-test.md -------------------------------------------------------------------------------- /help/content/government/ro/03-Setări/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/ro/03-Setări/01-intro.md -------------------------------------------------------------------------------- /help/content/government/ro/03-Setări/05-notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/ro/03-Setări/05-notice.md -------------------------------------------------------------------------------- /help/content/government/ro/03-Setări/06-social.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/ro/03-Setări/06-social.md -------------------------------------------------------------------------------- /help/content/government/ro/03-Setări/09-menus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/ro/03-Setări/09-menus.md -------------------------------------------------------------------------------- /help/content/government/ro/04-Conținut/05-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/ro/04-Conținut/05-blog.md -------------------------------------------------------------------------------- /help/content/government/ro/04-Conținut/12-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/government/ro/04-Conținut/12-test.md -------------------------------------------------------------------------------- /help/content/ong/en/01-Introduction/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/01-Introduction/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/en/01-Introduction/02-what.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/01-Introduction/02-what.md -------------------------------------------------------------------------------- /help/content/ong/en/01-Introduction/04-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/01-Introduction/04-updates.md -------------------------------------------------------------------------------- /help/content/ong/en/02-Users/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/02-Users/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/en/02-Users/02-add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/02-Users/02-add.md -------------------------------------------------------------------------------- /help/content/ong/en/02-Users/03-roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/02-Users/03-roles.md -------------------------------------------------------------------------------- /help/content/ong/en/02-Users/04-edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/02-Users/04-edit.md -------------------------------------------------------------------------------- /help/content/ong/en/03-Settings/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/03-Settings/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/en/03-Settings/02-general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/03-Settings/02-general.md -------------------------------------------------------------------------------- /help/content/ong/en/03-Settings/03-branding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/03-Settings/03-branding.md -------------------------------------------------------------------------------- /help/content/ong/en/03-Settings/05-notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/03-Settings/05-notice.md -------------------------------------------------------------------------------- /help/content/ong/en/03-Settings/06-social.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/03-Settings/06-social.md -------------------------------------------------------------------------------- /help/content/ong/en/03-Settings/07-donations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/03-Settings/07-donations.md -------------------------------------------------------------------------------- /help/content/ong/en/03-Settings/08-languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/03-Settings/08-languages.md -------------------------------------------------------------------------------- /help/content/ong/en/03-Settings/09-menus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/03-Settings/09-menus.md -------------------------------------------------------------------------------- /help/content/ong/en/04-Content/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/04-Content/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/en/04-Content/02-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/04-Content/02-architecture.md -------------------------------------------------------------------------------- /help/content/ong/en/04-Content/03-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/04-Content/03-pages.md -------------------------------------------------------------------------------- /help/content/ong/en/04-Content/04-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/04-Content/04-blocks.md -------------------------------------------------------------------------------- /help/content/ong/en/04-Content/05-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/04-Content/05-blog.md -------------------------------------------------------------------------------- /help/content/ong/en/04-Content/06-forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/04-Content/06-forms.md -------------------------------------------------------------------------------- /help/content/ong/en/04-Content/07-form-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/04-Content/07-form-blocks.md -------------------------------------------------------------------------------- /help/content/ong/en/04-Content/09-people.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/04-Content/09-people.md -------------------------------------------------------------------------------- /help/content/ong/en/04-Content/10-media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/04-Content/10-media.md -------------------------------------------------------------------------------- /help/content/ong/en/04-Content/11-transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/04-Content/11-transfer.md -------------------------------------------------------------------------------- /help/content/ong/en/04-Content/12-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/en/04-Content/12-test.md -------------------------------------------------------------------------------- /help/content/ong/es/01-Introduction/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/01-Introduction/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/es/01-Introduction/02-what.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/01-Introduction/02-what.md -------------------------------------------------------------------------------- /help/content/ong/es/01-Introduction/04-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/01-Introduction/04-updates.md -------------------------------------------------------------------------------- /help/content/ong/es/02-Users/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/02-Users/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/es/02-Users/02-add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/02-Users/02-add.md -------------------------------------------------------------------------------- /help/content/ong/es/02-Users/03-roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/02-Users/03-roles.md -------------------------------------------------------------------------------- /help/content/ong/es/02-Users/04-edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/02-Users/04-edit.md -------------------------------------------------------------------------------- /help/content/ong/es/03-Settings/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/03-Settings/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/es/03-Settings/02-general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/03-Settings/02-general.md -------------------------------------------------------------------------------- /help/content/ong/es/03-Settings/03-branding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/03-Settings/03-branding.md -------------------------------------------------------------------------------- /help/content/ong/es/03-Settings/05-notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/03-Settings/05-notice.md -------------------------------------------------------------------------------- /help/content/ong/es/03-Settings/06-social.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/03-Settings/06-social.md -------------------------------------------------------------------------------- /help/content/ong/es/03-Settings/07-donations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/03-Settings/07-donations.md -------------------------------------------------------------------------------- /help/content/ong/es/03-Settings/08-languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/03-Settings/08-languages.md -------------------------------------------------------------------------------- /help/content/ong/es/03-Settings/09-menus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/03-Settings/09-menus.md -------------------------------------------------------------------------------- /help/content/ong/es/04-Content/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/04-Content/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/es/04-Content/02-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/04-Content/02-architecture.md -------------------------------------------------------------------------------- /help/content/ong/es/04-Content/03-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/04-Content/03-pages.md -------------------------------------------------------------------------------- /help/content/ong/es/04-Content/04-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/04-Content/04-blocks.md -------------------------------------------------------------------------------- /help/content/ong/es/04-Content/05-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/04-Content/05-blog.md -------------------------------------------------------------------------------- /help/content/ong/es/04-Content/06-forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/04-Content/06-forms.md -------------------------------------------------------------------------------- /help/content/ong/es/04-Content/07-form-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/04-Content/07-form-blocks.md -------------------------------------------------------------------------------- /help/content/ong/es/04-Content/09-people.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/04-Content/09-people.md -------------------------------------------------------------------------------- /help/content/ong/es/04-Content/10-media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/04-Content/10-media.md -------------------------------------------------------------------------------- /help/content/ong/es/04-Content/11-transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/04-Content/11-transfer.md -------------------------------------------------------------------------------- /help/content/ong/es/04-Content/12-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/es/04-Content/12-test.md -------------------------------------------------------------------------------- /help/content/ong/ka/01-Introduction/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/01-Introduction/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/ka/01-Introduction/02-what.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/01-Introduction/02-what.md -------------------------------------------------------------------------------- /help/content/ong/ka/01-Introduction/04-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/01-Introduction/04-updates.md -------------------------------------------------------------------------------- /help/content/ong/ka/02-Users/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/02-Users/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/ka/02-Users/02-add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/02-Users/02-add.md -------------------------------------------------------------------------------- /help/content/ong/ka/02-Users/03-roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/02-Users/03-roles.md -------------------------------------------------------------------------------- /help/content/ong/ka/02-Users/04-edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/02-Users/04-edit.md -------------------------------------------------------------------------------- /help/content/ong/ka/03-Settings/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/03-Settings/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/ka/03-Settings/02-general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/03-Settings/02-general.md -------------------------------------------------------------------------------- /help/content/ong/ka/03-Settings/03-branding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/03-Settings/03-branding.md -------------------------------------------------------------------------------- /help/content/ong/ka/03-Settings/05-notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/03-Settings/05-notice.md -------------------------------------------------------------------------------- /help/content/ong/ka/03-Settings/06-social.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/03-Settings/06-social.md -------------------------------------------------------------------------------- /help/content/ong/ka/03-Settings/07-donations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/03-Settings/07-donations.md -------------------------------------------------------------------------------- /help/content/ong/ka/03-Settings/08-languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/03-Settings/08-languages.md -------------------------------------------------------------------------------- /help/content/ong/ka/03-Settings/09-menus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/03-Settings/09-menus.md -------------------------------------------------------------------------------- /help/content/ong/ka/04-Content/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/04-Content/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/ka/04-Content/02-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/04-Content/02-architecture.md -------------------------------------------------------------------------------- /help/content/ong/ka/04-Content/03-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/04-Content/03-pages.md -------------------------------------------------------------------------------- /help/content/ong/ka/04-Content/04-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/04-Content/04-blocks.md -------------------------------------------------------------------------------- /help/content/ong/ka/04-Content/05-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/04-Content/05-blog.md -------------------------------------------------------------------------------- /help/content/ong/ka/04-Content/06-forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/04-Content/06-forms.md -------------------------------------------------------------------------------- /help/content/ong/ka/04-Content/07-form-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/04-Content/07-form-blocks.md -------------------------------------------------------------------------------- /help/content/ong/ka/04-Content/09-people.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/04-Content/09-people.md -------------------------------------------------------------------------------- /help/content/ong/ka/04-Content/10-media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/04-Content/10-media.md -------------------------------------------------------------------------------- /help/content/ong/ka/04-Content/11-transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/04-Content/11-transfer.md -------------------------------------------------------------------------------- /help/content/ong/ka/04-Content/12-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ka/04-Content/12-test.md -------------------------------------------------------------------------------- /help/content/ong/ro/01-Introducere/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/01-Introducere/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/ro/01-Introducere/02-what.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/01-Introducere/02-what.md -------------------------------------------------------------------------------- /help/content/ong/ro/01-Introducere/04-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/01-Introducere/04-updates.md -------------------------------------------------------------------------------- /help/content/ong/ro/01-Introducere/06-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/01-Introducere/06-requests.md -------------------------------------------------------------------------------- /help/content/ong/ro/02-Utilizatori/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/02-Utilizatori/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/ro/02-Utilizatori/02-add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/02-Utilizatori/02-add.md -------------------------------------------------------------------------------- /help/content/ong/ro/02-Utilizatori/03-roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/02-Utilizatori/03-roles.md -------------------------------------------------------------------------------- /help/content/ong/ro/02-Utilizatori/04-edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/02-Utilizatori/04-edit.md -------------------------------------------------------------------------------- /help/content/ong/ro/03-Setări/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/03-Setări/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/ro/03-Setări/02-general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/03-Setări/02-general.md -------------------------------------------------------------------------------- /help/content/ong/ro/03-Setări/03-branding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/03-Setări/03-branding.md -------------------------------------------------------------------------------- /help/content/ong/ro/03-Setări/04-integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/03-Setări/04-integrations.md -------------------------------------------------------------------------------- /help/content/ong/ro/03-Setări/05-notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/03-Setări/05-notice.md -------------------------------------------------------------------------------- /help/content/ong/ro/03-Setări/06-social.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/03-Setări/06-social.md -------------------------------------------------------------------------------- /help/content/ong/ro/03-Setări/07-donations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/03-Setări/07-donations.md -------------------------------------------------------------------------------- /help/content/ong/ro/03-Setări/08-languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/03-Setări/08-languages.md -------------------------------------------------------------------------------- /help/content/ong/ro/03-Setări/09-menus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/03-Setări/09-menus.md -------------------------------------------------------------------------------- /help/content/ong/ro/04-Conținut/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/04-Conținut/01-intro.md -------------------------------------------------------------------------------- /help/content/ong/ro/04-Conținut/03-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/04-Conținut/03-pages.md -------------------------------------------------------------------------------- /help/content/ong/ro/04-Conținut/04-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/04-Conținut/04-blocks.md -------------------------------------------------------------------------------- /help/content/ong/ro/04-Conținut/05-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/04-Conținut/05-blog.md -------------------------------------------------------------------------------- /help/content/ong/ro/04-Conținut/06-forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/04-Conținut/06-forms.md -------------------------------------------------------------------------------- /help/content/ong/ro/04-Conținut/07-form-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/04-Conținut/07-form-blocks.md -------------------------------------------------------------------------------- /help/content/ong/ro/04-Conținut/09-people.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/04-Conținut/09-people.md -------------------------------------------------------------------------------- /help/content/ong/ro/04-Conținut/10-media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/04-Conținut/10-media.md -------------------------------------------------------------------------------- /help/content/ong/ro/04-Conținut/11-transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/04-Conținut/11-transfer.md -------------------------------------------------------------------------------- /help/content/ong/ro/04-Conținut/12-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/ong/ro/04-Conținut/12-test.md -------------------------------------------------------------------------------- /help/content/school/en/01-Introduction/02-what.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/01-Introduction/02-what.md -------------------------------------------------------------------------------- /help/content/school/en/02-Users/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/02-Users/01-intro.md -------------------------------------------------------------------------------- /help/content/school/en/02-Users/02-add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/02-Users/02-add.md -------------------------------------------------------------------------------- /help/content/school/en/02-Users/03-roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/02-Users/03-roles.md -------------------------------------------------------------------------------- /help/content/school/en/02-Users/04-edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/02-Users/04-edit.md -------------------------------------------------------------------------------- /help/content/school/en/03-Settings/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/03-Settings/01-intro.md -------------------------------------------------------------------------------- /help/content/school/en/03-Settings/02-general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/03-Settings/02-general.md -------------------------------------------------------------------------------- /help/content/school/en/03-Settings/03-branding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/03-Settings/03-branding.md -------------------------------------------------------------------------------- /help/content/school/en/03-Settings/05-notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/03-Settings/05-notice.md -------------------------------------------------------------------------------- /help/content/school/en/03-Settings/06-social.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/03-Settings/06-social.md -------------------------------------------------------------------------------- /help/content/school/en/03-Settings/09-menus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/03-Settings/09-menus.md -------------------------------------------------------------------------------- /help/content/school/en/04-Content/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/04-Content/01-intro.md -------------------------------------------------------------------------------- /help/content/school/en/04-Content/03-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/04-Content/03-pages.md -------------------------------------------------------------------------------- /help/content/school/en/04-Content/04-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/04-Content/04-blocks.md -------------------------------------------------------------------------------- /help/content/school/en/04-Content/05-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/04-Content/05-blog.md -------------------------------------------------------------------------------- /help/content/school/en/04-Content/06-forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/04-Content/06-forms.md -------------------------------------------------------------------------------- /help/content/school/en/04-Content/09-people.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/04-Content/09-people.md -------------------------------------------------------------------------------- /help/content/school/en/04-Content/10-media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/04-Content/10-media.md -------------------------------------------------------------------------------- /help/content/school/en/04-Content/11-transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/04-Content/11-transfer.md -------------------------------------------------------------------------------- /help/content/school/en/04-Content/12-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/en/04-Content/12-test.md -------------------------------------------------------------------------------- /help/content/school/ro/01-Introducere/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/01-Introducere/01-intro.md -------------------------------------------------------------------------------- /help/content/school/ro/01-Introducere/02-what.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/01-Introducere/02-what.md -------------------------------------------------------------------------------- /help/content/school/ro/02-Utilizatori/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/02-Utilizatori/01-intro.md -------------------------------------------------------------------------------- /help/content/school/ro/02-Utilizatori/02-add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/02-Utilizatori/02-add.md -------------------------------------------------------------------------------- /help/content/school/ro/02-Utilizatori/03-roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/02-Utilizatori/03-roles.md -------------------------------------------------------------------------------- /help/content/school/ro/02-Utilizatori/04-edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/02-Utilizatori/04-edit.md -------------------------------------------------------------------------------- /help/content/school/ro/03-Setări/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/03-Setări/01-intro.md -------------------------------------------------------------------------------- /help/content/school/ro/03-Setări/02-general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/03-Setări/02-general.md -------------------------------------------------------------------------------- /help/content/school/ro/03-Setări/03-branding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/03-Setări/03-branding.md -------------------------------------------------------------------------------- /help/content/school/ro/03-Setări/05-notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/03-Setări/05-notice.md -------------------------------------------------------------------------------- /help/content/school/ro/03-Setări/06-social.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/03-Setări/06-social.md -------------------------------------------------------------------------------- /help/content/school/ro/03-Setări/08-languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/03-Setări/08-languages.md -------------------------------------------------------------------------------- /help/content/school/ro/03-Setări/09-menus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/03-Setări/09-menus.md -------------------------------------------------------------------------------- /help/content/school/ro/04-Conținut/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/04-Conținut/01-intro.md -------------------------------------------------------------------------------- /help/content/school/ro/04-Conținut/03-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/04-Conținut/03-pages.md -------------------------------------------------------------------------------- /help/content/school/ro/04-Conținut/04-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/04-Conținut/04-blocks.md -------------------------------------------------------------------------------- /help/content/school/ro/04-Conținut/05-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/04-Conținut/05-blog.md -------------------------------------------------------------------------------- /help/content/school/ro/04-Conținut/06-forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/04-Conținut/06-forms.md -------------------------------------------------------------------------------- /help/content/school/ro/04-Conținut/09-people.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/04-Conținut/09-people.md -------------------------------------------------------------------------------- /help/content/school/ro/04-Conținut/10-media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/04-Conținut/10-media.md -------------------------------------------------------------------------------- /help/content/school/ro/04-Conținut/11-transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/04-Conținut/11-transfer.md -------------------------------------------------------------------------------- /help/content/school/ro/04-Conținut/12-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/content/school/ro/04-Conținut/12-test.md -------------------------------------------------------------------------------- /help/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/001.png -------------------------------------------------------------------------------- /help/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/002.png -------------------------------------------------------------------------------- /help/images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/003.png -------------------------------------------------------------------------------- /help/images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/004.png -------------------------------------------------------------------------------- /help/images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/005.png -------------------------------------------------------------------------------- /help/images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/006.png -------------------------------------------------------------------------------- /help/images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/007.png -------------------------------------------------------------------------------- /help/images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/008.png -------------------------------------------------------------------------------- /help/images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/009.png -------------------------------------------------------------------------------- /help/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/010.png -------------------------------------------------------------------------------- /help/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/011.png -------------------------------------------------------------------------------- /help/images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/012.png -------------------------------------------------------------------------------- /help/images/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/013.png -------------------------------------------------------------------------------- /help/images/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/014.png -------------------------------------------------------------------------------- /help/images/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/015.png -------------------------------------------------------------------------------- /help/images/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/016.png -------------------------------------------------------------------------------- /help/images/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/017.png -------------------------------------------------------------------------------- /help/images/018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/018.png -------------------------------------------------------------------------------- /help/images/019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/019.png -------------------------------------------------------------------------------- /help/images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/020.png -------------------------------------------------------------------------------- /help/images/021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/021.png -------------------------------------------------------------------------------- /help/images/022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/022.png -------------------------------------------------------------------------------- /help/images/023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/023.png -------------------------------------------------------------------------------- /help/images/024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/024.png -------------------------------------------------------------------------------- /help/images/025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/025.png -------------------------------------------------------------------------------- /help/images/026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/026.png -------------------------------------------------------------------------------- /help/images/027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/027.png -------------------------------------------------------------------------------- /help/images/028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/028.png -------------------------------------------------------------------------------- /help/images/029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/help/images/029.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lang/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ar.json -------------------------------------------------------------------------------- /lang/ar/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ar/banner.php -------------------------------------------------------------------------------- /lang/ar/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ar/email.php -------------------------------------------------------------------------------- /lang/ar/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ar/error.php -------------------------------------------------------------------------------- /lang/ar/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ar/validation.php -------------------------------------------------------------------------------- /lang/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/bs.json -------------------------------------------------------------------------------- /lang/bs/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/bs/banner.php -------------------------------------------------------------------------------- /lang/bs/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/bs/email.php -------------------------------------------------------------------------------- /lang/bs/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/bs/error.php -------------------------------------------------------------------------------- /lang/bs/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/bs/validation.php -------------------------------------------------------------------------------- /lang/cnr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/cnr.json -------------------------------------------------------------------------------- /lang/cnr/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/cnr/banner.php -------------------------------------------------------------------------------- /lang/cnr/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/cnr/email.php -------------------------------------------------------------------------------- /lang/cnr/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/cnr/error.php -------------------------------------------------------------------------------- /lang/cnr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/cnr/validation.php -------------------------------------------------------------------------------- /lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/de.json -------------------------------------------------------------------------------- /lang/de/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/de/banner.php -------------------------------------------------------------------------------- /lang/de/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/de/email.php -------------------------------------------------------------------------------- /lang/de/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/de/error.php -------------------------------------------------------------------------------- /lang/de/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/de/validation.php -------------------------------------------------------------------------------- /lang/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/el.json -------------------------------------------------------------------------------- /lang/el/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/el/banner.php -------------------------------------------------------------------------------- /lang/el/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/el/email.php -------------------------------------------------------------------------------- /lang/el/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/el/error.php -------------------------------------------------------------------------------- /lang/el/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/el/validation.php -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/en/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/en/banner.php -------------------------------------------------------------------------------- /lang/en/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/en/email.php -------------------------------------------------------------------------------- /lang/en/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/en/error.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/es.json -------------------------------------------------------------------------------- /lang/es/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/es/banner.php -------------------------------------------------------------------------------- /lang/es/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/es/email.php -------------------------------------------------------------------------------- /lang/es/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/es/error.php -------------------------------------------------------------------------------- /lang/es/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/es/validation.php -------------------------------------------------------------------------------- /lang/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/es_MX.json -------------------------------------------------------------------------------- /lang/es_MX/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/es_MX/banner.php -------------------------------------------------------------------------------- /lang/es_MX/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/es_MX/email.php -------------------------------------------------------------------------------- /lang/es_MX/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/es_MX/error.php -------------------------------------------------------------------------------- /lang/es_MX/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/es_MX/validation.php -------------------------------------------------------------------------------- /lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/fr.json -------------------------------------------------------------------------------- /lang/fr/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/fr/banner.php -------------------------------------------------------------------------------- /lang/fr/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/fr/email.php -------------------------------------------------------------------------------- /lang/fr/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/fr/error.php -------------------------------------------------------------------------------- /lang/fr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/fr/validation.php -------------------------------------------------------------------------------- /lang/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/hr.json -------------------------------------------------------------------------------- /lang/hr/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/hr/banner.php -------------------------------------------------------------------------------- /lang/hr/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/hr/email.php -------------------------------------------------------------------------------- /lang/hr/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/hr/error.php -------------------------------------------------------------------------------- /lang/hr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/hr/validation.php -------------------------------------------------------------------------------- /lang/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/hy.json -------------------------------------------------------------------------------- /lang/hy/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/hy/banner.php -------------------------------------------------------------------------------- /lang/hy/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/hy/email.php -------------------------------------------------------------------------------- /lang/hy/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/hy/error.php -------------------------------------------------------------------------------- /lang/hy/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/hy/validation.php -------------------------------------------------------------------------------- /lang/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/it.json -------------------------------------------------------------------------------- /lang/it/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/it/banner.php -------------------------------------------------------------------------------- /lang/it/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/it/email.php -------------------------------------------------------------------------------- /lang/it/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/it/error.php -------------------------------------------------------------------------------- /lang/it/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/it/validation.php -------------------------------------------------------------------------------- /lang/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ka.json -------------------------------------------------------------------------------- /lang/ka/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ka/banner.php -------------------------------------------------------------------------------- /lang/ka/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ka/email.php -------------------------------------------------------------------------------- /lang/ka/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ka/error.php -------------------------------------------------------------------------------- /lang/ka/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ka/validation.php -------------------------------------------------------------------------------- /lang/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/nl.json -------------------------------------------------------------------------------- /lang/nl/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/nl/banner.php -------------------------------------------------------------------------------- /lang/nl/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/nl/email.php -------------------------------------------------------------------------------- /lang/nl/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/nl/error.php -------------------------------------------------------------------------------- /lang/nl/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/nl/validation.php -------------------------------------------------------------------------------- /lang/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/pt.json -------------------------------------------------------------------------------- /lang/pt/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/pt/banner.php -------------------------------------------------------------------------------- /lang/pt/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/pt/email.php -------------------------------------------------------------------------------- /lang/pt/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/pt/error.php -------------------------------------------------------------------------------- /lang/pt/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/pt/validation.php -------------------------------------------------------------------------------- /lang/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ro.json -------------------------------------------------------------------------------- /lang/ro/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ro/banner.php -------------------------------------------------------------------------------- /lang/ro/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ro/email.php -------------------------------------------------------------------------------- /lang/ro/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ro/error.php -------------------------------------------------------------------------------- /lang/ro/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ro/validation.php -------------------------------------------------------------------------------- /lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ru.json -------------------------------------------------------------------------------- /lang/ru/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ru/banner.php -------------------------------------------------------------------------------- /lang/ru/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ru/email.php -------------------------------------------------------------------------------- /lang/ru/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ru/error.php -------------------------------------------------------------------------------- /lang/ru/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/ru/validation.php -------------------------------------------------------------------------------- /lang/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/sr.json -------------------------------------------------------------------------------- /lang/sr/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/sr/banner.php -------------------------------------------------------------------------------- /lang/sr/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/sr/email.php -------------------------------------------------------------------------------- /lang/sr/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/sr/error.php -------------------------------------------------------------------------------- /lang/sr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/sr/validation.php -------------------------------------------------------------------------------- /lang/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/tr.json -------------------------------------------------------------------------------- /lang/tr/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/tr/banner.php -------------------------------------------------------------------------------- /lang/tr/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/tr/email.php -------------------------------------------------------------------------------- /lang/tr/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/tr/error.php -------------------------------------------------------------------------------- /lang/tr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/tr/validation.php -------------------------------------------------------------------------------- /lang/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/uk.json -------------------------------------------------------------------------------- /lang/uk/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/uk/banner.php -------------------------------------------------------------------------------- /lang/uk/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/uk/email.php -------------------------------------------------------------------------------- /lang/uk/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/uk/error.php -------------------------------------------------------------------------------- /lang/uk/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/lang/uk/validation.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/css/admin.css -------------------------------------------------------------------------------- /resources/css/public.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/css/public.css -------------------------------------------------------------------------------- /resources/css/public.tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/css/public.tailwind.config.js -------------------------------------------------------------------------------- /resources/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/images/favicon.png -------------------------------------------------------------------------------- /resources/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/admin.js -------------------------------------------------------------------------------- /resources/js/components/Accordion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Accordion.vue -------------------------------------------------------------------------------- /resources/js/components/AppLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/AppLogo.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Block/Budget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Block/Budget.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Block/Cards.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Block/Cards.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Block/Carousel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Block/Carousel.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Block/Counter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Block/Counter.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Block/Divider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Block/Divider.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Block/Embed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Block/Embed.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Block/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Block/Form.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Block/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Block/Header.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Block/Html.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Block/Html.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Block/Image.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Block/Image.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Block/People.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Block/People.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Block/Progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Block/Progress.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Block/Text.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Block/Text.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/BlockItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/BlockItem.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/BlockList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/BlockList.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/BlockRepeater.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/BlockRepeater.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/BudgetLevel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/BudgetLevel.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Form/Checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Form/Checkbox.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Form/Content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Form/Content.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Form/Date.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Form/Date.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Form/Divider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Form/Divider.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Form/Email.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Form/Email.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Form/File.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Form/File.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Form/Number.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Form/Number.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Form/Radio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Form/Radio.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Form/Select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Form/Select.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Form/Text.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Form/Text.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Form/Textarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Form/Textarea.vue -------------------------------------------------------------------------------- /resources/js/components/Blocks/Form/Url.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Blocks/Form/Url.vue -------------------------------------------------------------------------------- /resources/js/components/Breadcrumbs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Breadcrumbs.vue -------------------------------------------------------------------------------- /resources/js/components/Dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Dropdown.vue -------------------------------------------------------------------------------- /resources/js/components/DropdownItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/DropdownItem.vue -------------------------------------------------------------------------------- /resources/js/components/Editor/BubbleMenus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Editor/BubbleMenus.vue -------------------------------------------------------------------------------- /resources/js/components/Editor/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Editor/Button.vue -------------------------------------------------------------------------------- /resources/js/components/Editor/FontColor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Editor/FontColor.vue -------------------------------------------------------------------------------- /resources/js/components/Editor/Toolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Editor/Toolbar.vue -------------------------------------------------------------------------------- /resources/js/components/FileTypeIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/FileTypeIcon.vue -------------------------------------------------------------------------------- /resources/js/components/FlashToast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/FlashToast.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Button.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Checkbox.vue -------------------------------------------------------------------------------- /resources/js/components/Form/CheckboxGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/CheckboxGroup.vue -------------------------------------------------------------------------------- /resources/js/components/Form/ColorPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/ColorPicker.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Container.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Datepicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Datepicker.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Draggable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Draggable.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Editor.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Field.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Field.vue -------------------------------------------------------------------------------- /resources/js/components/Form/File.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/File.vue -------------------------------------------------------------------------------- /resources/js/components/Form/IconPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/IconPicker.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Input.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Label.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Label.vue -------------------------------------------------------------------------------- /resources/js/components/Form/LocalizedField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/LocalizedField.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Media.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Media.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Radio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Radio.vue -------------------------------------------------------------------------------- /resources/js/components/Form/RadioGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/RadioGroup.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Range.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Range.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Related.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Related.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Select.vue -------------------------------------------------------------------------------- /resources/js/components/Form/SelectMultiple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/SelectMultiple.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Slug.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Slug.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Switch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Switch.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Textarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Textarea.vue -------------------------------------------------------------------------------- /resources/js/components/Form/Toggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Form/Toggle.vue -------------------------------------------------------------------------------- /resources/js/components/Help/Ask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Help/Ask.vue -------------------------------------------------------------------------------- /resources/js/components/Help/Help.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Help/Help.vue -------------------------------------------------------------------------------- /resources/js/components/Help/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Help/List.vue -------------------------------------------------------------------------------- /resources/js/components/Help/SectionBadge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Help/SectionBadge.vue -------------------------------------------------------------------------------- /resources/js/components/Help/Topic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Help/Topic.vue -------------------------------------------------------------------------------- /resources/js/components/Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Icon.vue -------------------------------------------------------------------------------- /resources/js/components/InputError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/InputError.vue -------------------------------------------------------------------------------- /resources/js/components/LanguageReset.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/LanguageReset.vue -------------------------------------------------------------------------------- /resources/js/components/LanguageSwitcher.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/LanguageSwitcher.vue -------------------------------------------------------------------------------- /resources/js/components/Layout/Authenticated.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Layout/Authenticated.vue -------------------------------------------------------------------------------- /resources/js/components/Layout/Guest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Layout/Guest.vue -------------------------------------------------------------------------------- /resources/js/components/Media/Actions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Media/Actions.vue -------------------------------------------------------------------------------- /resources/js/components/Media/Details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Media/Details.vue -------------------------------------------------------------------------------- /resources/js/components/Media/Library.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Media/Library.vue -------------------------------------------------------------------------------- /resources/js/components/Media/ManagerControls.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Media/ManagerControls.vue -------------------------------------------------------------------------------- /resources/js/components/Media/Uploader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Media/Uploader.vue -------------------------------------------------------------------------------- /resources/js/components/Menu/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Menu/Item.vue -------------------------------------------------------------------------------- /resources/js/components/Menu/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Menu/Navbar.vue -------------------------------------------------------------------------------- /resources/js/components/Menu/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Menu/Search.vue -------------------------------------------------------------------------------- /resources/js/components/MenuBuilder/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/MenuBuilder/Item.vue -------------------------------------------------------------------------------- /resources/js/components/MenuBuilder/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/MenuBuilder/List.vue -------------------------------------------------------------------------------- /resources/js/components/Modal/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Modal/Base.vue -------------------------------------------------------------------------------- /resources/js/components/Modal/Confirmation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Modal/Confirmation.vue -------------------------------------------------------------------------------- /resources/js/components/NavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/NavLink.vue -------------------------------------------------------------------------------- /resources/js/components/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Pagination.vue -------------------------------------------------------------------------------- /resources/js/components/Panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Panel.vue -------------------------------------------------------------------------------- /resources/js/components/PanelModel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/PanelModel.vue -------------------------------------------------------------------------------- /resources/js/components/ProgressBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/ProgressBar.vue -------------------------------------------------------------------------------- /resources/js/components/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Search.vue -------------------------------------------------------------------------------- /resources/js/components/Settings/Section.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Settings/Section.vue -------------------------------------------------------------------------------- /resources/js/components/Table/InertiaTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Table/InertiaTable.vue -------------------------------------------------------------------------------- /resources/js/components/Table/TableActions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Table/TableActions.vue -------------------------------------------------------------------------------- /resources/js/components/Table/TableEmpty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Table/TableEmpty.vue -------------------------------------------------------------------------------- /resources/js/components/Table/TableFilters.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Table/TableFilters.vue -------------------------------------------------------------------------------- /resources/js/components/Table/TableHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Table/TableHeader.vue -------------------------------------------------------------------------------- /resources/js/components/Table/TableRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/Table/TableRow.vue -------------------------------------------------------------------------------- /resources/js/components/ValidationErrors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/components/ValidationErrors.vue -------------------------------------------------------------------------------- /resources/js/helpers/defaultValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/defaultValue.js -------------------------------------------------------------------------------- /resources/js/helpers/defineBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/defineBlock.js -------------------------------------------------------------------------------- /resources/js/helpers/defineFormBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/defineFormBlock.js -------------------------------------------------------------------------------- /resources/js/helpers/defineInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/defineInput.js -------------------------------------------------------------------------------- /resources/js/helpers/defineRepeater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/defineRepeater.js -------------------------------------------------------------------------------- /resources/js/helpers/ensureCallbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/ensureCallbacks.js -------------------------------------------------------------------------------- /resources/js/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/index.js -------------------------------------------------------------------------------- /resources/js/helpers/typeOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/typeOf.js -------------------------------------------------------------------------------- /resources/js/helpers/useBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/useBlock.js -------------------------------------------------------------------------------- /resources/js/helpers/useEdition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/useEdition.js -------------------------------------------------------------------------------- /resources/js/helpers/useFeature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/useFeature.js -------------------------------------------------------------------------------- /resources/js/helpers/useFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/useFilter.js -------------------------------------------------------------------------------- /resources/js/helpers/useForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/useForm.js -------------------------------------------------------------------------------- /resources/js/helpers/useLocale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/useLocale.js -------------------------------------------------------------------------------- /resources/js/helpers/useMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/useMedia.js -------------------------------------------------------------------------------- /resources/js/helpers/useRelated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/useRelated.js -------------------------------------------------------------------------------- /resources/js/helpers/useRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/helpers/useRoute.js -------------------------------------------------------------------------------- /resources/js/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/icons.json -------------------------------------------------------------------------------- /resources/js/pages/Auth/ConfirmPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Auth/ConfirmPassword.vue -------------------------------------------------------------------------------- /resources/js/pages/Auth/ForgotPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Auth/ForgotPassword.vue -------------------------------------------------------------------------------- /resources/js/pages/Auth/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Auth/Login.vue -------------------------------------------------------------------------------- /resources/js/pages/Auth/ResetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Auth/ResetPassword.vue -------------------------------------------------------------------------------- /resources/js/pages/Auth/VerifyEmail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Auth/VerifyEmail.vue -------------------------------------------------------------------------------- /resources/js/pages/Auth/Welcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Auth/Welcome.vue -------------------------------------------------------------------------------- /resources/js/pages/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Dashboard.vue -------------------------------------------------------------------------------- /resources/js/pages/Decisions/Authors/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Decisions/Authors/Edit.vue -------------------------------------------------------------------------------- /resources/js/pages/Decisions/Authors/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Decisions/Authors/Index.vue -------------------------------------------------------------------------------- /resources/js/pages/Decisions/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Decisions/Edit.vue -------------------------------------------------------------------------------- /resources/js/pages/Decisions/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Decisions/Index.vue -------------------------------------------------------------------------------- /resources/js/pages/Forms/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Forms/Edit.vue -------------------------------------------------------------------------------- /resources/js/pages/Forms/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Forms/Index.vue -------------------------------------------------------------------------------- /resources/js/pages/Forms/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Forms/Show.vue -------------------------------------------------------------------------------- /resources/js/pages/Forms/Submission.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Forms/Submission.vue -------------------------------------------------------------------------------- /resources/js/pages/Languages/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Languages/Edit.vue -------------------------------------------------------------------------------- /resources/js/pages/Languages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Languages/Index.vue -------------------------------------------------------------------------------- /resources/js/pages/Menus/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Menus/Edit.vue -------------------------------------------------------------------------------- /resources/js/pages/Pages/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Pages/Edit.vue -------------------------------------------------------------------------------- /resources/js/pages/Pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Pages/Index.vue -------------------------------------------------------------------------------- /resources/js/pages/Partners/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Partners/Edit.vue -------------------------------------------------------------------------------- /resources/js/pages/Partners/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Partners/Index.vue -------------------------------------------------------------------------------- /resources/js/pages/People/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/People/Edit.vue -------------------------------------------------------------------------------- /resources/js/pages/People/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/People/Index.vue -------------------------------------------------------------------------------- /resources/js/pages/Posts/Categories/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Posts/Categories/Edit.vue -------------------------------------------------------------------------------- /resources/js/pages/Posts/Categories/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Posts/Categories/Index.vue -------------------------------------------------------------------------------- /resources/js/pages/Posts/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Posts/Edit.vue -------------------------------------------------------------------------------- /resources/js/pages/Posts/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Posts/Index.vue -------------------------------------------------------------------------------- /resources/js/pages/Settings/Donations.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Settings/Donations.vue -------------------------------------------------------------------------------- /resources/js/pages/Settings/Site.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Settings/Site.vue -------------------------------------------------------------------------------- /resources/js/pages/Settings/SiteNotice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Settings/SiteNotice.vue -------------------------------------------------------------------------------- /resources/js/pages/Settings/Social.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Settings/Social.vue -------------------------------------------------------------------------------- /resources/js/pages/Users/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Users/Edit.vue -------------------------------------------------------------------------------- /resources/js/pages/Users/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/pages/Users/Index.vue -------------------------------------------------------------------------------- /resources/js/plugins/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/plugins/i18n.js -------------------------------------------------------------------------------- /resources/js/plugins/registerComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/plugins/registerComponents.js -------------------------------------------------------------------------------- /resources/js/public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/public.js -------------------------------------------------------------------------------- /resources/js/public/budget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/public/budget.js -------------------------------------------------------------------------------- /resources/js/public/decisionTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/public/decisionTree.js -------------------------------------------------------------------------------- /resources/js/public/fileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/public/fileupload.js -------------------------------------------------------------------------------- /resources/js/public/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/js/public/form.js -------------------------------------------------------------------------------- /resources/svg/code4-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/svg/code4-sm.svg -------------------------------------------------------------------------------- /resources/svg/code4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/svg/code4.svg -------------------------------------------------------------------------------- /resources/svg/commitglobal-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/svg/commitglobal-sm.svg -------------------------------------------------------------------------------- /resources/svg/commitglobal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/svg/commitglobal.svg -------------------------------------------------------------------------------- /resources/svg/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/svg/drag.svg -------------------------------------------------------------------------------- /resources/svg/fallback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/svg/fallback.svg -------------------------------------------------------------------------------- /resources/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/svg/logo.svg -------------------------------------------------------------------------------- /resources/views/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/admin.blade.php -------------------------------------------------------------------------------- /resources/views/components/blocks.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/components/blocks.blade.php -------------------------------------------------------------------------------- /resources/views/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/components/categories.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/components/categories.blade.php -------------------------------------------------------------------------------- /resources/views/components/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/components/form.blade.php -------------------------------------------------------------------------------- /resources/views/components/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/components/layout.blade.php -------------------------------------------------------------------------------- /resources/views/components/site/meta.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/components/site/meta.blade.php -------------------------------------------------------------------------------- /resources/views/errors/401.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/errors/401.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/errors/419.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/errors/419.blade.php -------------------------------------------------------------------------------- /resources/views/errors/429.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/errors/429.blade.php -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/errors/500.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/errors/minimal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/errors/minimal.blade.php -------------------------------------------------------------------------------- /resources/views/front/decisions/_loop.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/front/decisions/_loop.blade.php -------------------------------------------------------------------------------- /resources/views/front/decisions/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/front/decisions/index.blade.php -------------------------------------------------------------------------------- /resources/views/front/decisions/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/front/decisions/show.blade.php -------------------------------------------------------------------------------- /resources/views/front/forms/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/front/forms/show.blade.php -------------------------------------------------------------------------------- /resources/views/front/pages/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/front/pages/show.blade.php -------------------------------------------------------------------------------- /resources/views/front/people/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/front/people/show.blade.php -------------------------------------------------------------------------------- /resources/views/front/posts/_loop.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/front/posts/_loop.blade.php -------------------------------------------------------------------------------- /resources/views/front/posts/category.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/front/posts/category.blade.php -------------------------------------------------------------------------------- /resources/views/front/posts/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/front/posts/index.blade.php -------------------------------------------------------------------------------- /resources/views/front/posts/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/front/posts/show.blade.php -------------------------------------------------------------------------------- /resources/views/front/search/results.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/front/search/results.blade.php -------------------------------------------------------------------------------- /resources/views/pagination/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/pagination/default.blade.php -------------------------------------------------------------------------------- /resources/views/pagination/simple.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/pagination/simple.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/vendor/mail/html/link.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/resources/views/vendor/mail/text/link.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/routes/admin.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/clockwork/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/storage/clockwork/.gitignore -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /stubs/blocks/blade.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/stubs/blocks/blade.stub -------------------------------------------------------------------------------- /stubs/blocks/view-component.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/stubs/blocks/view-component.stub -------------------------------------------------------------------------------- /stubs/blocks/vue.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/stubs/blocks/vue.stub -------------------------------------------------------------------------------- /stubs/migration.create.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/stubs/migration.create.stub -------------------------------------------------------------------------------- /stubs/migration.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/stubs/migration.stub -------------------------------------------------------------------------------- /stubs/migration.update.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/stubs/migration.update.stub -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/tests/Feature/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/tests/Feature/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/FormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/tests/Feature/FormTest.php -------------------------------------------------------------------------------- /tests/Feature/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/tests/Feature/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/tests/Feature/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code4romania/website-factory/HEAD/vite.config.js --------------------------------------------------------------------------------