├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── composer.json ├── config ├── admin.php ├── blog.php ├── cdn.php ├── date.php ├── frontend.php ├── key.php └── site.php ├── database ├── factories │ └── ModelFactory.php └── migrations │ ├── 5_2_0_0_create_admin_actions.php │ ├── 5_2_0_0_create_admin_controllers.php │ ├── 5_2_0_0_create_admin_logs.php │ ├── 5_2_0_0_create_admin_menu.php │ ├── 5_2_0_0_create_backups.php │ ├── 5_2_0_0_create_block_beacons.php │ ├── 5_2_0_0_create_block_category.php │ ├── 5_2_0_0_create_block_form_rules.php │ ├── 5_2_0_0_create_block_repeaters.php │ ├── 5_2_0_0_create_block_selectopts.php │ ├── 5_2_0_0_create_block_video_cache.php │ ├── 5_2_0_0_create_blocks.php │ ├── 5_2_0_0_create_form_submissions.php │ ├── 5_2_0_0_create_languages.php │ ├── 5_2_0_0_create_menu_items.php │ ├── 5_2_0_0_create_menus.php │ ├── 5_2_0_0_create_page_blocks.php │ ├── 5_2_0_0_create_page_blocks_default.php │ ├── 5_2_0_0_create_page_blocks_repeater_data.php │ ├── 5_2_0_0_create_page_blocks_repeater_rows.php │ ├── 5_2_0_0_create_page_group.php │ ├── 5_2_0_0_create_page_group_attributes.php │ ├── 5_2_0_0_create_page_lang.php │ ├── 5_2_0_0_create_page_publish_requests.php │ ├── 5_2_0_0_create_page_redirects.php │ ├── 5_2_0_0_create_page_search_data.php │ ├── 5_2_0_0_create_page_search_log.php │ ├── 5_2_0_0_create_page_versions.php │ ├── 5_2_0_0_create_pages.php │ ├── 5_2_0_0_create_settings.php │ ├── 5_2_0_0_create_template_blocks.php │ ├── 5_2_0_0_create_templates.php │ ├── 5_2_0_0_create_theme_blocks.php │ ├── 5_2_0_0_create_themes.php │ ├── 5_2_0_0_create_user_roles.php │ ├── 5_2_0_0_create_user_roles_actions.php │ ├── 5_2_0_0_create_user_roles_page_actions.php │ ├── 5_2_0_0_create_users.php │ ├── 5_2_19_0_update_theme_actions.php │ ├── 5_2_20_0_update_theme_select_actions.php │ ├── 5_2_22_0_update_theme_manage_actions.php │ ├── 5_2_23_0_add_secure_folders_setting.php │ ├── 5_2_26_0_add_theme_actions.php │ ├── 5_2_27_0_add_block_notes.php │ ├── 5_2_30_0_add_pages_sitemap.php │ ├── 5_2_35_0_create_page_versions_schedule.php │ ├── 5_2_36_0_update_search_log_admin.php │ ├── 5_3_0_0_add_theme_editor_actions.php │ ├── 5_3_0_0_add_user_name.php │ ├── 5_3_0_0_create_page_group_pages.php │ ├── 5_3_0_0_update_group_pages.php │ ├── 5_3_15_0_update_menu_items.php │ ├── 5_3_23_0_add_estimote_support.php │ ├── 5_3_5_0_add_search_action.php │ ├── 5_4_0_0_add_cache_setting.php │ ├── 5_4_0_0_add_custom_page_names_in_menu.php │ ├── 5_4_0_0_block_note_null.php │ ├── 5_4_0_0_create_theme_templates.php │ ├── 5_4_0_0_hide_subpage_in_menu.php │ ├── 5_4_0_0_repeater_item_name.php │ └── 5_5_0_0_repeater_max_rows.php ├── hooks └── laravel.php ├── phpunit.xml ├── public ├── ace │ └── mode-html_blade.js ├── app │ ├── css │ │ ├── main.css │ │ └── sortable.css │ ├── img │ │ ├── glyphicons-halflings.png │ │ ├── line.jpg │ │ └── logo.png │ └── js │ │ ├── editor.js │ │ ├── functions.js │ │ ├── gallery.js │ │ ├── main.js │ │ ├── pageInfo.js │ │ ├── router.js │ │ └── versions.js ├── jquery-ui │ └── jquery-ui-1.12.1.custom.zip ├── jquery │ └── tinymce │ │ └── tinymce.gzip.php └── uploads │ ├── banners │ └── .gitignore │ ├── catalogue │ ├── category │ │ └── .gitignore │ ├── config.php │ └── product │ │ └── .gitignore │ ├── cms │ └── .gitignore │ ├── config.php │ ├── pdfs │ └── .gitignore │ ├── secure │ └── .gitignore │ ├── system │ ├── config.php │ ├── forms │ │ └── .gitignore │ └── gallery │ │ └── .gitignore │ └── team │ └── .gitignore ├── resources └── views │ ├── admin │ ├── asset_builder │ │ └── main.blade.php │ ├── blocks │ │ ├── comment │ │ │ └── main.blade.php │ │ ├── datetime │ │ │ └── main.blade.php │ │ ├── form │ │ │ └── main.blade.php │ │ ├── gallery │ │ │ └── main.blade.php │ │ ├── image │ │ │ └── main.blade.php │ │ ├── link │ │ │ └── main.blade.php │ │ ├── repeater │ │ │ ├── main.blade.php │ │ │ └── row.blade.php │ │ ├── richtext │ │ │ └── main.blade.php │ │ ├── select │ │ │ └── main.blade.php │ │ ├── selectclass │ │ │ └── main.blade.php │ │ ├── selectmultiple │ │ │ └── main.blade.php │ │ ├── selectmultiplewnew │ │ │ └── main.blade.php │ │ ├── selectuser │ │ │ └── main.blade.php │ │ ├── selectwprice │ │ │ └── main.blade.php │ │ ├── string │ │ │ └── main.blade.php │ │ ├── stringwcolour │ │ │ └── main.blade.php │ │ ├── stringwprice │ │ │ └── main.blade.php │ │ ├── stringwpricecolour │ │ │ └── main.blade.php │ │ ├── text │ │ │ └── main.blade.php │ │ └── video │ │ │ └── main.blade.php │ ├── menus │ │ ├── sections │ │ │ ├── item.blade.php │ │ │ ├── subitem.blade.php │ │ │ └── submenu.blade.php │ │ └── system │ │ │ └── item.blade.php │ ├── modals │ │ ├── general │ │ │ └── delete_item.blade.php │ │ ├── menus │ │ │ ├── add_item.blade.php │ │ │ ├── rename_item.blade.php │ │ │ └── sub_level_item.blade.php │ │ ├── pages │ │ │ ├── publish.blade.php │ │ │ ├── publish_schedule.blade.php │ │ │ ├── rename_version.blade.php │ │ │ └── request_publish.blade.php │ │ ├── roles │ │ │ ├── add.blade.php │ │ │ └── delete.blade.php │ │ └── themes │ │ │ ├── delete.blade.php │ │ │ ├── export.blade.php │ │ │ ├── install.blade.php │ │ │ ├── install_confirm.blade.php │ │ │ └── install_error.blade.php │ ├── pages │ │ ├── account.blade.php │ │ ├── account │ │ │ ├── blog.blade.php │ │ │ ├── language.blade.php │ │ │ ├── name.blade.php │ │ │ └── password.blade.php │ │ ├── blocks.blade.php │ │ ├── dashboard.blade.php │ │ ├── filemanager.blade.php │ │ ├── forgotten_password.blade.php │ │ ├── forms │ │ │ ├── list.blade.php │ │ │ └── submissions.blade.php │ │ ├── gallery.blade.php │ │ ├── gallery │ │ │ └── list.blade.php │ │ ├── groups.blade.php │ │ ├── groups │ │ │ └── edit.blade.php │ │ ├── home │ │ │ ├── logs.blade.php │ │ │ └── requests.blade.php │ │ ├── install.blade.php │ │ ├── login.blade.php │ │ ├── menus.blade.php │ │ ├── pages.blade.php │ │ ├── pages │ │ │ ├── add.blade.php │ │ │ └── edit.blade.php │ │ ├── redirects.blade.php │ │ ├── roles.blade.php │ │ ├── roles │ │ │ └── pages.blade.php │ │ ├── search.blade.php │ │ ├── system.blade.php │ │ ├── system │ │ │ ├── upgrade.blade.php │ │ │ └── validate-db.blade.php │ │ ├── themes.blade.php │ │ ├── themes │ │ │ ├── beacons.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── forms.blade.php │ │ │ ├── list.blade.php │ │ │ ├── selects.blade.php │ │ │ └── update.blade.php │ │ ├── tools │ │ │ └── wordpress │ │ │ │ └── import.blade.php │ │ ├── users.blade.php │ │ └── users │ │ │ ├── add.blade.php │ │ │ ├── edit.blade.php │ │ │ └── role.blade.php │ ├── partials │ │ ├── forms │ │ │ └── submissions.blade.php │ │ ├── groups │ │ │ ├── page_row.blade.php │ │ │ └── page_table.blade.php │ │ ├── logs │ │ │ └── table.blade.php │ │ ├── menus │ │ │ ├── li.blade.php │ │ │ ├── ol.blade.php │ │ │ ├── page_li.blade.php │ │ │ └── page_ol.blade.php │ │ ├── pages │ │ │ ├── li.blade.php │ │ │ └── ol.blade.php │ │ ├── roles │ │ │ ├── group.blade.php │ │ │ ├── option.blade.php │ │ │ ├── pages │ │ │ │ ├── li.blade.php │ │ │ │ └── ul.blade.php │ │ │ └── section.blade.php │ │ ├── tabs │ │ │ ├── content.blade.php │ │ │ ├── header.blade.php │ │ │ ├── page_info │ │ │ │ ├── display_info.blade.php │ │ │ │ ├── groups.blade.php │ │ │ │ ├── live_options.blade.php │ │ │ │ └── page_info.blade.php │ │ │ ├── publish_requests │ │ │ │ ├── main.blade.php │ │ │ │ └── table.blade.php │ │ │ └── versions │ │ │ │ ├── main.blade.php │ │ │ │ └── table.blade.php │ │ ├── themes │ │ │ ├── beacons │ │ │ │ └── rows.blade.php │ │ │ ├── filetree.blade.php │ │ │ ├── thumbs.blade.php │ │ │ └── thumbs │ │ │ │ └── button.blade.php │ │ └── users │ │ │ ├── forms │ │ │ ├── blog.blade.php │ │ │ ├── name.blade.php │ │ │ └── password.blade.php │ │ │ └── info.blade.php │ └── template │ │ └── main.blade.php │ └── frontend │ ├── form │ └── wrap.blade.php │ └── menu │ └── items.blade.php ├── src ├── CmsServiceProvider.php ├── Console │ ├── Assets │ │ ├── AbstractAsset.php │ │ ├── AceEditor.php │ │ ├── App.php │ │ ├── Bootstrap.php │ │ ├── FileManager.php │ │ ├── GalleryFileUpdates.php │ │ ├── JQuery.php │ │ ├── JQueryUI.php │ │ ├── SecureImage.php │ │ ├── StorageFileUpdates.php │ │ └── Themes.php │ └── Commands │ │ ├── Migrate.php │ │ └── UpdateAssets.php ├── Contracts │ └── PageBuilder.php ├── Events │ ├── Admin │ │ ├── AuthRoute.php │ │ ├── LoadResponse.php │ │ └── ThemeBuilderInit.php │ └── Cms │ │ ├── GeneratePage │ │ ├── LoadErrorTemplate.php │ │ ├── LoadPageTemplate.php │ │ └── LoadedPageResponse.php │ │ ├── LoadAuth.php │ │ ├── LoadConfig.php │ │ ├── LoadMiddleware.php │ │ ├── LoadedConfig.php │ │ ├── Page │ │ └── Search.php │ │ ├── SetViewPaths.php │ │ └── SubmitFormData.php ├── Exceptions │ ├── CmsPageException.php │ └── PageBuilderException.php ├── Facades │ ├── FormMessage.php │ ├── Install.php │ └── PageBuilder.php ├── Helpers │ ├── Admin │ │ ├── FileManager.php │ │ ├── GalleryUploadHandler.php │ │ ├── Import │ │ │ ├── Block.php │ │ │ └── BlocksCollection.php │ │ ├── Routes.php │ │ ├── Tools │ │ │ └── Import │ │ │ │ └── WpApi.php │ │ ├── Validation │ │ │ ├── Database.php │ │ │ └── Database │ │ │ │ ├── Blueprint.php │ │ │ │ ├── Column.php │ │ │ │ ├── DB.php │ │ │ │ └── Schema.php │ │ └── View │ │ │ └── AdminMenu.php │ └── Cms │ │ ├── Captcha │ │ └── Securimage.php │ │ ├── CoasterGuard.php │ │ ├── Croppa │ │ ├── Croppa.php │ │ └── CroppaFacade.php │ │ ├── DateTimeHelper.php │ │ ├── Email.php │ │ ├── File │ │ ├── Directory.php │ │ ├── File.php │ │ ├── SecureUpload.php │ │ └── Zip.php │ │ ├── Html │ │ └── DOMDocument.php │ │ ├── Install.php │ │ ├── Page │ │ ├── Feed.php │ │ ├── PageCache.php │ │ ├── PageLoader.php │ │ ├── PageLoaderDummy.php │ │ ├── PageLoaderSpoof.php │ │ ├── Path.php │ │ └── Search │ │ │ ├── Cms.php │ │ │ └── WordPress.php │ │ ├── StringHelper.php │ │ └── View │ │ ├── CmsBlockInput.php │ │ ├── FormWrap.php │ │ └── PaginatorRender.php ├── Http │ ├── Controllers │ │ ├── AdminController.php │ │ ├── AdminControllers │ │ │ ├── AccountController.php │ │ │ ├── AdminSearchController.php │ │ │ ├── AuthController.php │ │ │ ├── BackupsController.php │ │ │ ├── BlocksController.php │ │ │ ├── FilemanagerController.php │ │ │ ├── FormsController.php │ │ │ ├── GalleryController.php │ │ │ ├── GroupsController.php │ │ │ ├── HomeController.php │ │ │ ├── ImportWpController.php │ │ │ ├── MenusController.php │ │ │ ├── PagesController.php │ │ │ ├── RedirectsController.php │ │ │ ├── RepeatersController.php │ │ │ ├── RolesController.php │ │ │ ├── SearchController.php │ │ │ ├── SystemController.php │ │ │ ├── ThemesController.php │ │ │ └── UsersController.php │ │ ├── CmsController.php │ │ └── InstallController.php │ └── Middleware │ │ ├── AdminAuth.php │ │ ├── GuestAuth.php │ │ ├── SecureUpload.php │ │ └── UploadChecks.php ├── Libraries │ ├── Beacons │ │ ├── BeaconAbstract.php │ │ ├── EstimoteBeacon.php │ │ └── KontaktBeacon.php │ ├── Blocks │ │ ├── AbstractBlock.php │ │ ├── Comment.php │ │ ├── Datetime.php │ │ ├── Form.php │ │ ├── Gallery.php │ │ ├── Image.php │ │ ├── Link.php │ │ ├── Repeater.php │ │ ├── Richtext.php │ │ ├── Select.php │ │ ├── Selectclass.php │ │ ├── Selectmultiple.php │ │ ├── Selectmultiplewnew.php │ │ ├── Selectpage.php │ │ ├── Selectpages.php │ │ ├── Selectuser.php │ │ ├── Selectwprice.php │ │ ├── String_.php │ │ ├── Stringwcolour.php │ │ ├── Stringwprice.php │ │ ├── Stringwpricecolour.php │ │ ├── Text.php │ │ └── Video.php │ ├── Builder │ │ ├── AssetBuilder.php │ │ ├── FormMessage.php │ │ ├── MenuBuilder.php │ │ ├── MenuTree.php │ │ ├── PageBuilder.php │ │ ├── PageBuilder │ │ │ ├── DefaultInstance.php │ │ │ └── ThemeBuilderInstance.php │ │ └── ViewClasses │ │ │ ├── BreadCrumb.php │ │ │ ├── MenuItemDetails.php │ │ │ └── PageDetails.php │ ├── Export │ │ ├── AbstractExport.php │ │ ├── Blocks │ │ │ ├── CategoryExport.php │ │ │ ├── FormRulesExport.php │ │ │ └── SelectOptionExport.php │ │ ├── BlocksExport.php │ │ ├── Content │ │ │ ├── PageBlocksExport.php │ │ │ └── RepeaterBlocksExport.php │ │ ├── ContentExport.php │ │ ├── Groups │ │ │ └── GroupAttributesExport.php │ │ ├── GroupsExport.php │ │ ├── Menus │ │ │ └── MenuItemsExport.php │ │ ├── MenusExport.php │ │ └── PagesExport.php │ ├── Import │ │ ├── AbstractImport.php │ │ ├── Blocks │ │ │ ├── CategoryImport.php │ │ │ ├── FormRulesImport.php │ │ │ └── SelectOptionImport.php │ │ ├── BlocksImport.php │ │ ├── Content │ │ │ ├── PageBlocksImport.php │ │ │ └── RepeaterBlocksImport.php │ │ ├── ContentImport.php │ │ ├── Groups │ │ │ └── GroupAttributesImport.php │ │ ├── GroupsImport.php │ │ ├── Menus │ │ │ └── MenuItemsImport.php │ │ ├── MenusImport.php │ │ └── PagesImport.php │ └── Traits │ │ ├── DataPreLoad.php │ │ └── Logger.php ├── Listeners │ └── Admin │ │ └── AuthRouteCheck.php ├── Models │ ├── AdminAction.php │ ├── AdminController.php │ ├── AdminLog.php │ ├── AdminMenu.php │ ├── Backup.php │ ├── Block.php │ ├── BlockBeacon.php │ ├── BlockCategory.php │ ├── BlockFormRule.php │ ├── BlockRepeater.php │ ├── BlockSelectOption.php │ ├── BlockVideoCache.php │ ├── FormSubmission.php │ ├── Language.php │ ├── Menu.php │ ├── MenuItem.php │ ├── Page.php │ ├── PageBlock.php │ ├── PageBlockDefault.php │ ├── PageBlockRepeaterData.php │ ├── PageBlockRepeaterRows.php │ ├── PageGroup.php │ ├── PageGroupAttribute.php │ ├── PageGroupPage.php │ ├── PageLang.php │ ├── PagePublishRequests.php │ ├── PageRedirect.php │ ├── PageSearchData.php │ ├── PageSearchLog.php │ ├── PageVersion.php │ ├── PageVersionSchedule.php │ ├── Setting.php │ ├── Template.php │ ├── Theme.php │ ├── ThemeBlock.php │ ├── ThemeTemplate.php │ ├── ThemeTemplateBlock.php │ ├── User.php │ ├── UserRole.php │ ├── UserRoleAction.php │ └── UserRolePageAction.php ├── Notifications │ ├── NewAccount.php │ └── PasswordReset.php ├── Providers │ ├── CoasterAuthUserProvider.php │ ├── CoasterConfigProvider.php │ ├── CoasterConsoleProvider.php │ ├── CoasterEventsProvider.php │ ├── CoasterPageBuilderProvider.php │ └── CoasterRoutesProvider.php └── routes │ └── web │ ├── admin-auth.php │ ├── admin-guest.php │ ├── admin.php │ ├── cms.php │ └── install.php ├── tests ├── .DS_Store ├── CreatesApplication.php ├── Feature │ ├── .DS_Store │ ├── Admin │ │ ├── LoginScreenTest.php │ │ ├── PagesAddTest.php │ │ ├── PagesTest.php │ │ └── Traits │ │ │ └── AdminActions.php │ ├── Blocks │ │ ├── ImageBlockTest.php │ │ ├── RepeaterBlockTest.php │ │ ├── StringBlockTest.php │ │ ├── StringWPriceBlockTest.php │ │ └── Traits │ │ │ └── BlockTrait.php │ ├── Frontend │ │ ├── DisplayPagesTest.php │ │ └── RedirectTest.php │ ├── Install │ │ └── InstallingTest.php │ └── Traits │ │ └── PagesTrait.php ├── TestCase.php ├── Unit │ ├── .DS_Store │ └── Pagebuilder │ │ └── DefaultPageBuilderTest.php ├── autoload.php └── testApp │ ├── .env │ ├── bootstrap │ ├── app.php │ └── cache │ │ ├── .gitignore │ │ ├── packages.php │ │ └── services.php │ ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── session.php │ └── view.php │ └── storage │ ├── framework │ ├── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore │ └── logs │ └── .gitingore └── updateAssets /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/composer.json -------------------------------------------------------------------------------- /config/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/config/admin.php -------------------------------------------------------------------------------- /config/blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/config/blog.php -------------------------------------------------------------------------------- /config/cdn.php: -------------------------------------------------------------------------------- 1 | '' // not added yet 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /config/date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/config/date.php -------------------------------------------------------------------------------- /config/frontend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/config/frontend.php -------------------------------------------------------------------------------- /config/key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/config/key.php -------------------------------------------------------------------------------- /config/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/config/site.php -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_admin_actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_admin_actions.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_admin_controllers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_admin_controllers.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_admin_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_admin_logs.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_admin_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_admin_menu.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_backups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_backups.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_block_beacons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_block_beacons.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_block_category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_block_category.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_block_form_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_block_form_rules.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_block_repeaters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_block_repeaters.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_block_selectopts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_block_selectopts.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_block_video_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_block_video_cache.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_blocks.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_form_submissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_form_submissions.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_languages.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_menu_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_menu_items.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_menus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_menus.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_page_blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_page_blocks.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_page_blocks_default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_page_blocks_default.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_page_blocks_repeater_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_page_blocks_repeater_data.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_page_blocks_repeater_rows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_page_blocks_repeater_rows.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_page_group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_page_group.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_page_group_attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_page_group_attributes.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_page_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_page_lang.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_page_publish_requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_page_publish_requests.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_page_redirects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_page_redirects.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_page_search_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_page_search_data.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_page_search_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_page_search_log.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_page_versions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_page_versions.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_pages.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_settings.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_template_blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_template_blocks.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_templates.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_theme_blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_theme_blocks.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_themes.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_user_roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_user_roles.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_user_roles_actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_user_roles_actions.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_user_roles_page_actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_user_roles_page_actions.php -------------------------------------------------------------------------------- /database/migrations/5_2_0_0_create_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_0_0_create_users.php -------------------------------------------------------------------------------- /database/migrations/5_2_19_0_update_theme_actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_19_0_update_theme_actions.php -------------------------------------------------------------------------------- /database/migrations/5_2_20_0_update_theme_select_actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_20_0_update_theme_select_actions.php -------------------------------------------------------------------------------- /database/migrations/5_2_22_0_update_theme_manage_actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_22_0_update_theme_manage_actions.php -------------------------------------------------------------------------------- /database/migrations/5_2_23_0_add_secure_folders_setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_23_0_add_secure_folders_setting.php -------------------------------------------------------------------------------- /database/migrations/5_2_26_0_add_theme_actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_26_0_add_theme_actions.php -------------------------------------------------------------------------------- /database/migrations/5_2_27_0_add_block_notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_27_0_add_block_notes.php -------------------------------------------------------------------------------- /database/migrations/5_2_30_0_add_pages_sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_30_0_add_pages_sitemap.php -------------------------------------------------------------------------------- /database/migrations/5_2_35_0_create_page_versions_schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_35_0_create_page_versions_schedule.php -------------------------------------------------------------------------------- /database/migrations/5_2_36_0_update_search_log_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_2_36_0_update_search_log_admin.php -------------------------------------------------------------------------------- /database/migrations/5_3_0_0_add_theme_editor_actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_3_0_0_add_theme_editor_actions.php -------------------------------------------------------------------------------- /database/migrations/5_3_0_0_add_user_name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_3_0_0_add_user_name.php -------------------------------------------------------------------------------- /database/migrations/5_3_0_0_create_page_group_pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_3_0_0_create_page_group_pages.php -------------------------------------------------------------------------------- /database/migrations/5_3_0_0_update_group_pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_3_0_0_update_group_pages.php -------------------------------------------------------------------------------- /database/migrations/5_3_15_0_update_menu_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_3_15_0_update_menu_items.php -------------------------------------------------------------------------------- /database/migrations/5_3_23_0_add_estimote_support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_3_23_0_add_estimote_support.php -------------------------------------------------------------------------------- /database/migrations/5_3_5_0_add_search_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_3_5_0_add_search_action.php -------------------------------------------------------------------------------- /database/migrations/5_4_0_0_add_cache_setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_4_0_0_add_cache_setting.php -------------------------------------------------------------------------------- /database/migrations/5_4_0_0_add_custom_page_names_in_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_4_0_0_add_custom_page_names_in_menu.php -------------------------------------------------------------------------------- /database/migrations/5_4_0_0_block_note_null.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_4_0_0_block_note_null.php -------------------------------------------------------------------------------- /database/migrations/5_4_0_0_create_theme_templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_4_0_0_create_theme_templates.php -------------------------------------------------------------------------------- /database/migrations/5_4_0_0_hide_subpage_in_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_4_0_0_hide_subpage_in_menu.php -------------------------------------------------------------------------------- /database/migrations/5_4_0_0_repeater_item_name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_4_0_0_repeater_item_name.php -------------------------------------------------------------------------------- /database/migrations/5_5_0_0_repeater_max_rows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/database/migrations/5_5_0_0_repeater_max_rows.php -------------------------------------------------------------------------------- /hooks/laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/hooks/laravel.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/ace/mode-html_blade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/ace/mode-html_blade.js -------------------------------------------------------------------------------- /public/app/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/app/css/main.css -------------------------------------------------------------------------------- /public/app/css/sortable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/app/css/sortable.css -------------------------------------------------------------------------------- /public/app/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/app/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/app/img/line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/app/img/line.jpg -------------------------------------------------------------------------------- /public/app/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/app/img/logo.png -------------------------------------------------------------------------------- /public/app/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/app/js/editor.js -------------------------------------------------------------------------------- /public/app/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/app/js/functions.js -------------------------------------------------------------------------------- /public/app/js/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/app/js/gallery.js -------------------------------------------------------------------------------- /public/app/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/app/js/main.js -------------------------------------------------------------------------------- /public/app/js/pageInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/app/js/pageInfo.js -------------------------------------------------------------------------------- /public/app/js/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/app/js/router.js -------------------------------------------------------------------------------- /public/app/js/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/app/js/versions.js -------------------------------------------------------------------------------- /public/jquery-ui/jquery-ui-1.12.1.custom.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/jquery-ui/jquery-ui-1.12.1.custom.zip -------------------------------------------------------------------------------- /public/jquery/tinymce/tinymce.gzip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/jquery/tinymce/tinymce.gzip.php -------------------------------------------------------------------------------- /public/uploads/banners/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/uploads/catalogue/category/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/uploads/catalogue/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/uploads/catalogue/config.php -------------------------------------------------------------------------------- /public/uploads/catalogue/product/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/uploads/cms/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/uploads/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/uploads/config.php -------------------------------------------------------------------------------- /public/uploads/pdfs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/uploads/secure/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/uploads/system/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/public/uploads/system/config.php -------------------------------------------------------------------------------- /public/uploads/system/forms/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/uploads/system/gallery/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/uploads/team/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/views/admin/asset_builder/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/asset_builder/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/comment/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/comment/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/datetime/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/datetime/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/form/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/form/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/gallery/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/gallery/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/image/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/image/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/link/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/link/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/repeater/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/repeater/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/repeater/row.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/repeater/row.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/richtext/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/richtext/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/select/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/select/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/selectclass/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/selectclass/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/selectmultiple/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/selectmultiple/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/selectmultiplewnew/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/selectmultiplewnew/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/selectuser/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/selectuser/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/selectwprice/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/selectwprice/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/string/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/string/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/stringwcolour/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/stringwcolour/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/stringwprice/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/stringwprice/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/stringwpricecolour/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/stringwpricecolour/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/text/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/text/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/blocks/video/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/blocks/video/main.blade.php -------------------------------------------------------------------------------- /resources/views/admin/menus/sections/item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/menus/sections/item.blade.php -------------------------------------------------------------------------------- /resources/views/admin/menus/sections/subitem.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/menus/sections/subitem.blade.php -------------------------------------------------------------------------------- /resources/views/admin/menus/sections/submenu.blade.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /resources/views/admin/menus/system/item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/menus/system/item.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/general/delete_item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/general/delete_item.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/menus/add_item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/menus/add_item.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/menus/rename_item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/menus/rename_item.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/menus/sub_level_item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/menus/sub_level_item.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/pages/publish.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/pages/publish.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/pages/publish_schedule.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/pages/publish_schedule.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/pages/rename_version.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/pages/rename_version.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/pages/request_publish.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/pages/request_publish.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/roles/add.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/roles/add.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/roles/delete.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/roles/delete.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/themes/delete.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/themes/delete.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/themes/export.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/themes/export.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/themes/install.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/themes/install.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/themes/install_confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/themes/install_confirm.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/themes/install_error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/modals/themes/install_error.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/account.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/account.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/account/blog.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/account/blog.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/account/language.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/account/language.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/account/name.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/account/name.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/account/password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/account/password.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/blocks.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/blocks.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/filemanager.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/filemanager.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/forgotten_password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/forgotten_password.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/forms/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/forms/list.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/forms/submissions.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/forms/submissions.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/gallery.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/gallery.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/gallery/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/gallery/list.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/groups.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/groups.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/groups/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/groups/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/home/logs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/home/logs.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/home/requests.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/home/requests.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/install.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/install.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/login.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/menus.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/menus.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/pages.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/pages.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/pages/add.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/pages/add.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/pages/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/pages/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/redirects.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/redirects.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/roles.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/roles.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/roles/pages.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/roles/pages.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/search.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/search.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/system.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/system.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/system/upgrade.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/system/upgrade.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/system/validate-db.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/system/validate-db.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/themes.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/themes.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/themes/beacons.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/themes/beacons.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/themes/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/themes/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/themes/forms.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/themes/forms.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/themes/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/themes/list.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/themes/selects.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/themes/selects.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/themes/update.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/themes/update.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/tools/wordpress/import.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/tools/wordpress/import.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/users.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/users.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/users/add.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/users/add.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/users/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/users/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/pages/users/role.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/pages/users/role.blade.php -------------------------------------------------------------------------------- /resources/views/admin/partials/forms/submissions.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/partials/forms/submissions.blade.php -------------------------------------------------------------------------------- /resources/views/admin/partials/groups/page_row.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/partials/groups/page_row.blade.php -------------------------------------------------------------------------------- /resources/views/admin/partials/groups/page_table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/partials/groups/page_table.blade.php -------------------------------------------------------------------------------- /resources/views/admin/partials/logs/table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/partials/logs/table.blade.php -------------------------------------------------------------------------------- /resources/views/admin/partials/menus/li.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/partials/menus/li.blade.php -------------------------------------------------------------------------------- /resources/views/admin/partials/menus/ol.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/partials/menus/ol.blade.php -------------------------------------------------------------------------------- /resources/views/admin/partials/menus/page_li.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web-Feet/coasterframework/HEAD/resources/views/admin/partials/menus/page_li.blade.php -------------------------------------------------------------------------------- /resources/views/admin/partials/menus/page_ol.blade.php: -------------------------------------------------------------------------------- 1 |