├── .gitattributes ├── .gitbook.yaml ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ ├── FEATURE-REQUEST.yml │ └── config.yml ├── SECURITY.yml └── workflows │ ├── automerge.yml │ ├── compile-assets.yml │ ├── coverage.yml │ ├── lock.yml │ └── test.yml ├── .gitignore ├── .php_cs ├── ISSUE_TEMPLATE ├── README.md ├── composer.json ├── docs ├── .gitbook │ └── assets │ │ ├── action_buttons.jpg │ │ ├── action_buttons_custom.jpg │ │ ├── bread_controller.png │ │ ├── bread_details.png │ │ ├── bread_fields.png │ │ ├── bread_order.png │ │ ├── bread_override_voyager_models.png │ │ ├── bread_relationship.png │ │ ├── bread_relationship_form.png │ │ ├── bread_relationship_no_bread.png │ │ ├── bread_scope.jpg │ │ ├── bread_settings_order.png │ │ ├── compass_1.png │ │ ├── compass_2.png │ │ ├── compass_3.png │ │ ├── database-manager.png │ │ ├── database_new_table.png │ │ ├── media_manager.png │ │ ├── menu_1.jpg │ │ ├── menu_2.jpg │ │ ├── role.png │ │ ├── settings.png │ │ ├── tagging.jpg │ │ ├── upgrade_controller.jpg │ │ ├── upgrade_menu_item.png │ │ └── upgrading_roles_controller.png ├── bread │ ├── formfields │ │ ├── checkbox.md │ │ ├── coordinates.md │ │ ├── date-time.md │ │ ├── dropdown.md │ │ ├── images.md │ │ ├── introduction.md │ │ ├── media-picker.md │ │ ├── number.md │ │ └── tinymce.md │ ├── introduction.md │ └── relationships.md ├── core-concepts │ ├── compass.md │ ├── database-manager.md │ ├── helper-methods.md │ ├── media-manager.md │ ├── menus-and-menu-builder.md │ ├── multilanguage.md │ ├── roles-and-permissions.md │ ├── routing.md │ └── settings.md ├── customization │ ├── action-buttons.md │ ├── adding-custom-formfields.md │ ├── additional-css-js.md │ ├── bread-accessors.md │ ├── coordinates.md │ ├── custom-guard.md │ ├── custom-realtionship-attributes.md │ ├── enabling-soft-delete.md │ ├── overriding-files.md │ └── overriding-routes.md ├── getting-started │ ├── configurations.md │ ├── installation.md │ ├── prerequisites.md │ ├── upgrading.md │ └── what-is-voyager.md ├── introduction.md ├── summary.md └── troubleshooting │ ├── missing-required-parameter.md │ └── using-https.md ├── license ├── migrations ├── 2016_01_01_000000_add_voyager_user_fields.php ├── 2016_01_01_000000_create_data_types_table.php ├── 2016_05_19_173453_create_menu_table.php ├── 2016_10_21_190000_create_roles_table.php ├── 2016_10_21_190000_create_settings_table.php ├── 2016_11_30_135954_create_permission_table.php ├── 2016_11_30_141208_create_permission_role_table.php ├── 2016_12_26_201236_data_types__add__server_side.php ├── 2017_01_13_000000_add_route_to_menu_items_table.php ├── 2017_01_14_005015_create_translations_table.php ├── 2017_01_15_000000_make_table_name_nullable_in_permissions_table.php ├── 2017_03_06_000000_add_controller_to_data_types_table.php ├── 2017_04_21_000000_add_order_to_data_rows_table.php ├── 2017_07_05_210000_add_policyname_to_data_types_table.php ├── 2017_08_05_000000_add_group_to_settings_table.php ├── 2017_11_26_013050_add_user_role_relationship.php ├── 2017_11_26_015000_create_user_roles_table.php ├── 2018_03_11_000000_add_user_settings.php ├── 2018_03_14_000000_add_details_to_data_types_table.php └── 2018_03_16_000000_make_settings_value_nullable.php ├── mix-manifest.json ├── mix.js ├── package-lock.json ├── package.json ├── phpunit.xml ├── publishable ├── assets │ ├── css │ │ ├── app.css │ │ └── rtl.css │ ├── fonts │ │ ├── bootstrap │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── icons-reference.html │ │ ├── voyager.eot │ │ ├── voyager.svg │ │ ├── voyager.ttf │ │ └── voyager.woff │ ├── images │ │ ├── bg.jpg │ │ ├── captain-avatar.png │ │ ├── compass │ │ │ ├── documentation.jpg │ │ │ └── voyager-home.jpg │ │ ├── helm.svg │ │ ├── large-logo-icon-light.png │ │ ├── large-logo-icon.png │ │ ├── logo-icon-light.png │ │ ├── logo-icon.png │ │ ├── voyager-character.png │ │ ├── voyager-character.sketch │ │ └── widget-backgrounds │ │ │ ├── 01.jpg │ │ │ ├── 02.jpg │ │ │ └── 03.jpg │ └── js │ │ ├── ace │ │ └── libs │ │ │ ├── ace.js │ │ │ ├── ext-beautify.js │ │ │ ├── ext-code_lens.js │ │ │ ├── ext-elastic_tabstops_lite.js │ │ │ ├── ext-emmet.js │ │ │ ├── ext-error_marker.js │ │ │ ├── ext-hardwrap.js │ │ │ ├── ext-keybinding_menu.js │ │ │ ├── ext-language_tools.js │ │ │ ├── ext-linking.js │ │ │ ├── ext-modelist.js │ │ │ ├── ext-options.js │ │ │ ├── ext-prompt.js │ │ │ ├── ext-rtl.js │ │ │ ├── ext-searchbox.js │ │ │ ├── ext-settings_menu.js │ │ │ ├── ext-spellcheck.js │ │ │ ├── ext-split.js │ │ │ ├── ext-static_highlight.js │ │ │ ├── ext-statusbar.js │ │ │ ├── ext-textarea.js │ │ │ ├── ext-themelist.js │ │ │ ├── ext-whitespace.js │ │ │ ├── keybinding-emacs.js │ │ │ ├── keybinding-sublime.js │ │ │ ├── keybinding-vim.js │ │ │ ├── keybinding-vscode.js │ │ │ ├── mode-abap.js │ │ │ ├── mode-abc.js │ │ │ ├── mode-actionscript.js │ │ │ ├── mode-ada.js │ │ │ ├── mode-alda.js │ │ │ ├── mode-apache_conf.js │ │ │ ├── mode-apex.js │ │ │ ├── mode-applescript.js │ │ │ ├── mode-aql.js │ │ │ ├── mode-asciidoc.js │ │ │ ├── mode-asl.js │ │ │ ├── mode-assembly_x86.js │ │ │ ├── mode-autohotkey.js │ │ │ ├── mode-batchfile.js │ │ │ ├── mode-bibtex.js │ │ │ ├── mode-c9search.js │ │ │ ├── mode-c_cpp.js │ │ │ ├── mode-cirru.js │ │ │ ├── mode-clojure.js │ │ │ ├── mode-cobol.js │ │ │ ├── mode-coffee.js │ │ │ ├── mode-coldfusion.js │ │ │ ├── mode-crystal.js │ │ │ ├── mode-csharp.js │ │ │ ├── mode-csound_document.js │ │ │ ├── mode-csound_orchestra.js │ │ │ ├── mode-csound_score.js │ │ │ ├── mode-csp.js │ │ │ ├── mode-css.js │ │ │ ├── mode-curly.js │ │ │ ├── mode-d.js │ │ │ ├── mode-dart.js │ │ │ ├── mode-diff.js │ │ │ ├── mode-django.js │ │ │ ├── mode-dockerfile.js │ │ │ ├── mode-dot.js │ │ │ ├── mode-drools.js │ │ │ ├── mode-edifact.js │ │ │ ├── mode-eiffel.js │ │ │ ├── mode-ejs.js │ │ │ ├── mode-elixir.js │ │ │ ├── mode-elm.js │ │ │ ├── mode-erlang.js │ │ │ ├── mode-forth.js │ │ │ ├── mode-fortran.js │ │ │ ├── mode-fsharp.js │ │ │ ├── mode-fsl.js │ │ │ ├── mode-ftl.js │ │ │ ├── mode-gcode.js │ │ │ ├── mode-gherkin.js │ │ │ ├── mode-gitignore.js │ │ │ ├── mode-glsl.js │ │ │ ├── mode-gobstones.js │ │ │ ├── mode-golang.js │ │ │ ├── mode-graphqlschema.js │ │ │ ├── mode-groovy.js │ │ │ ├── mode-haml.js │ │ │ ├── mode-handlebars.js │ │ │ ├── mode-haskell.js │ │ │ ├── mode-haskell_cabal.js │ │ │ ├── mode-haxe.js │ │ │ ├── mode-hjson.js │ │ │ ├── mode-html.js │ │ │ ├── mode-html_elixir.js │ │ │ ├── mode-html_ruby.js │ │ │ ├── mode-ini.js │ │ │ ├── mode-io.js │ │ │ ├── mode-ion.js │ │ │ ├── mode-jack.js │ │ │ ├── mode-jade.js │ │ │ ├── mode-java.js │ │ │ ├── mode-javascript.js │ │ │ ├── mode-json.js │ │ │ ├── mode-json5.js │ │ │ ├── mode-jsoniq.js │ │ │ ├── mode-jsp.js │ │ │ ├── mode-jssm.js │ │ │ ├── mode-jsx.js │ │ │ ├── mode-julia.js │ │ │ ├── mode-kotlin.js │ │ │ ├── mode-latex.js │ │ │ ├── mode-latte.js │ │ │ ├── mode-less.js │ │ │ ├── mode-liquid.js │ │ │ ├── mode-lisp.js │ │ │ ├── mode-livescript.js │ │ │ ├── mode-logiql.js │ │ │ ├── mode-logtalk.js │ │ │ ├── mode-lsl.js │ │ │ ├── mode-lua.js │ │ │ ├── mode-luapage.js │ │ │ ├── mode-lucene.js │ │ │ ├── mode-makefile.js │ │ │ ├── mode-markdown.js │ │ │ ├── mode-mask.js │ │ │ ├── mode-matlab.js │ │ │ ├── mode-maze.js │ │ │ ├── mode-mediawiki.js │ │ │ ├── mode-mel.js │ │ │ ├── mode-mips.js │ │ │ ├── mode-mixal.js │ │ │ ├── mode-mushcode.js │ │ │ ├── mode-mysql.js │ │ │ ├── mode-nginx.js │ │ │ ├── mode-nim.js │ │ │ ├── mode-nix.js │ │ │ ├── mode-nsis.js │ │ │ ├── mode-nunjucks.js │ │ │ ├── mode-objectivec.js │ │ │ ├── mode-ocaml.js │ │ │ ├── mode-partiql.js │ │ │ ├── mode-pascal.js │ │ │ ├── mode-perl.js │ │ │ ├── mode-pgsql.js │ │ │ ├── mode-php.js │ │ │ ├── mode-php_laravel_blade.js │ │ │ ├── mode-pig.js │ │ │ ├── mode-plain_text.js │ │ │ ├── mode-powershell.js │ │ │ ├── mode-praat.js │ │ │ ├── mode-prisma.js │ │ │ ├── mode-prolog.js │ │ │ ├── mode-properties.js │ │ │ ├── mode-protobuf.js │ │ │ ├── mode-puppet.js │ │ │ ├── mode-python.js │ │ │ ├── mode-qml.js │ │ │ ├── mode-r.js │ │ │ ├── mode-raku.js │ │ │ ├── mode-razor.js │ │ │ ├── mode-rdoc.js │ │ │ ├── mode-red.js │ │ │ ├── mode-redshift.js │ │ │ ├── mode-rhtml.js │ │ │ ├── mode-robot.js │ │ │ ├── mode-rst.js │ │ │ ├── mode-ruby.js │ │ │ ├── mode-rust.js │ │ │ ├── mode-sac.js │ │ │ ├── mode-sass.js │ │ │ ├── mode-scad.js │ │ │ ├── mode-scala.js │ │ │ ├── mode-scheme.js │ │ │ ├── mode-scrypt.js │ │ │ ├── mode-scss.js │ │ │ ├── mode-sh.js │ │ │ ├── mode-sjs.js │ │ │ ├── mode-slim.js │ │ │ ├── mode-smarty.js │ │ │ ├── mode-smithy.js │ │ │ ├── mode-snippets.js │ │ │ ├── mode-soy_template.js │ │ │ ├── mode-space.js │ │ │ ├── mode-sparql.js │ │ │ ├── mode-sql.js │ │ │ ├── mode-sqlserver.js │ │ │ ├── mode-stylus.js │ │ │ ├── mode-svg.js │ │ │ ├── mode-swift.js │ │ │ ├── mode-tcl.js │ │ │ ├── mode-terraform.js │ │ │ ├── mode-tex.js │ │ │ ├── mode-text.js │ │ │ ├── mode-textile.js │ │ │ ├── mode-toml.js │ │ │ ├── mode-tsx.js │ │ │ ├── mode-turtle.js │ │ │ ├── mode-twig.js │ │ │ ├── mode-typescript.js │ │ │ ├── mode-vala.js │ │ │ ├── mode-vbscript.js │ │ │ ├── mode-velocity.js │ │ │ ├── mode-verilog.js │ │ │ ├── mode-vhdl.js │ │ │ ├── mode-visualforce.js │ │ │ ├── mode-wollok.js │ │ │ ├── mode-xml.js │ │ │ ├── mode-xquery.js │ │ │ ├── mode-yaml.js │ │ │ ├── mode-zeek.js │ │ │ ├── snippets │ │ │ ├── abap.js │ │ │ ├── abc.js │ │ │ ├── actionscript.js │ │ │ ├── ada.js │ │ │ ├── alda.js │ │ │ ├── apache_conf.js │ │ │ ├── apex.js │ │ │ ├── applescript.js │ │ │ ├── aql.js │ │ │ ├── asciidoc.js │ │ │ ├── asl.js │ │ │ ├── assembly_x86.js │ │ │ ├── autohotkey.js │ │ │ ├── batchfile.js │ │ │ ├── bibtex.js │ │ │ ├── c9search.js │ │ │ ├── c_cpp.js │ │ │ ├── cirru.js │ │ │ ├── clojure.js │ │ │ ├── cobol.js │ │ │ ├── coffee.js │ │ │ ├── coldfusion.js │ │ │ ├── crystal.js │ │ │ ├── csharp.js │ │ │ ├── csound_document.js │ │ │ ├── csound_orchestra.js │ │ │ ├── csound_score.js │ │ │ ├── csp.js │ │ │ ├── css.js │ │ │ ├── curly.js │ │ │ ├── d.js │ │ │ ├── dart.js │ │ │ ├── diff.js │ │ │ ├── django.js │ │ │ ├── dockerfile.js │ │ │ ├── dot.js │ │ │ ├── drools.js │ │ │ ├── edifact.js │ │ │ ├── eiffel.js │ │ │ ├── ejs.js │ │ │ ├── elixir.js │ │ │ ├── elm.js │ │ │ ├── erlang.js │ │ │ ├── forth.js │ │ │ ├── fortran.js │ │ │ ├── fsharp.js │ │ │ ├── fsl.js │ │ │ ├── ftl.js │ │ │ ├── gcode.js │ │ │ ├── gherkin.js │ │ │ ├── gitignore.js │ │ │ ├── glsl.js │ │ │ ├── gobstones.js │ │ │ ├── golang.js │ │ │ ├── graphqlschema.js │ │ │ ├── groovy.js │ │ │ ├── haml.js │ │ │ ├── handlebars.js │ │ │ ├── haskell.js │ │ │ ├── haskell_cabal.js │ │ │ ├── haxe.js │ │ │ ├── hjson.js │ │ │ ├── html.js │ │ │ ├── html_elixir.js │ │ │ ├── html_ruby.js │ │ │ ├── ini.js │ │ │ ├── io.js │ │ │ ├── ion.js │ │ │ ├── jack.js │ │ │ ├── jade.js │ │ │ ├── java.js │ │ │ ├── javascript.js │ │ │ ├── json.js │ │ │ ├── json5.js │ │ │ ├── jsoniq.js │ │ │ ├── jsp.js │ │ │ ├── jssm.js │ │ │ ├── jsx.js │ │ │ ├── julia.js │ │ │ ├── kotlin.js │ │ │ ├── latex.js │ │ │ ├── latte.js │ │ │ ├── less.js │ │ │ ├── liquid.js │ │ │ ├── lisp.js │ │ │ ├── livescript.js │ │ │ ├── logiql.js │ │ │ ├── logtalk.js │ │ │ ├── lsl.js │ │ │ ├── lua.js │ │ │ ├── luapage.js │ │ │ ├── lucene.js │ │ │ ├── makefile.js │ │ │ ├── markdown.js │ │ │ ├── mask.js │ │ │ ├── matlab.js │ │ │ ├── maze.js │ │ │ ├── mediawiki.js │ │ │ ├── mel.js │ │ │ ├── mips.js │ │ │ ├── mixal.js │ │ │ ├── mushcode.js │ │ │ ├── mysql.js │ │ │ ├── nginx.js │ │ │ ├── nim.js │ │ │ ├── nix.js │ │ │ ├── nsis.js │ │ │ ├── nunjucks.js │ │ │ ├── objectivec.js │ │ │ ├── ocaml.js │ │ │ ├── partiql.js │ │ │ ├── pascal.js │ │ │ ├── perl.js │ │ │ ├── pgsql.js │ │ │ ├── php.js │ │ │ ├── php_laravel_blade.js │ │ │ ├── pig.js │ │ │ ├── plain_text.js │ │ │ ├── powershell.js │ │ │ ├── praat.js │ │ │ ├── prisma.js │ │ │ ├── prolog.js │ │ │ ├── properties.js │ │ │ ├── protobuf.js │ │ │ ├── puppet.js │ │ │ ├── python.js │ │ │ ├── qml.js │ │ │ ├── r.js │ │ │ ├── raku.js │ │ │ ├── razor.js │ │ │ ├── rdoc.js │ │ │ ├── red.js │ │ │ ├── redshift.js │ │ │ ├── rhtml.js │ │ │ ├── robot.js │ │ │ ├── rst.js │ │ │ ├── ruby.js │ │ │ ├── rust.js │ │ │ ├── sac.js │ │ │ ├── sass.js │ │ │ ├── scad.js │ │ │ ├── scala.js │ │ │ ├── scheme.js │ │ │ ├── scrypt.js │ │ │ ├── scss.js │ │ │ ├── sh.js │ │ │ ├── sjs.js │ │ │ ├── slim.js │ │ │ ├── smarty.js │ │ │ ├── smithy.js │ │ │ ├── snippets.js │ │ │ ├── soy_template.js │ │ │ ├── space.js │ │ │ ├── sparql.js │ │ │ ├── sql.js │ │ │ ├── sqlserver.js │ │ │ ├── stylus.js │ │ │ ├── svg.js │ │ │ ├── swift.js │ │ │ ├── tcl.js │ │ │ ├── terraform.js │ │ │ ├── tex.js │ │ │ ├── text.js │ │ │ ├── textile.js │ │ │ ├── toml.js │ │ │ ├── tsx.js │ │ │ ├── turtle.js │ │ │ ├── twig.js │ │ │ ├── typescript.js │ │ │ ├── vala.js │ │ │ ├── vbscript.js │ │ │ ├── velocity.js │ │ │ ├── verilog.js │ │ │ ├── vhdl.js │ │ │ ├── visualforce.js │ │ │ ├── wollok.js │ │ │ ├── xml.js │ │ │ ├── xquery.js │ │ │ ├── yaml.js │ │ │ └── zeek.js │ │ │ ├── theme-ambiance.js │ │ │ ├── theme-chaos.js │ │ │ ├── theme-chrome.js │ │ │ ├── theme-cloud9_day.js │ │ │ ├── theme-cloud9_night.js │ │ │ ├── theme-cloud9_night_low_color.js │ │ │ ├── theme-clouds.js │ │ │ ├── theme-clouds_midnight.js │ │ │ ├── theme-cobalt.js │ │ │ ├── theme-crimson_editor.js │ │ │ ├── theme-dawn.js │ │ │ ├── theme-dracula.js │ │ │ ├── theme-dreamweaver.js │ │ │ ├── theme-eclipse.js │ │ │ ├── theme-github.js │ │ │ ├── theme-gob.js │ │ │ ├── theme-gruvbox.js │ │ │ ├── theme-gruvbox_dark_hard.js │ │ │ ├── theme-gruvbox_light_hard.js │ │ │ ├── theme-idle_fingers.js │ │ │ ├── theme-iplastic.js │ │ │ ├── theme-katzenmilch.js │ │ │ ├── theme-kr_theme.js │ │ │ ├── theme-kuroir.js │ │ │ ├── theme-merbivore.js │ │ │ ├── theme-merbivore_soft.js │ │ │ ├── theme-mono_industrial.js │ │ │ ├── theme-monokai.js │ │ │ ├── theme-nord_dark.js │ │ │ ├── theme-one_dark.js │ │ │ ├── theme-pastel_on_dark.js │ │ │ ├── theme-solarized_dark.js │ │ │ ├── theme-solarized_light.js │ │ │ ├── theme-sqlserver.js │ │ │ ├── theme-terminal.js │ │ │ ├── theme-textmate.js │ │ │ ├── theme-tomorrow.js │ │ │ ├── theme-tomorrow_night.js │ │ │ ├── theme-tomorrow_night_blue.js │ │ │ ├── theme-tomorrow_night_bright.js │ │ │ ├── theme-tomorrow_night_eighties.js │ │ │ ├── theme-twilight.js │ │ │ ├── theme-vibrant_ink.js │ │ │ ├── theme-xcode.js │ │ │ ├── worker-base.js │ │ │ ├── worker-coffee.js │ │ │ ├── worker-css.js │ │ │ ├── worker-html.js │ │ │ ├── worker-javascript.js │ │ │ ├── worker-json.js │ │ │ ├── worker-lua.js │ │ │ ├── worker-php.js │ │ │ ├── worker-xml.js │ │ │ ├── worker-xquery.js │ │ │ └── worker-yaml.js │ │ ├── app.js │ │ ├── app.js.LICENSE.txt │ │ ├── icons │ │ └── default │ │ │ ├── icons.js │ │ │ ├── icons.min.js │ │ │ └── index.js │ │ ├── models │ │ └── dom │ │ │ ├── index.js │ │ │ ├── model.js │ │ │ └── model.min.js │ │ ├── skins │ │ ├── content │ │ │ ├── dark │ │ │ │ ├── content.css │ │ │ │ └── content.min.css │ │ │ ├── default │ │ │ │ ├── content.css │ │ │ │ └── content.min.css │ │ │ ├── document │ │ │ │ ├── content.css │ │ │ │ └── content.min.css │ │ │ ├── tinymce-5-dark │ │ │ │ ├── content.css │ │ │ │ └── content.min.css │ │ │ ├── tinymce-5 │ │ │ │ ├── content.css │ │ │ │ └── content.min.css │ │ │ └── writer │ │ │ │ ├── content.css │ │ │ │ └── content.min.css │ │ ├── ui │ │ │ ├── oxide-dark │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── content.mobile.css │ │ │ │ ├── content.mobile.min.css │ │ │ │ ├── fonts │ │ │ │ │ └── tinymce-mobile.woff │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.mobile.css │ │ │ │ ├── skin.mobile.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ ├── oxide │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── content.mobile.css │ │ │ │ ├── content.mobile.min.css │ │ │ │ ├── fonts │ │ │ │ │ └── tinymce-mobile.woff │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.mobile.css │ │ │ │ ├── skin.mobile.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ ├── tinymce-5-dark │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ └── tinymce-5 │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.shadowdom.css │ │ │ │ └── skin.shadowdom.min.css │ │ └── voyager │ │ │ ├── Variables.less │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── fonts │ │ │ ├── readme.md │ │ │ ├── tinymce-small.eot │ │ │ ├── tinymce-small.json │ │ │ ├── tinymce-small.svg │ │ │ ├── tinymce-small.ttf │ │ │ ├── tinymce-small.woff │ │ │ ├── tinymce.eot │ │ │ ├── tinymce.json │ │ │ ├── tinymce.svg │ │ │ ├── tinymce.ttf │ │ │ └── tinymce.woff │ │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── loader.gif │ │ │ ├── object.gif │ │ │ └── trans.gif │ │ │ ├── skin.ie7.min.css │ │ │ ├── skin.json │ │ │ └── skin.min.css │ │ └── themes │ │ └── silver │ │ ├── index.js │ │ ├── theme.js │ │ └── theme.min.js ├── config │ ├── voyager.php │ └── voyager_dummy.php ├── database │ ├── dummy_seeders │ │ ├── CategoriesTableSeeder.php │ │ ├── PagesTableSeeder.php │ │ ├── PostsTableSeeder.php │ │ └── UsersTableSeeder.php │ ├── migrations │ │ ├── 2016_01_01_000000_create_pages_table.php │ │ ├── 2016_01_01_000000_create_posts_table.php │ │ ├── 2016_02_15_204651_create_categories_table.php │ │ └── 2017_04_11_000000_alter_post_nullable_fields_table.php │ └── seeders │ │ ├── DataRowsTableSeeder.php │ │ ├── DataTypesTableSeeder.php │ │ ├── MenuItemsTableSeeder.php │ │ ├── MenusTableSeeder.php │ │ ├── PermissionRoleTableSeeder.php │ │ ├── PermissionsTableSeeder.php │ │ ├── RolesTableSeeder.php │ │ ├── SettingsTableSeeder.php │ │ ├── TranslationsTableSeeder.php │ │ ├── VoyagerDatabaseSeeder.php │ │ └── VoyagerDummyDatabaseSeeder.php ├── dummy_content │ ├── pages │ │ └── page1.jpg │ ├── posts │ │ ├── post1-cropped.jpg │ │ ├── post1-medium.jpg │ │ ├── post1-small.jpg │ │ ├── post1.jpg │ │ ├── post2-cropped.jpg │ │ ├── post2-medium.jpg │ │ ├── post2-small.jpg │ │ ├── post2.jpg │ │ ├── post3-cropped.jpg │ │ ├── post3-medium.jpg │ │ ├── post3-small.jpg │ │ ├── post3.jpg │ │ ├── post4-cropped.jpg │ │ ├── post4-medium.jpg │ │ ├── post4-small.jpg │ │ └── post4.jpg │ └── users │ │ └── default.png └── lang │ ├── al │ ├── analytics.php │ ├── bread.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── settings.php │ └── theme.php │ ├── am │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── ar │ ├── analytics.php │ ├── bread.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── settings.php │ ├── theme.php │ └── voyager.php │ ├── az │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── bg │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── databale.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── ca │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── cs │ ├── analytics.php │ ├── bread.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── de │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── el │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── en │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── es │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── fa │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── fi │ ├── analytics.php │ ├── bread.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── settings.php │ └── theme.php │ ├── fr │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── gl │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── id │ ├── analytics.php │ ├── bread.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── settings.php │ └── theme.php │ ├── it │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── ja │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── km │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── ku │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── mm │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── my │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── nl │ ├── analytics.php │ ├── bread.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── settings.php │ └── theme.php │ ├── pl │ ├── analytics.php │ ├── bread.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── pt │ ├── analytics.php │ ├── bread.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── settings.php │ └── theme.php │ ├── pt_br │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── ro │ ├── analytics.php │ ├── bread.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── settings.php │ └── theme.php │ ├── ru │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── sv │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── tr │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── uk │ ├── analytics.php │ ├── bread.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── settings.php │ └── theme.php │ ├── vi │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ ├── zh_CN │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php │ └── zh_TW │ ├── analytics.php │ ├── bread.php │ ├── compass.php │ ├── database.php │ ├── datatable.php │ ├── date.php │ ├── dimmer.php │ ├── error.php │ ├── form.php │ ├── generic.php │ ├── json.php │ ├── login.php │ ├── media.php │ ├── menu_builder.php │ ├── post.php │ ├── profile.php │ ├── seeders.php │ ├── settings.php │ └── theme.php ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── components │ │ │ └── admin_menu.vue │ │ ├── helpers.js │ │ ├── multilingual.js │ │ ├── skins │ │ │ └── voyager │ │ │ │ ├── Variables.less │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── fonts │ │ │ │ ├── readme.md │ │ │ │ ├── tinymce-small.eot │ │ │ │ ├── tinymce-small.json │ │ │ │ ├── tinymce-small.svg │ │ │ │ ├── tinymce-small.ttf │ │ │ │ ├── tinymce-small.woff │ │ │ │ ├── tinymce.eot │ │ │ │ ├── tinymce.json │ │ │ │ ├── tinymce.svg │ │ │ │ ├── tinymce.ttf │ │ │ │ └── tinymce.woff │ │ │ │ ├── img │ │ │ │ ├── anchor.gif │ │ │ │ ├── loader.gif │ │ │ │ ├── object.gif │ │ │ │ └── trans.gif │ │ │ │ ├── skin.ie7.min.css │ │ │ │ ├── skin.json │ │ │ │ └── skin.min.css │ │ ├── slugify.js │ │ ├── voyager_ace_editor.js │ │ ├── voyager_tinymce.js │ │ └── voyager_tinymce_config.js │ └── sass │ │ ├── _variables.scss │ │ ├── app.scss │ │ └── fonts.css └── views │ ├── alerts.blade.php │ ├── auth │ └── master.blade.php │ ├── bread │ ├── browse.blade.php │ ├── edit-add.blade.php │ ├── order.blade.php │ ├── partials │ │ └── actions.blade.php │ └── read.blade.php │ ├── compass │ ├── includes │ │ ├── commands.blade.php │ │ ├── fonts.blade.php │ │ ├── logs.blade.php │ │ └── styles.blade.php │ └── index.blade.php │ ├── dashboard │ ├── navbar.blade.php │ └── sidebar.blade.php │ ├── dimmer.blade.php │ ├── dimmers.blade.php │ ├── formfields │ ├── checkbox.blade.php │ ├── code_editor.blade.php │ ├── color.blade.php │ ├── coordinates.blade.php │ ├── date.blade.php │ ├── file.blade.php │ ├── hidden.blade.php │ ├── image.blade.php │ ├── markdown_editor.blade.php │ ├── media_picker.blade.php │ ├── multiple_checkbox.blade.php │ ├── multiple_images.blade.php │ ├── number.blade.php │ ├── password.blade.php │ ├── radio_btn.blade.php │ ├── relationship.blade.php │ ├── rich_text_box.blade.php │ ├── select_dropdown.blade.php │ ├── select_multiple.blade.php │ ├── text.blade.php │ ├── text_area.blade.php │ ├── time.blade.php │ └── timestamp.blade.php │ ├── index.blade.php │ ├── login.blade.php │ ├── master.blade.php │ ├── media │ ├── index.blade.php │ └── manager.blade.php │ ├── menu │ ├── admin.blade.php │ ├── bootstrap.blade.php │ └── default.blade.php │ ├── menus │ ├── browse.blade.php │ ├── builder.blade.php │ └── partial │ │ └── notice.blade.php │ ├── multilingual │ ├── input-hidden-bread-browse.blade.php │ ├── input-hidden-bread-edit-add.blade.php │ ├── input-hidden-bread-read.blade.php │ ├── input-hidden.blade.php │ └── language-selector.blade.php │ ├── partials │ ├── app-footer.blade.php │ ├── bulk-delete.blade.php │ ├── coordinates-static-image.blade.php │ └── coordinates.blade.php │ ├── posts │ └── edit-add.blade.php │ ├── profile.blade.php │ ├── roles │ └── edit-add.blade.php │ ├── settings │ └── index.blade.php │ ├── tools │ ├── bread │ │ ├── edit-add.blade.php │ │ ├── index.blade.php │ │ ├── relationship-new-modal.blade.php │ │ └── relationship-partial.blade.php │ └── database │ │ ├── edit-add.blade.php │ │ ├── index.blade.php │ │ └── vue-components │ │ ├── database-column-default.blade.php │ │ ├── database-column.blade.php │ │ ├── database-table-editor.blade.php │ │ ├── database-table-helper-buttons.blade.php │ │ └── database-types.blade.php │ └── users │ └── edit-add.blade.php ├── routes └── voyager.php ├── src ├── Actions │ ├── AbstractAction.php │ ├── ActionInterface.php │ ├── DeleteAction.php │ ├── EditAction.php │ ├── RestoreAction.php │ └── ViewAction.php ├── Alert.php ├── Alert │ └── Components │ │ ├── AbstractComponent.php │ │ ├── ButtonComponent.php │ │ ├── ComponentInterface.php │ │ ├── TextComponent.php │ │ └── TitleComponent.php ├── Commands │ ├── AdminCommand.php │ ├── ControllersCommand.php │ ├── InstallCommand.php │ └── MakeModelCommand.php ├── Contracts │ └── User.php ├── Database │ ├── DatabaseUpdater.php │ ├── Platforms │ │ ├── Mysql.php │ │ ├── Platform.php │ │ ├── Postgresql.php │ │ └── Sqlite.php │ ├── Schema │ │ ├── Column.php │ │ ├── ForeignKey.php │ │ ├── Identifier.php │ │ ├── Index.php │ │ ├── SchemaManager.php │ │ └── Table.php │ └── Types │ │ ├── Common │ │ ├── CharType.php │ │ ├── DoubleType.php │ │ ├── JsonType.php │ │ ├── NumericType.php │ │ ├── TextType.php │ │ └── VarCharType.php │ │ ├── Mysql │ │ ├── BinaryType.php │ │ ├── BitType.php │ │ ├── BlobType.php │ │ ├── EnumType.php │ │ ├── FloatType.php │ │ ├── GeometryCollectionType.php │ │ ├── GeometryType.php │ │ ├── LineStringType.php │ │ ├── LongBlobType.php │ │ ├── LongTextType.php │ │ ├── MediumBlobType.php │ │ ├── MediumIntType.php │ │ ├── MediumTextType.php │ │ ├── MultiLineStringType.php │ │ ├── MultiPointType.php │ │ ├── MultiPolygonType.php │ │ ├── PointType.php │ │ ├── PolygonType.php │ │ ├── SetType.php │ │ ├── TimeStampType.php │ │ ├── TinyBlobType.php │ │ ├── TinyIntType.php │ │ ├── TinyTextType.php │ │ ├── VarBinaryType.php │ │ └── YearType.php │ │ ├── Postgresql │ │ ├── BitType.php │ │ ├── BitVaryingType.php │ │ ├── ByteaType.php │ │ ├── CharacterType.php │ │ ├── CharacterVaryingType.php │ │ ├── CidrType.php │ │ ├── DoublePrecisionType.php │ │ ├── GeometryType.php │ │ ├── InetType.php │ │ ├── IntervalType.php │ │ ├── JsonbType.php │ │ ├── MacAddrType.php │ │ ├── MoneyType.php │ │ ├── RealType.php │ │ ├── SmallIntType.php │ │ ├── TimeStampType.php │ │ ├── TimeStampTzType.php │ │ ├── TimeTzType.php │ │ ├── TsQueryType.php │ │ ├── TsVectorType.php │ │ ├── TxidSnapshotType.php │ │ ├── UuidType.php │ │ └── XmlType.php │ │ ├── Sqlite │ │ └── RealType.php │ │ └── Type.php ├── Events │ ├── AlertsCollection.php │ ├── BreadAdded.php │ ├── BreadChanged.php │ ├── BreadDataAdded.php │ ├── BreadDataChanged.php │ ├── BreadDataDeleted.php │ ├── BreadDataRestored.php │ ├── BreadDataUpdated.php │ ├── BreadDeleted.php │ ├── BreadImagesDeleted.php │ ├── BreadUpdated.php │ ├── FileDeleted.php │ ├── FormFieldsRegistered.php │ ├── MediaFileAdded.php │ ├── MenuDisplay.php │ ├── Routing.php │ ├── RoutingAdmin.php │ ├── RoutingAdminAfter.php │ ├── RoutingAfter.php │ ├── SettingUpdated.php │ ├── TableAdded.php │ ├── TableChanged.php │ ├── TableDeleted.php │ └── TableUpdated.php ├── Facades │ └── Voyager.php ├── FormFields │ ├── AbstractHandler.php │ ├── After │ │ ├── AbstractHandler.php │ │ ├── DescriptionHandler.php │ │ └── HandlerInterface.php │ ├── CheckboxHandler.php │ ├── CodeEditorHandler.php │ ├── ColorHandler.php │ ├── CoordinatesHandler.php │ ├── DateHandler.php │ ├── FileHandler.php │ ├── HandlerInterface.php │ ├── HiddenHandler.php │ ├── ImageHandler.php │ ├── MarkdownEditorHandler.php │ ├── MediaPickerHandler.php │ ├── MultipleCheckboxHandler.php │ ├── MultipleImagesHandler.php │ ├── NumberHandler.php │ ├── PasswordHandler.php │ ├── RadioBtnHandler.php │ ├── RichTextBoxHandler.php │ ├── SelectDropdownHandler.php │ ├── SelectMultipleHandler.php │ ├── TextAreaHandler.php │ ├── TextHandler.php │ ├── TimeHandler.php │ └── TimestampHandler.php ├── Helpers │ ├── Reflection.php │ ├── helperSlugify.php │ ├── helperTranslations.php │ ├── helpers.php │ └── helpersi18n.php ├── Http │ ├── Controllers │ │ ├── ContentTypes │ │ │ ├── BaseType.php │ │ │ ├── Checkbox.php │ │ │ ├── Coordinates.php │ │ │ ├── File.php │ │ │ ├── Image.php │ │ │ ├── MultipleCheckbox.php │ │ │ ├── MultipleImage.php │ │ │ ├── Password.php │ │ │ ├── Relationship.php │ │ │ ├── SelectMultiple.php │ │ │ ├── Text.php │ │ │ └── Timestamp.php │ │ ├── Controller.php │ │ ├── Traits │ │ │ └── BreadRelationshipParser.php │ │ ├── VoyagerAuthController.php │ │ ├── VoyagerBaseController.php │ │ ├── VoyagerBreadController.php │ │ ├── VoyagerCompassController.php │ │ ├── VoyagerController.php │ │ ├── VoyagerDatabaseController.php │ │ ├── VoyagerMediaController.php │ │ ├── VoyagerMenuController.php │ │ ├── VoyagerRoleController.php │ │ ├── VoyagerSettingsController.php │ │ └── VoyagerUserController.php │ └── Middleware │ │ └── VoyagerAdminMiddleware.php ├── Listeners │ ├── AddBreadMenuItem.php │ ├── AddBreadPermission.php │ ├── ClearCachedSettingValue.php │ └── DeleteBreadMenuItem.php ├── Models │ ├── Category.php │ ├── DataRow.php │ ├── DataType.php │ ├── Menu.php │ ├── MenuItem.php │ ├── Page.php │ ├── Permission.php │ ├── Post.php │ ├── Role.php │ ├── Setting.php │ ├── Translation.php │ └── User.php ├── Policies │ ├── BasePolicy.php │ ├── MenuItemPolicy.php │ ├── PostPolicy.php │ ├── SettingPolicy.php │ └── UserPolicy.php ├── Providers │ ├── VoyagerDummyServiceProvider.php │ └── VoyagerEventServiceProvider.php ├── Traits │ ├── AlertsMessages.php │ ├── Renderable.php │ ├── Resizable.php │ ├── Seedable.php │ ├── Spatial.php │ ├── Translatable.php │ └── VoyagerUser.php ├── Translator.php ├── Translator │ └── Collection.php ├── Voyager.php ├── VoyagerServiceProvider.php └── Widgets │ ├── BaseDimmer.php │ ├── PageDimmer.php │ ├── PostDimmer.php │ └── UserDimmer.php ├── stubs ├── controller.stub └── model.stub ├── tests ├── AlertTest.php ├── AssetsTest.php ├── BreadMediaUploadTest.php ├── CompassTest.php ├── DatabaseTest.php ├── DisabledTestException.php ├── EventTest.php ├── Feature │ ├── DashboardTest.php │ └── SeederTest.php ├── FormfieldsTest.php ├── LoginTest.php ├── MenuTest.php ├── Models │ ├── CategoryTest.php │ ├── PageTest.php │ └── PostTest.php ├── MultilingualTest.php ├── PermissionTest.php ├── RolesTest.php ├── RouteTest.php ├── SearchTest.php ├── SettingsTest.php ├── Stubs │ └── Widgets │ │ ├── AccessibleDimmer.php │ │ └── InAccessibleDimmer.php ├── TestCase.php ├── Unit │ ├── Actions │ │ └── AbstractActionTest.php │ └── VoyagerTest.php ├── UserProfileTest.php ├── ViewEventTest.php ├── bootstrap.php ├── database │ └── factories │ │ ├── RoleFactory.php │ │ └── UserFactory.php ├── rendered_alerts.html ├── temp │ └── new_avatar.png └── views │ ├── foo.blade.php │ ├── hello.blade.php │ └── test.blade.php ├── versioning.md └── webpack.mix.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.php linguist-language=PHP 2 | *.js linguist-language=PHP -------------------------------------------------------------------------------- /.gitbook.yaml: -------------------------------------------------------------------------------- 1 | root: ./docs/ 2 | 3 | structure: 4 | readme: ./introduction.md 5 | summary: ./summary.md 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Ask a question 4 | url: https://voyager-slack-invitation.herokuapp.com/ 5 | about: Please ask and answer questions here -------------------------------------------------------------------------------- /.github/SECURITY.yml: -------------------------------------------------------------------------------- 1 | If you have a potential security concern to report, please message @fletch3555 or @emptynick directly in our slack group: 2 | 3 | https://voyager-slack-invitation.herokuapp.com/ 4 | 5 | We request that you do NOT report it publicly until we've had a chance to confirm the issue and provide a fix. 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .DS_Store 3 | .idea 4 | vendor 5 | build 6 | .lock 7 | composer.lock 8 | .phpunit.result.cache 9 | .phpunit.cache 10 | -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- 1 | exclude($excluded_folders) 9 | ->in(__DIR__); 10 | 11 | return PhpCsFixer\Config::create() 12 | ->setRules(array( 13 | '@PSR2' => true, 14 | 'lowercase_constants' => false, 15 | 'method_argument_space' => false, 16 | )) 17 | ->setFinder($finder); -------------------------------------------------------------------------------- /docs/.gitbook/assets/action_buttons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/action_buttons.jpg -------------------------------------------------------------------------------- /docs/.gitbook/assets/action_buttons_custom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/action_buttons_custom.jpg -------------------------------------------------------------------------------- /docs/.gitbook/assets/bread_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/bread_controller.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/bread_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/bread_details.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/bread_fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/bread_fields.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/bread_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/bread_order.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/bread_override_voyager_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/bread_override_voyager_models.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/bread_relationship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/bread_relationship.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/bread_relationship_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/bread_relationship_form.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/bread_relationship_no_bread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/bread_relationship_no_bread.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/bread_scope.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/bread_scope.jpg -------------------------------------------------------------------------------- /docs/.gitbook/assets/bread_settings_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/bread_settings_order.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/compass_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/compass_1.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/compass_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/compass_2.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/compass_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/compass_3.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/database-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/database-manager.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/database_new_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/database_new_table.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/media_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/media_manager.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/menu_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/menu_1.jpg -------------------------------------------------------------------------------- /docs/.gitbook/assets/menu_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/menu_2.jpg -------------------------------------------------------------------------------- /docs/.gitbook/assets/role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/role.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/settings.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/tagging.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/tagging.jpg -------------------------------------------------------------------------------- /docs/.gitbook/assets/upgrade_controller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/upgrade_controller.jpg -------------------------------------------------------------------------------- /docs/.gitbook/assets/upgrade_menu_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/upgrade_menu_item.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/upgrading_roles_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/docs/.gitbook/assets/upgrading_roles_controller.png -------------------------------------------------------------------------------- /docs/bread/formfields/date-time.md: -------------------------------------------------------------------------------- 1 | # Date & Timestamp 2 | 3 | ```php 4 | { 5 | "format" : "%Y-%m-%d" 6 | } 7 | ``` 8 | 9 | The date & timestamp input field is where you can input a date. In the JSON above you can specify the `format` value of the output of the date. It allows you to display a formatted `date` in browse and read views, using Carbon's `formatLocalized()` method 10 | -------------------------------------------------------------------------------- /docs/bread/formfields/number.md: -------------------------------------------------------------------------------- 1 | # Number 2 | 3 | ```php 4 | { 5 | "step" : 0.1, 6 | "min" : 0, 7 | "max" : 10, 8 | "default": 1, 9 | } 10 | ``` 11 | 12 | These are standard attributes for number input field, default value for step is any if not defined. 13 | -------------------------------------------------------------------------------- /docs/customization/overriding-routes.md: -------------------------------------------------------------------------------- 1 | # Overriding Routes 2 | 3 | You can override any Voyager routes by writing the routes you want to overwrite below `Voyager::routes()`. For example if you want to override your post LoginController: 4 | 5 | ```php 6 | Route::group(['prefix' => 'admin'], function () { 7 | Voyager::routes(); 8 | 9 | // Your overwrites here 10 | Route::post('login', ['uses' => 'MyAuthController@postLogin', 'as' => 'postlogin']); 11 | }); 12 | ``` 13 | 14 | -------------------------------------------------------------------------------- /docs/getting-started/prerequisites.md: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | 3 | Before installing Voyager make sure you have installed one of the following versions of Laravel: 4 | - Laravel 8 5 | - Laravel 9 6 | 7 | Additionally Voyager requires you to use PHP 7.3 or newer. Laravel requires you to use PHP 8 or newer when using Laravel 9. -------------------------------------------------------------------------------- /publishable/assets/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /publishable/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /publishable/assets/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /publishable/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /publishable/assets/fonts/voyager.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/fonts/voyager.eot -------------------------------------------------------------------------------- /publishable/assets/fonts/voyager.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/fonts/voyager.ttf -------------------------------------------------------------------------------- /publishable/assets/fonts/voyager.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/fonts/voyager.woff -------------------------------------------------------------------------------- /publishable/assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/images/bg.jpg -------------------------------------------------------------------------------- /publishable/assets/images/captain-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/images/captain-avatar.png -------------------------------------------------------------------------------- /publishable/assets/images/compass/documentation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/images/compass/documentation.jpg -------------------------------------------------------------------------------- /publishable/assets/images/compass/voyager-home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/images/compass/voyager-home.jpg -------------------------------------------------------------------------------- /publishable/assets/images/large-logo-icon-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/images/large-logo-icon-light.png -------------------------------------------------------------------------------- /publishable/assets/images/large-logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/images/large-logo-icon.png -------------------------------------------------------------------------------- /publishable/assets/images/logo-icon-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/images/logo-icon-light.png -------------------------------------------------------------------------------- /publishable/assets/images/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/images/logo-icon.png -------------------------------------------------------------------------------- /publishable/assets/images/voyager-character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/images/voyager-character.png -------------------------------------------------------------------------------- /publishable/assets/images/voyager-character.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/images/voyager-character.sketch -------------------------------------------------------------------------------- /publishable/assets/images/widget-backgrounds/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/images/widget-backgrounds/01.jpg -------------------------------------------------------------------------------- /publishable/assets/images/widget-backgrounds/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/images/widget-backgrounds/02.jpg -------------------------------------------------------------------------------- /publishable/assets/images/widget-backgrounds/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/images/widget-backgrounds/03.jpg -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/ext-error_marker.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/ext/error_marker"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/mode-text.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/mode/text"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/abap.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/abap"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/ada.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/ada"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/alda.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/alda"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/apache_conf.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/apache_conf"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/apex.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/apex"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/applescript.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/applescript"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/aql.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/aql"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/asciidoc.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/asciidoc"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/asl.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/asl"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/assembly_x86.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/assembly_x86"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/autohotkey.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/autohotkey"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/batchfile.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/batchfile"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/bibtex.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/bibtex"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/c9search.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/c9search"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/cirru.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/cirru"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/cobol.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/cobol"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/coldfusion.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/coldfusion"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/crystal.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/crystal"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/csharp.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/csharp"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/csound_score.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/csound_score"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/csp.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/csp"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/curly.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/curly"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/d.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/d"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/dockerfile.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/dockerfile"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/dot.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/dot"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/eiffel.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/eiffel"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/ejs.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/ejs"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/elixir.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/elixir"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/elm.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/elm"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/forth.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/forth"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/fortran.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/fortran"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/fsharp.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/fsharp"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/ftl.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/ftl"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/gcode.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/gcode"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/gherkin.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/gherkin"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/gitignore.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/gitignore"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/glsl.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/glsl"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/golang.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/golang"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/groovy.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/groovy"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/handlebars.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/handlebars"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/haskell_cabal.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/haskell_cabal"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/haxe.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/haxe"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/hjson.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/hjson"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/html_elixir.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/html_elixir"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/html_ruby.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/html_ruby"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/ini.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/ini"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/ion.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/ion"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/jack.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/jack"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/jade.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/jade"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/json.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/json"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/json5.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/json5"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/jssm.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/jssm"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/jsx.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/jsx"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/julia.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/julia"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/kotlin.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/kotlin"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/latex.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/latex"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/latte.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/latte"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/less.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/less"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/lisp.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/lisp"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/livescript.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/livescript"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/logiql.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/logiql"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/logtalk.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/logtalk"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/luapage.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/luapage"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/lucene.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/lucene"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/mask.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/mask"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/matlab.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/matlab"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/mediawiki.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/mediawiki"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/mel.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/mel"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/mips.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/mips"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/mixal.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/mixal"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/mushcode.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/mushcode"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/mysql.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/mysql"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/nginx.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/nginx"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/nim.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/nim"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/nix.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/nix"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/nsis.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/nsis"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/nunjucks.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/nunjucks"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/objectivec.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/objectivec"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/ocaml.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/ocaml"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/partiql.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/partiql"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/pascal.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/pascal"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/pgsql.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/pgsql"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/php_laravel_blade.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/php_laravel_blade"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/pig.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/pig"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/plain_text.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/plain_text"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/powershell.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/powershell"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/praat.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/praat"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/prisma.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/prisma"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/prolog.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/prolog"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/properties.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/properties"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/protobuf.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/protobuf"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/puppet.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/puppet"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/qml.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/qml"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/raku.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/raku"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/rdoc.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/rdoc"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/red.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/red"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/redshift.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/redshift"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/rhtml.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/rhtml"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/rust.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/rust"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/sac.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/sac"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/sass.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/sass"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/scad.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/scad"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/scala.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/scala"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/scheme.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/scheme"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/scrypt.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/scrypt"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/scss.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/scss"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/sjs.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/sjs"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/slim.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/slim"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/smarty.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/smarty"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/smithy.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/smithy"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/soy_template.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/soy_template"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/space.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/space"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/sparql.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/sparql"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/stylus.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/stylus"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/svg.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/svg"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/swift.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/swift"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/terraform.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/terraform"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/text.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/text"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/toml.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/toml"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/tsx.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/tsx"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/turtle.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/turtle"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/twig.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/twig"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/typescript.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/typescript"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/vbscript.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/vbscript"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/verilog.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/verilog"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/vhdl.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/vhdl"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/visualforce.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/visualforce"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/xml.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/xml"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/yaml.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/yaml"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/ace/libs/snippets/zeek.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | ace.require(["ace/snippets/zeek"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /publishable/assets/js/icons/default/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "default" icons for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/icons/default') 5 | // ES2015: 6 | // import 'tinymce/icons/default' 7 | require('./icons.js'); -------------------------------------------------------------------------------- /publishable/assets/js/models/dom/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "dom" model for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/models/dom') 5 | // ES2015: 6 | // import 'tinymce/models/dom' 7 | require('./model.js'); -------------------------------------------------------------------------------- /publishable/assets/js/skins/ui/oxide-dark/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/js/skins/ui/oxide-dark/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /publishable/assets/js/skins/ui/oxide/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/js/skins/ui/oxide/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /publishable/assets/js/skins/voyager/fonts/readme.md: -------------------------------------------------------------------------------- 1 | Icons are generated and provided by the http://icomoon.io service. 2 | -------------------------------------------------------------------------------- /publishable/assets/js/skins/voyager/fonts/tinymce-small.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/js/skins/voyager/fonts/tinymce-small.eot -------------------------------------------------------------------------------- /publishable/assets/js/skins/voyager/fonts/tinymce-small.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/js/skins/voyager/fonts/tinymce-small.ttf -------------------------------------------------------------------------------- /publishable/assets/js/skins/voyager/fonts/tinymce-small.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/js/skins/voyager/fonts/tinymce-small.woff -------------------------------------------------------------------------------- /publishable/assets/js/skins/voyager/fonts/tinymce.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/js/skins/voyager/fonts/tinymce.eot -------------------------------------------------------------------------------- /publishable/assets/js/skins/voyager/fonts/tinymce.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/js/skins/voyager/fonts/tinymce.ttf -------------------------------------------------------------------------------- /publishable/assets/js/skins/voyager/fonts/tinymce.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/js/skins/voyager/fonts/tinymce.woff -------------------------------------------------------------------------------- /publishable/assets/js/skins/voyager/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/js/skins/voyager/img/anchor.gif -------------------------------------------------------------------------------- /publishable/assets/js/skins/voyager/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/js/skins/voyager/img/loader.gif -------------------------------------------------------------------------------- /publishable/assets/js/skins/voyager/img/object.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/js/skins/voyager/img/object.gif -------------------------------------------------------------------------------- /publishable/assets/js/skins/voyager/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/assets/js/skins/voyager/img/trans.gif -------------------------------------------------------------------------------- /publishable/assets/js/themes/silver/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "silver" theme for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/themes/silver') 5 | // ES2015: 6 | // import 'tinymce/themes/silver' 7 | require('./theme.js'); -------------------------------------------------------------------------------- /publishable/database/seeders/MenusTableSeeder.php: -------------------------------------------------------------------------------- 1 | 'admin', 19 | ]); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /publishable/dummy_content/pages/page1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/pages/page1.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post1-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post1-cropped.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post1-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post1-medium.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post1-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post1-small.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post1.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post2-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post2-cropped.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post2-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post2-medium.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post2-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post2-small.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post2.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post3-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post3-cropped.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post3-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post3-medium.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post3-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post3-small.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post3.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post4-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post4-cropped.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post4-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post4-medium.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post4-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post4-small.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/posts/post4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/posts/post4.jpg -------------------------------------------------------------------------------- /publishable/dummy_content/users/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/publishable/dummy_content/users/default.png -------------------------------------------------------------------------------- /publishable/lang/al/date.php: -------------------------------------------------------------------------------- 1 | 'Javën e kaluar', 5 | 'last_year' => 'Viti i kaluar', 6 | 'this_week' => 'Kjo javë', 7 | 'this_year' => 'Këtë vit', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/al/json.php: -------------------------------------------------------------------------------- 1 | 'Json i pavlefshëm', 5 | 'invalid_message' => 'Duket sikur keni futur disa JSON të pavlefshëm.', 6 | 'valid' => 'Valid Json', 7 | 'validation_errors' => 'Gabimet e validimit', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/al/login.php: -------------------------------------------------------------------------------- 1 | 'Identifikimi', 5 | 'signin_below' => 'Hyni më poshtë:', 6 | 'welcome' => 'Mirë se vini në Voyager. Adminja e zhdukur për Laravel ', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/al/profile.php: -------------------------------------------------------------------------------- 1 | 'Avatari', 5 | 'edit' => 'Edit My Profile', 6 | 'edit_user' => 'Edit User', 7 | 'password' => 'Fjalëkalimi', 8 | 'password_hint' => 'Lëreni bosh për të mbajtur të njëjtën', 9 | 'role' => 'Roli', 10 | 'user_role' => 'Roli i përdoruesit', 11 | ]; 12 | -------------------------------------------------------------------------------- /publishable/lang/al/theme.php: -------------------------------------------------------------------------------- 1 | 'Bërë me nga', 5 | 'footer_copyright2' => 'Bërë me rum dhe rum më shumë', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/am/date.php: -------------------------------------------------------------------------------- 1 | 'Վերջին շաբաթ', 5 | 'last_year' => 'Վերջին տարի', 6 | 'this_week' => 'Այս շաբաթ', 7 | 'this_year' => 'Այս տարի', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/am/json.php: -------------------------------------------------------------------------------- 1 | 'Անվավեր JSON', 5 | 'invalid_message' => 'Կարծես թե ներկայացրել եք ինչ որ անվավել JSON.', 6 | 'valid' => 'Վավեր JSON', 7 | 'validation_errors' => 'Վավերացման սխալներ', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/am/login.php: -------------------------------------------------------------------------------- 1 | 'Մուտք գործել', 5 | 'signin_below' => 'Մուտք գործել Ստորև:', 6 | 'welcome' => 'Բարի գալուստ Voyager: Laravel-ի համար անհայտ ղեկավարող', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/am/theme.php: -------------------------------------------------------------------------------- 1 | 'Պատրաստված է կողմից', 5 | 'footer_copyright2' => 'Պատրաստված է սիրով և նույնիսկ ավելի մեծ սիրով:', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/ar/date.php: -------------------------------------------------------------------------------- 1 | 'الأسبوع الماضي', 5 | 'last_year' => 'السنة الماضية', 6 | 'this_week' => 'هذا الأسبوع', 7 | 'this_year' => 'هذا العام', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/ar/json.php: -------------------------------------------------------------------------------- 1 | 'Json غير صالح', 5 | 'invalid_message' => 'يبدو أنك عرضت بعض Json الغير صالحة.', 6 | 'valid' => 'Json صالح', 7 | 'validation_errors' => 'أخطاء أثناء التحقق', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/ar/login.php: -------------------------------------------------------------------------------- 1 | 'دخول', 5 | 'signin_below' => 'تسجيل الدخول :', 6 | 'welcome' => 'مرحبا بكم في Voyager. لوحة التحكم المكملة للارافيل', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/ar/theme.php: -------------------------------------------------------------------------------- 1 | 'صنعت بـ بواسطة', 5 | 'footer_copyright2' => 'مصنوعة باستخدام الكثير من القهوة والشاي بالنعناع', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/az/date.php: -------------------------------------------------------------------------------- 1 | 'Keçən həftə', 5 | 'last_year' => 'Keçən il', 6 | 'this_week' => 'Bu həftə', 7 | 'this_year' => 'Bu il', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/az/json.php: -------------------------------------------------------------------------------- 1 | 'JSON yanlış formatı', 5 | 'invalid_message' => 'JSON yanlış format daxil edilib', 6 | 'valid' => 'JSON düzgün format', 7 | 'validation_errors' => 'Məlumatları yoxlayarkən xəta', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/az/login.php: -------------------------------------------------------------------------------- 1 | 'Sistemə giriş', 5 | 'signin_below' => 'İdarəetmə panelinə giriş', 6 | 'welcome' => 'Laraveldə çatışmayan, idarəetmə paneli', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/az/profile.php: -------------------------------------------------------------------------------- 1 | 'Foto', 5 | 'edit' => 'Profil ayarları', 6 | 'edit_user' => 'Profili dəyiş', 7 | 'password' => 'Şifrə', 8 | 'password_hint' => 'Eyni dəyəri saxlamaq üçün sahəni boş saxlayın', 9 | 'role' => 'Qrup', 10 | 'roles' => 'Rol', 11 | 'role_default' => 'Susmaya görə rol', 12 | 'roles_additional' => 'Əlavə rollar', 13 | 'user_role' => 'İstifadəçi qrupu', 14 | ]; 15 | -------------------------------------------------------------------------------- /publishable/lang/az/theme.php: -------------------------------------------------------------------------------- 1 | ' yaradılıb', 5 | 'footer_copyright2' => 'Rom altında yaradılıb :) ', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/bg/date.php: -------------------------------------------------------------------------------- 1 | 'Миналата седмица', 5 | 'last_year' => 'Миналата година', 6 | 'this_week' => 'Тази седмица', 7 | 'this_year' => 'Тази седмица', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/bg/json.php: -------------------------------------------------------------------------------- 1 | 'Неправилен JSON', 5 | 'invalid_message' => 'Изглежда представихте неправилен JSON.', 6 | 'valid' => 'Валиден JSON', 7 | 'validation_errors' => 'Проблеми с валидацията', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/bg/login.php: -------------------------------------------------------------------------------- 1 | 'Влизане', 5 | 'signin_below' => 'Влезте по-долу:', 6 | 'welcome' => 'Добре дошли във Voyager. Липсващата Админ система за Ларавел', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/bg/theme.php: -------------------------------------------------------------------------------- 1 | 'Направено с от', 5 | 'footer_copyright2' => 'Направено с ром и още ром', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/ca/date.php: -------------------------------------------------------------------------------- 1 | 'La setmana passada', 5 | 'last_year' => 'L\'any passat', 6 | 'this_week' => 'Aquesta setmana', 7 | 'this_year' => 'Aquest any', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/ca/json.php: -------------------------------------------------------------------------------- 1 | 'Json invàlid', 5 | 'invalid_message' => 'Sembla que has introduït un Json invàlid', 6 | 'valid' => 'Json vàlid', 7 | 'validation_errors' => 'Errors de validació', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/ca/login.php: -------------------------------------------------------------------------------- 1 | 'Iniciant sessió', 5 | 'signin_below' => 'Iniciar sessió:', 6 | 'welcome' => 'Benvingut a Voyager. L\'administrador que faltava a Laravel ', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/ca/profile.php: -------------------------------------------------------------------------------- 1 | 'Avatar', 5 | 'edit' => 'Editar el meu perfil', 6 | 'edit_user' => 'Editar usuari', 7 | 'password' => 'Contrasenya', 8 | 'password_hint' => 'Deixar buit per mantenir la mateixa', 9 | 'role' => 'Rol', 10 | 'user_role' => 'Rol d\'usuari', 11 | ]; 12 | -------------------------------------------------------------------------------- /publishable/lang/ca/theme.php: -------------------------------------------------------------------------------- 1 | 'Fet amb per', 5 | 'footer_copyright2' => 'Fet amb ron i inclús més ron', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/cs/date.php: -------------------------------------------------------------------------------- 1 | 'Minulý týden', 5 | 'last_year' => 'Minulý rok', 6 | 'this_week' => 'Tento týden', 7 | 'this_year' => 'Tento rok', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/cs/json.php: -------------------------------------------------------------------------------- 1 | 'Neplatný Json', 5 | 'invalid_message' => 'Vypadá to, že jste zvolil neplatný JSON.', 6 | 'valid' => 'Platný Json', 7 | 'validation_errors' => 'Chyby validace', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/cs/login.php: -------------------------------------------------------------------------------- 1 | 'Přihlašuji', 5 | 'signin_below' => 'Přihlašte se:', 6 | 'welcome' => 'Vítá vás Voyager, chybějící administrace pro Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/cs/profile.php: -------------------------------------------------------------------------------- 1 | 'Avatar', 5 | 'edit' => 'Upravit profil', 6 | 'edit_user' => 'Upravit uživatele', 7 | 'password' => 'Heslo', 8 | 'password_hint' => 'Zanechte prázdné, pokud chcete uchovat stávající heslo', 9 | 'role' => 'Role', 10 | 'user_role' => 'Uživatelská role', 11 | ]; 12 | -------------------------------------------------------------------------------- /publishable/lang/cs/theme.php: -------------------------------------------------------------------------------- 1 | 'Vytvořeno s od', 5 | 'footer_copyright2' => 'Vytvořeno s rumem', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/de/date.php: -------------------------------------------------------------------------------- 1 | 'Letzte Woche', 5 | 'last_year' => 'Letztes Jahr', 6 | 'this_week' => 'Diese Woche', 7 | 'this_year' => 'Dieses Jahr', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/de/json.php: -------------------------------------------------------------------------------- 1 | 'Ungültiges JSON', 5 | 'invalid_message' => 'Es scheint Sie haben ungültiges JSON eingebracht.', 6 | 'valid' => 'Gültiges JSON', 7 | 'validation_errors' => 'Validierungsfehler', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/de/login.php: -------------------------------------------------------------------------------- 1 | 'Einloggen', 5 | 'signin_below' => 'Unten anmelden:', 6 | 'welcome' => 'Willkommen bei Voyager. Der fehlende Admin für Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/de/theme.php: -------------------------------------------------------------------------------- 1 | 'Gemacht mit von', 5 | 'footer_copyright2' => 'Gemacht mit Rum und noch mehr Rum', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/el/date.php: -------------------------------------------------------------------------------- 1 | 'Προηγούμενη εβδομάδα', 5 | 'last_year' => 'Προηγούμενο έτος', 6 | 'this_week' => 'Αυτή την εβδομάδα', 7 | 'this_year' => 'Αυτό το έτος', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/el/json.php: -------------------------------------------------------------------------------- 1 | 'Μη έγκυρο JSON', 5 | 'invalid_message' => 'Φαίνεται ότι εισάγατε μη έγκυρο JSON.', 6 | 'valid' => 'Έγκυρο JSON', 7 | 'validation_errors' => 'Λάθη επικύρωσης', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/el/login.php: -------------------------------------------------------------------------------- 1 | 'Logging in', 5 | 'signin_below' => 'Κάντε σύνδεση παρακάτω:', 6 | 'welcome' => 'Καλωσήρθατε στο Voyager. Τον πίνακα διαχείρισης που έλειπε από το Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/el/theme.php: -------------------------------------------------------------------------------- 1 | 'Δημιουργήθηκε με από το', 5 | 'footer_copyright2' => 'Δημιουργήθηκε με ρούμι και ακόμα περισσότερο ρούμι', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/en/date.php: -------------------------------------------------------------------------------- 1 | 'Last Week', 5 | 'last_year' => 'Last Year', 6 | 'this_week' => 'This Week', 7 | 'this_year' => 'This Year', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/en/json.php: -------------------------------------------------------------------------------- 1 | 'Invalid JSON', 5 | 'invalid_message' => 'Seems like you introduced some invalid JSON.', 6 | 'valid' => 'Valid JSON', 7 | 'validation_errors' => 'Validation errors', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/en/login.php: -------------------------------------------------------------------------------- 1 | 'Logging in', 5 | 'signin_below' => 'Sign In Below:', 6 | 'welcome' => 'Welcome to Voyager. The Missing Admin for Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/en/profile.php: -------------------------------------------------------------------------------- 1 | 'Avatar', 5 | 'edit' => 'Edit My Profile', 6 | 'edit_user' => 'Edit User', 7 | 'password' => 'Password', 8 | 'password_hint' => 'Leave empty to keep the same', 9 | 'role' => 'Role', 10 | 'roles' => 'Roles', 11 | 'role_default' => 'Default Role', 12 | 'roles_additional' => 'Additional Roles', 13 | 'user_role' => 'User Role', 14 | ]; 15 | -------------------------------------------------------------------------------- /publishable/lang/en/theme.php: -------------------------------------------------------------------------------- 1 | 'Made with by', 5 | 'footer_copyright2' => 'Made with rum and even more rum', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/es/date.php: -------------------------------------------------------------------------------- 1 | 'La semana pasada', 5 | 'last_year' => 'El año pasado', 6 | 'this_week' => 'Esta semana', 7 | 'this_year' => 'Este año', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/es/json.php: -------------------------------------------------------------------------------- 1 | 'JSON inválido', 5 | 'invalid_message' => 'Parece que has introducido un JSON inválido.', 6 | 'valid' => 'JSON Válido', 7 | 'validation_errors' => 'Errores de validación', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/es/login.php: -------------------------------------------------------------------------------- 1 | 'Iniciando sesión', 5 | 'signin_below' => 'Inicie sesión aquí:', 6 | 'welcome' => 'Bienvenido a Voyager. El administrador que le faltaba a Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/es/theme.php: -------------------------------------------------------------------------------- 1 | 'Hecho con por', 5 | 'footer_copyright2' => 'Hecho con ron e incluso más ron', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/fa/date.php: -------------------------------------------------------------------------------- 1 | 'هفته پیش', 5 | 'last_year' => 'سال پیش', 6 | 'this_week' => 'این هفته', 7 | 'this_year' => 'امسال', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/fa/json.php: -------------------------------------------------------------------------------- 1 | 'جیسون نامعتبر', 5 | 'invalid_message' => 'به نظر می رسد جیسون معرفی شده دارای ایراد است.', 6 | 'valid' => 'جیسون معتبر', 7 | 'validation_errors' => 'خطا در اعتبارسنجی', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/fa/login.php: -------------------------------------------------------------------------------- 1 | 'ورود', 5 | 'signin_below' => 'در زیر وارد شوید:', 6 | 'welcome' => 'به Voyager پنل ادمینی که لاراول کم داشت خوش آمدید!', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/fa/profile.php: -------------------------------------------------------------------------------- 1 | 'آواتار', 5 | 'edit' => 'ویرایش پروفایل من', 6 | 'edit_user' => 'ویرایش کاربر', 7 | 'password' => 'رمز عبور', 8 | 'password_hint' => 'برای یکسان بودن خالی بگذارید', 9 | 'role' => 'نقش', 10 | 'roles' => 'نقش ها', 11 | 'role_default' => 'نقش پیشفرض', 12 | 'roles_additional' => 'نقش های دیگر', 13 | 'user_role' => 'نقش کاربر', 14 | ]; 15 | -------------------------------------------------------------------------------- /publishable/lang/fa/theme.php: -------------------------------------------------------------------------------- 1 | 'ایجاد شده با', 5 | 'footer_copyright2' => 'Made with rum and even more rum', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/fi/date.php: -------------------------------------------------------------------------------- 1 | 'Viime viikko', 5 | 'last_year' => 'Viime vuosi', 6 | 'this_week' => 'Tämä viikko', 7 | 'this_year' => 'Tämä vuosi', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/fi/json.php: -------------------------------------------------------------------------------- 1 | 'Virheellinen JSON', 5 | 'invalid_message' => 'Näyttää siltä että JSON muoto oli virheellinen.', 6 | 'valid' => 'Kelpaava JSON', 7 | 'validation_errors' => 'Muototarkistuksen virheet', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/fi/login.php: -------------------------------------------------------------------------------- 1 | 'Kirjaudutaan sisään', 5 | 'signin_below' => 'Kirjaudu sisään:', 6 | 'welcome' => 'Tervetuloa Voyageriin. Tämä on se Laravelista puuttunut hallintapaneeli.', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/fi/profile.php: -------------------------------------------------------------------------------- 1 | 'Profiilikuva', 5 | 'edit' => 'Muokkaa profiiliani', 6 | 'edit_user' => 'Muokkaa käyttäjää', 7 | 'password' => 'Salasana', 8 | 'password_hint' => 'Jätä tyhjä jos et halua muuttaa', 9 | 'role' => 'Rooli', 10 | 'user_role' => 'Käyttäjän rooli', 11 | ]; 12 | -------------------------------------------------------------------------------- /publishable/lang/fi/theme.php: -------------------------------------------------------------------------------- 1 | 'Tehtiin kanssa', 5 | 'footer_copyright2' => 'Tehtiin rommin ja lisärommin kanssa', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/fr/date.php: -------------------------------------------------------------------------------- 1 | 'La semaine dernière', 5 | 'last_year' => 'L\'année dernière', 6 | 'this_week' => 'Cette semaine', 7 | 'this_year' => 'Cette année', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/fr/json.php: -------------------------------------------------------------------------------- 1 | 'Json invalide', 5 | 'invalid_message' => 'Il semble que votre JSON soit invalide.', 6 | 'valid' => 'Json valide', 7 | 'validation_errors' => 'Erreurs de validation', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/fr/login.php: -------------------------------------------------------------------------------- 1 | 'Se connecter', 5 | 'signin_below' => 'Connectez-vous ci-dessous :', 6 | 'welcome' => 'Bienvenue dans Voyager, le panneau d\'administration qui manquait à Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/fr/profile.php: -------------------------------------------------------------------------------- 1 | 'Avatar', 5 | 'edit' => 'Editer mon profil', 6 | 'edit_user' => 'Editer l\'utilisateur', 7 | 'password' => 'Mot de passe', 8 | 'password_hint' => 'Laissez vide pour garder le même', 9 | 'role' => 'Rôle', 10 | 'roles' => 'Rôles', 11 | 'role_default' => 'Rôle par défaut', 12 | 'roles_additional'=> 'Rôles additionnels', 13 | 'user_role' => 'Rôle utilisateur', 14 | ]; 15 | -------------------------------------------------------------------------------- /publishable/lang/fr/theme.php: -------------------------------------------------------------------------------- 1 | 'Fait avec par', 5 | 'footer_copyright2' => 'Fait avec du rhum et encore plus de rhum', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/gl/date.php: -------------------------------------------------------------------------------- 1 | 'A semana pasada', 5 | 'last_year' => 'O ano pasado', 6 | 'this_week' => 'Esta semana', 7 | 'this_year' => 'Este ano', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/gl/json.php: -------------------------------------------------------------------------------- 1 | 'Json inválido', 5 | 'invalid_message' => 'Parece que introduciches algún JSON inválido.', 6 | 'valid' => 'Json Válido', 7 | 'validation_errors' => 'Errores de validación', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/gl/login.php: -------------------------------------------------------------------------------- 1 | 'Iniciando sesión', 5 | 'signin_below' => 'Ingresar abaixo:', 6 | 'welcome' => 'Benvido a Voyager. O administrador desaparecido de Laravel ', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/gl/theme.php: -------------------------------------------------------------------------------- 1 | 'Feito con por', 5 | 'footer_copyright2' => 'Feito con ron e incluso máis ron', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/id/date.php: -------------------------------------------------------------------------------- 1 | 'Minggu Lalu', 5 | 'last_year' => 'Tahun Lalu', 6 | 'this_week' => 'Minggu Ini', 7 | 'this_year' => 'Tahun Ini', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/id/json.php: -------------------------------------------------------------------------------- 1 | 'Json tidak valid', 5 | 'invalid_message' => 'Sepertinya JSON kamu tidak valid.', 6 | 'valid' => 'Json Valid', 7 | 'validation_errors' => 'Validasi error', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/id/login.php: -------------------------------------------------------------------------------- 1 | 'Sedang login', 5 | 'signin_below' => 'Sign In Dibawah:', 6 | 'welcome' => 'Selamat datang di Voyager. Admin untuk Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/id/profile.php: -------------------------------------------------------------------------------- 1 | 'Avatar', 5 | 'edit' => 'Ubah Profil', 6 | 'edit_user' => 'Ubah User', 7 | 'password' => 'Password', 8 | 'password_hint' => 'Kosongkan apabila sama', 9 | 'role' => 'Role', 10 | 'user_role' => 'User Role', 11 | ]; 12 | -------------------------------------------------------------------------------- /publishable/lang/id/theme.php: -------------------------------------------------------------------------------- 1 | 'Dibuat dengan oleh', 5 | 'footer_copyright2' => 'Dibuat dengan rum dan lebih banyak rum', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/it/date.php: -------------------------------------------------------------------------------- 1 | 'Ultima Settimana', 5 | 'last_year' => 'Ultimo Anno', 6 | 'this_week' => 'Questa Settimana', 7 | 'this_year' => 'Questo Anno', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/it/json.php: -------------------------------------------------------------------------------- 1 | 'Json non valido', 5 | 'invalid_message' => 'Sembra che tu abbia introdotto qualche JSON non valido.', 6 | 'valid' => 'Json valido', 7 | 'validation_errors' => 'Errori di validazione', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/it/login.php: -------------------------------------------------------------------------------- 1 | 'Collegati', 5 | 'signin_below' => 'Accedi Qui Sotto:', 6 | 'welcome' => 'Benvenuti in Voyager. L\'Admin panel che mancava per Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/it/theme.php: -------------------------------------------------------------------------------- 1 | 'Realizzato con da', 5 | 'footer_copyright2' => 'Realizzato con rum, e poi ancora rum', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/ja/date.php: -------------------------------------------------------------------------------- 1 | '先週', 5 | 'last_year' => '昨年', 6 | 'this_week' => '今週', 7 | 'this_year' => '今年', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/ja/json.php: -------------------------------------------------------------------------------- 1 | '無効なJSONです', 5 | 'invalid_message' => '無効なJSONを導入したようです', 6 | 'valid' => '有効なJSON', 7 | 'validation_errors' => 'バリデーションエラー', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/ja/login.php: -------------------------------------------------------------------------------- 1 | 'ログイン', 5 | 'signin_below' => 'サインイン:', 6 | 'welcome' => 'Voyagerへようこそ. The Missing Admin for Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/ja/profile.php: -------------------------------------------------------------------------------- 1 | 'アバター', 5 | 'edit' => 'プロフィールを編集', 6 | 'edit_user' => 'ユーザーを編集', 7 | 'password' => 'パスワード', 8 | 'password_hint' => '空にすれば現状が維持されます', 9 | 'role' => 'ロール', 10 | 'roles' => 'ロール', 11 | 'role_default' => 'デフォルトロール', 12 | 'roles_additional' => '追加ロール', 13 | 'user_role' => 'ユーザーロール', 14 | ]; 15 | -------------------------------------------------------------------------------- /publishable/lang/ja/theme.php: -------------------------------------------------------------------------------- 1 | 'Made with by', 5 | 'footer_copyright2' => 'Made with rum and even more rum', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/km/date.php: -------------------------------------------------------------------------------- 1 | 'សប្តាហ៍មុន', 5 | 'last_year' => 'ឆ្នាំមុន', 6 | 'this_week' => 'សប្តាហ៍នេះ', 7 | 'this_year' => 'ឆ្នាំនេះ', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/km/json.php: -------------------------------------------------------------------------------- 1 | 'ទម្រង់នៃ JSON មិនត្រឹមត្រូវ', 5 | 'invalid_message' => 'ហាក់ដូចជាទម្រង់នៃ JSON មិនត្រឹមត្រូវ', 6 | 'valid' => 'ទម្រង់នៃ JSON ត្រឹមត្រូវ', 7 | 'validation_errors' => 'មានបញ្ហាក្នុងការផ្ទៀងផ្ទាត់', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/km/login.php: -------------------------------------------------------------------------------- 1 | 'កំពុងចូលប្រើប្រាស់ប្រព័ន្ធ', 5 | 'signin_below' => 'ចូលប្រើប្រាស់ប្រព័ន្ធដោយចុចនៅខាងក្រោម:', 6 | 'welcome' => 'ស្វាគមន៌ការមកដល់នៃ Voyager ដែលជាប្រភេទប្រព័ន្ធគ្រប់គ្រងទិន្នន័យនៃក្រមខណ្ឌ Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/km/theme.php: -------------------------------------------------------------------------------- 1 | 'បង្កើតដោយ ', 5 | 'footer_copyright2' => 'ផលិតជាមួយ Rum និង Rum ច្រើនទៀត', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/ku/date.php: -------------------------------------------------------------------------------- 1 | 'هەفتەی ڕابردوو', 5 | 'last_year' => 'ساڵی ڕابردوو', 6 | 'this_week' => 'ئەم هەفتەیە', 7 | 'this_year' => 'ئەمساڵ', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/ku/json.php: -------------------------------------------------------------------------------- 1 | 'هەڵە JSON', 5 | 'invalid_message' => 'وا دیارە کە JSON هەڵەت ناساندووە.', 6 | 'valid' => 'دروست JSON', 7 | 'validation_errors' => 'ڕاستکردنەوە هەڵە بوو', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/ku/login.php: -------------------------------------------------------------------------------- 1 | 'چوونەو ژوورەوە', 5 | 'signin_below' => 'لە خوارەوە بچۆ ژوورەوە:', 6 | 'welcome' => 'بەخێربێیت بۆ ڤۆیەیجەر (Voyager)، بەڕێوەبەرایەتی نادیار بۆ لاراڤێل', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/ku/theme.php: -------------------------------------------------------------------------------- 1 | 'دروستکراوە بە لەلایەن', 5 | 'footer_copyright2' => 'دروستکراوە بە هەنگوین و هەنگوینی زیاتر', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/mm/date.php: -------------------------------------------------------------------------------- 1 | 'Last Week', 5 | 'last_year' => 'Last Year', 6 | 'this_week' => 'This Week', 7 | 'this_year' => 'This Year', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/mm/json.php: -------------------------------------------------------------------------------- 1 | 'Invalid JSON', 5 | 'invalid_message' => 'Seems like you introduced some invalid JSON.', 6 | 'valid' => 'Valid JSON', 7 | 'validation_errors' => 'Validation errors', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/mm/login.php: -------------------------------------------------------------------------------- 1 | 'Logging in', 5 | 'signin_below' => 'Sign In Below:', 6 | 'welcome' => 'Welcome to Voyager. The Missing Admin for Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/mm/profile.php: -------------------------------------------------------------------------------- 1 | 'Avatar', 5 | 'edit' => 'Edit My Profile', 6 | 'edit_user' => 'Edit User', 7 | 'password' => 'Password', 8 | 'password_hint' => 'Leave empty to keep the same', 9 | 'role' => 'Role', 10 | 'roles' => 'Roles', 11 | 'role_default' => 'Default Role', 12 | 'roles_additional' => 'Additional Roles', 13 | 'user_role' => 'User Role', 14 | ]; 15 | -------------------------------------------------------------------------------- /publishable/lang/mm/theme.php: -------------------------------------------------------------------------------- 1 | ' အချစ်တွေနဲ့လုပ်ထားသည်', 5 | 'footer_copyright2' => 'Made with rum and even more rum', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/my/date.php: -------------------------------------------------------------------------------- 1 | 'ပြီးခဲ့သည့်အပတ်က', 5 | 'last_year' => 'မနှစ်က', 6 | 'this_week' => 'ဒီအပတ်', 7 | 'this_year' => 'ဒီနှစ်', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/my/json.php: -------------------------------------------------------------------------------- 1 | 'JSON မမှန်ကန်ပါ။', 5 | 'invalid_message' => 'မမှန်ကန်သော JSON ကို မိတ်ဆက်ထားပုံရသည်။', 6 | 'valid' => 'အကျုံးဝင်သော JSON', 7 | 'validation_errors' => 'အတည်ပြုချက် အမှား', 8 | ]; -------------------------------------------------------------------------------- /publishable/lang/my/login.php: -------------------------------------------------------------------------------- 1 | 'အကောင့်ဝင်ရန်', 5 | 'signin_below' => 'အကောင့်လုပ်ရန်:', 6 | 'welcome' => 'Welcome to Voyager. The Missing Admin for Laravel', 7 | ]; -------------------------------------------------------------------------------- /publishable/lang/my/theme.php: -------------------------------------------------------------------------------- 1 | ' အချစ်တွေနဲ့လုပ်ထားသည်', 5 | 'footer_copyright2' => 'Made with rum and even more rum', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/nl/date.php: -------------------------------------------------------------------------------- 1 | 'Vorige week', 5 | 'last_year' => 'Vorig jaar', 6 | 'this_week' => 'Deze week', 7 | 'this_year' => 'Dit jaar', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/nl/json.php: -------------------------------------------------------------------------------- 1 | 'Invalide JSON', 5 | 'invalid_message' => 'Het lijkt er op dat je wat invalide JSON hebt geïntroduceerd.', 6 | 'valid' => 'Valide JSON', 7 | 'validation_errors' => 'Validatie fouten', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/nl/login.php: -------------------------------------------------------------------------------- 1 | 'Aan het inloggen', 5 | 'signin_below' => 'Log hier onder in:', 6 | 'welcome' => 'Welkom bij Voyager. De missende admin voor Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/nl/profile.php: -------------------------------------------------------------------------------- 1 | 'Avatar', 5 | 'edit' => 'Mijn profiel aanpassen', 6 | 'edit_user' => 'Gebruiker aanpassen', 7 | 'password' => 'Wachtwoord', 8 | 'password_hint' => 'Leeg laten om hetzelfde te houden', 9 | 'role' => 'Rol', 10 | 'user_role' => 'Gebruikersrol', 11 | ]; 12 | -------------------------------------------------------------------------------- /publishable/lang/nl/theme.php: -------------------------------------------------------------------------------- 1 | 'Gemaakt met door', 5 | 'footer_copyright2' => 'Gemaakt met rum en nog meer rum', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/pl/date.php: -------------------------------------------------------------------------------- 1 | 'Poprzedni tydzień', 5 | 'last_year' => 'Poprzedni rok', 6 | 'this_week' => 'Bieżący tydzień', 7 | 'this_year' => 'Bieżący rok', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/pl/json.php: -------------------------------------------------------------------------------- 1 | 'Błędny JSON', 5 | 'invalid_message' => 'Wygląda na to, że wprowadziłeś nieprawidłowo zbudowany JSON.', 6 | 'valid' => 'Poprawny JSON', 7 | 'validation_errors' => 'Błędy walidacji', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/pl/login.php: -------------------------------------------------------------------------------- 1 | 'Trwa logowanie', 5 | 'signin_below' => 'Wprowadź poniżej dane logowania:', 6 | 'welcome' => 'Witaj w Voyager. Brakujący panel administracyjny Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/pl/profile.php: -------------------------------------------------------------------------------- 1 | 'Avatar', 5 | 'edit' => 'Edytuj mój profil', 6 | 'edit_user' => 'Edytuj użytkownika', 7 | 'password' => 'Hasło', 8 | 'password_hint' => 'Pozostaw puste, aby zachować bieżące', 9 | 'role' => 'Role', 10 | 'user_role' => 'Role użytkownika', 11 | ]; 12 | -------------------------------------------------------------------------------- /publishable/lang/pl/theme.php: -------------------------------------------------------------------------------- 1 | 'Stworzone z przez', 5 | 'footer_copyright2' => 'Do stworzenia potrzebny był rum, dużo rumu', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/pt/date.php: -------------------------------------------------------------------------------- 1 | 'Semana Passada', 5 | 'last_year' => 'Ano Passado', 6 | 'this_week' => 'Esta Semana', 7 | 'this_year' => 'Este Ano', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/pt/json.php: -------------------------------------------------------------------------------- 1 | 'JSON Inválido', 5 | 'invalid_message' => 'Submeteu um JSON inválido.', 6 | 'valid' => 'JSON Válido', 7 | 'validation_errors' => 'Erros de validação', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/pt/login.php: -------------------------------------------------------------------------------- 1 | 'A iniciar sessão', 5 | 'signin_below' => 'Iniciar sessão abaixo:', 6 | 'welcome' => 'Bem-vindo ao Voyager. O painel de administração que faltava ao Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/pt/profile.php: -------------------------------------------------------------------------------- 1 | 'Avatar', 5 | 'edit' => 'Editar o meu perfil', 6 | 'edit_user' => 'Editar Utilizador', 7 | 'password' => 'Password', 8 | 'password_hint' => 'Deixar vazio para manter o valor atual', 9 | 'role' => 'Função', 10 | 'user_role' => 'Função do Utilizador', 11 | ]; 12 | -------------------------------------------------------------------------------- /publishable/lang/pt/theme.php: -------------------------------------------------------------------------------- 1 | 'Produzido com por', 5 | 'footer_copyright2' => 'Produzido com rum e mais rum', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/pt_br/date.php: -------------------------------------------------------------------------------- 1 | 'Semana Passada', 5 | 'last_year' => 'Ano Passado', 6 | 'this_week' => 'Esta Semana', 7 | 'this_year' => 'Este Ano', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/pt_br/json.php: -------------------------------------------------------------------------------- 1 | 'JSON Inválido', 5 | 'invalid_message' => 'Submeteu um JSON inválido.', 6 | 'valid' => 'JSON Válido', 7 | 'validation_errors' => 'Erros de validação', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/pt_br/login.php: -------------------------------------------------------------------------------- 1 | 'Iniciando sessão', 5 | 'signin_below' => 'Iniciar sessão abaixo:', 6 | 'welcome' => 'Bem-vindo ao Voyager. O painel de administração que faltava para Laravel', 7 | 'remember_me' => 'Lembrar de mim', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/pt_br/theme.php: -------------------------------------------------------------------------------- 1 | 'Produzido com por', 5 | 'footer_copyright2' => 'Produzido com rum e mais rum', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/ro/date.php: -------------------------------------------------------------------------------- 1 | 'Săptămâna trecută', 5 | 'last_year' => 'Anul trecut', 6 | 'this_week' => 'Săptămâna asta', 7 | 'this_year' => 'În acest an', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/ro/json.php: -------------------------------------------------------------------------------- 1 | 'format JSON invalid', 5 | 'invalid_message' => 'Ați introdus un format JSON invalid', 6 | 'valid' => 'Format JSON corect', 7 | 'validation_errors' => 'Eroare la verificarea datelor', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/ro/login.php: -------------------------------------------------------------------------------- 1 | 'Logare în sistem', 5 | 'signin_below' => 'Conectați-vă mai jos:', 6 | 'welcome' => 'Bine ați venit la Voyager. Panoul de control ce lipsește în Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/ro/profile.php: -------------------------------------------------------------------------------- 1 | 'Poza', 5 | 'edit' => 'Editează profilul', 6 | 'edit_user' => 'Editează utilizatorul', 7 | 'password' => 'Parola', 8 | 'password_hint' => 'Lăsați gol pentru a păstra aceeași', 9 | 'role' => 'Rol', 10 | 'user_role' => 'Rolul utilizatorului', 11 | ]; 12 | -------------------------------------------------------------------------------- /publishable/lang/ro/theme.php: -------------------------------------------------------------------------------- 1 | 'Creat cu ', 5 | 'footer_copyright2' => 'Creat cu rom și chiar mai mult rom :) ', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/ru/date.php: -------------------------------------------------------------------------------- 1 | 'На прошлой неделе', 5 | 'last_year' => 'В прошлом году', 6 | 'this_week' => 'На этой неделе', 7 | 'this_year' => 'В этом году', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/ru/dimmer.php: -------------------------------------------------------------------------------- 1 | 'страница|страницы', 5 | 'page_link_text' => 'Все страницы', 6 | 'page_text' => 'В базе данных :count :string', 7 | 'post' => 'запись|записи', 8 | 'post_link_text' => 'Все записи', 9 | 'post_text' => 'В базе данных :count :string', 10 | 'user' => 'пользователь|пользователей', 11 | 'user_link_text' => 'Все пользователи', 12 | 'user_text' => 'В базе данных :count :string', 13 | ]; 14 | -------------------------------------------------------------------------------- /publishable/lang/ru/json.php: -------------------------------------------------------------------------------- 1 | 'неверный формат JSON', 5 | 'invalid_message' => 'Введен неверный формат JSON', 6 | 'valid' => 'Верный формат JSON', 7 | 'validation_errors' => 'Ошибки при проверке данных', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/ru/login.php: -------------------------------------------------------------------------------- 1 | 'Вход в систему', 5 | 'signin_below' => 'Вход в панель управления', 6 | 'welcome' => 'Панель управления, которой не хватало в Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/ru/theme.php: -------------------------------------------------------------------------------- 1 | 'Сделано с ', 5 | 'footer_copyright2' => 'Сделано под ромом :) ', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/sv/date.php: -------------------------------------------------------------------------------- 1 | 'Förra Veckan', 5 | 'last_year' => 'Förra Året', 6 | 'this_week' => 'Denna Vecka', 7 | 'this_year' => 'Detta År', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/sv/json.php: -------------------------------------------------------------------------------- 1 | 'Ogiltig JSON', 5 | 'invalid_message' => 'Verkar som du har angett ogiltig JSON.', 6 | 'valid' => 'Giltig JSON', 7 | 'validation_errors' => 'Valideringsfel', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/sv/login.php: -------------------------------------------------------------------------------- 1 | 'Logga in', 5 | 'signin_below' => 'Logga in nedan:', 6 | 'welcome' => 'Välkommen till Voyager. Den saknade Admin-panelen för Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/sv/theme.php: -------------------------------------------------------------------------------- 1 | 'Gjord me av', 5 | 'footer_copyright2' => 'Gjord på rom och ännu mer rom', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/tr/date.php: -------------------------------------------------------------------------------- 1 | 'Geçen Hafta', 5 | 'last_year' => 'Geçen Yıl', 6 | 'this_week' => 'Bu Hafta', 7 | 'this_year' => 'Bu Yıl', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/tr/json.php: -------------------------------------------------------------------------------- 1 | 'Geçersiz JSON', 5 | 'invalid_message' => 'Geçersiz bir JSON gibi görünüyor', 6 | 'valid' => 'Geçerli JSON', 7 | 'validation_errors' => 'Doğrulama Hatası', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/tr/login.php: -------------------------------------------------------------------------------- 1 | 'Giriş yap', 5 | 'signin_below' => 'Oturum açın', 6 | 'welcome' => 'Voyager\'a hoş geldiniz , Laravel\'in Aranan Yönetim Paneli', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/tr/theme.php: -------------------------------------------------------------------------------- 1 | ' ile yapıldı', 5 | 'footer_copyright2' => 'Rom ve daha da fazla romla yapılmış', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/uk/date.php: -------------------------------------------------------------------------------- 1 | 'Минулого тижня', 5 | 'last_year' => 'Минулого року', 6 | 'this_week' => 'Цього тижня', 7 | 'this_year' => 'Цього року', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/uk/dimmer.php: -------------------------------------------------------------------------------- 1 | 'сторінка|сторінки', 5 | 'page_link_text' => 'Всі сторінки', 6 | 'page_text' => 'В базі даних :count :string', 7 | 'post' => 'запис|записи', 8 | 'post_link_text' => 'Всі записи', 9 | 'post_text' => 'В базі даних :count :string', 10 | 'user' => 'користувач|користувачів', 11 | 'user_link_text' => 'Всі користувачі', 12 | 'user_text' => 'В базі даних :count :string', 13 | ]; 14 | -------------------------------------------------------------------------------- /publishable/lang/uk/json.php: -------------------------------------------------------------------------------- 1 | 'неправильний формат JSON', 5 | 'invalid_message' => 'Введено неправильний формат JSON', 6 | 'valid' => 'Правильний формат JSON', 7 | 'validation_errors' => 'Помилки при перевірці даних', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/uk/login.php: -------------------------------------------------------------------------------- 1 | 'Вхід в систему', 5 | 'signin_below' => 'Вхід тут:', 6 | 'welcome' => 'Ласкаво просимо до Voyager. Панель управління, якої не вистачало в Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/uk/profile.php: -------------------------------------------------------------------------------- 1 | 'Фото', 5 | 'edit' => 'Налаштування профілю', 6 | 'edit_user' => 'Змінити профіль', 7 | 'password' => 'Пароль', 8 | 'password_hint' => 'Залиште порожнім, щоб не змінювати', 9 | 'role' => 'Роль', 10 | 'user_role' => 'Роль користувача', 11 | ]; 12 | -------------------------------------------------------------------------------- /publishable/lang/uk/theme.php: -------------------------------------------------------------------------------- 1 | 'Зроблено з ', 5 | 'footer_copyright2' => 'Зроблено під ромом :) ', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/vi/date.php: -------------------------------------------------------------------------------- 1 | 'Tuần Trước', 5 | 'last_year' => 'Năm Trước', 6 | 'this_week' => 'Tuần Này', 7 | 'this_year' => 'Năm Nay', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/vi/json.php: -------------------------------------------------------------------------------- 1 | 'JSON không hợp lệ', 5 | 'invalid_message' => 'JSON đã nhập không hợp lệ.', 6 | 'valid' => 'JSON hợp lệ.', 7 | 'validation_errors' => 'Lỗi chứng thực.', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/vi/login.php: -------------------------------------------------------------------------------- 1 | 'Đang đăng nhập', 5 | 'signin_below' => 'Đăng nhập:', 6 | 'welcome' => 'Chào mừng đến với Voyager. Hệ thống quản trị dành cho Laravel', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/vi/theme.php: -------------------------------------------------------------------------------- 1 | 'Tạo bằng cả bởi', 5 | 'footer_copyright2' => 'Tạo ra từ sự tuyệt vời và trên cả tuyệt vời.', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/zh_CN/date.php: -------------------------------------------------------------------------------- 1 | '上周', 5 | 'last_year' => '去年', 6 | 'this_week' => '本周', 7 | 'this_year' => '今年', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/zh_CN/dimmer.php: -------------------------------------------------------------------------------- 1 | '页面|页面', 5 | 'page_link_text' => '查看所有页面', 6 | 'page_text' => '您有 :count :string 在数据库中。点击下面的按钮查看所有页面。', 7 | 'post' => '文章|文章', 8 | 'post_link_text' => '查看所有的帖子', 9 | 'post_text' => '您有 :count :string 在数据库中。点击下面的按钮查看所有文章。', 10 | 'user' => '用户|用户', 11 | 'user_link_text' => '查看所有用户', 12 | 'user_text' => '您有 :count :string 在数据库中。点击下面的按钮查看所有用户。', 13 | ]; 14 | -------------------------------------------------------------------------------- /publishable/lang/zh_CN/error.php: -------------------------------------------------------------------------------- 1 | '我们刚刚为您创建了缺失的软连接。', 5 | 'symlink_created_title' => '丢失的存储软连接已被重新创建', 6 | 'symlink_failed_text' => '我们未能为您的应用程序生成缺失的软连接,似乎您的主机提供商不支持它。', 7 | 'symlink_failed_title' => '无法创建丢失的存储软连接', 8 | 'symlink_missing_button' => '修复', 9 | 'symlink_missing_text' => '我们找不到一个存储软连接,这可能会导致从浏览器加载媒体文件的问题。', 10 | 'symlink_missing_title' => '缺失的存储软连接', 11 | ]; 12 | -------------------------------------------------------------------------------- /publishable/lang/zh_CN/json.php: -------------------------------------------------------------------------------- 1 | 'JSON 无效', 5 | 'invalid_message' => '看起来您引入的是一个无效的 JSON', 6 | 'valid' => 'JSON 有效', 7 | 'validation_errors' => '验证错误', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/zh_CN/login.php: -------------------------------------------------------------------------------- 1 | '正在登录', 5 | 'signin_below' => '在下方登录:', 6 | 'welcome' => '欢迎使用 Voyager - 不可错过的 Laravel 后台管理框架', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/zh_CN/profile.php: -------------------------------------------------------------------------------- 1 | '头像', 5 | 'edit' => '更改个人资料', 6 | 'edit_user' => '编辑用户', 7 | 'password' => '密码', 8 | 'password_hint' => '留空为不修改密码', 9 | 'role' => '权限', 10 | 'roles' => '角色', 11 | 'role_default' => '默认角色', 12 | 'roles_additional' => '其他角色', 13 | 'user_role' => '用户权限', 14 | ]; 15 | -------------------------------------------------------------------------------- /publishable/lang/zh_CN/theme.php: -------------------------------------------------------------------------------- 1 | 'Made with by', 5 | 'footer_copyright2' => 'Made with rum and even more rum', 6 | ]; 7 | -------------------------------------------------------------------------------- /publishable/lang/zh_TW/date.php: -------------------------------------------------------------------------------- 1 | '上週', 5 | 'last_year' => '去年', 6 | 'this_week' => '本週', 7 | 'this_year' => '今年', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/zh_TW/dimmer.php: -------------------------------------------------------------------------------- 1 | '頁面|頁面', 5 | 'page_link_text' => '查看所有頁面', 6 | 'page_text' => '您有 :count :string 在資料庫中。點擊下面的按鈕查看所有頁面。', 7 | 'post' => '文章|文章', 8 | 'post_link_text' => '查看所有的帖子', 9 | 'post_text' => '您有 :count :string 在資料庫中。點擊下面的按鈕查看所有文章。', 10 | 'user' => '用戶|用戶', 11 | 'user_link_text' => '查看所有用戶', 12 | 'user_text' => '您有 :count :string 在資料庫中。點擊下面的按鈕查看所有用戶。', 13 | ]; 14 | -------------------------------------------------------------------------------- /publishable/lang/zh_TW/error.php: -------------------------------------------------------------------------------- 1 | '我們剛剛為您建立了缺失的軟連接。', 5 | 'symlink_created_title' => '丟失的存儲軟連接已被重新建立', 6 | 'symlink_failed_text' => '我們未能為您的應用程序生成缺失的軟連接,似乎您的主機提供商不支持它。', 7 | 'symlink_failed_title' => '無法建立丟失的存儲軟連接', 8 | 'symlink_missing_button' => '修復', 9 | 'symlink_missing_text' => '我們找不到一個存儲軟連接,這可能會導致從瀏覽器加載媒體文件的問題。', 10 | 'symlink_missing_title' => '缺失的存儲軟連接', 11 | ]; 12 | -------------------------------------------------------------------------------- /publishable/lang/zh_TW/json.php: -------------------------------------------------------------------------------- 1 | 'JSON 無效', 5 | 'invalid_message' => '看起來您引入的是一個無效的 JSON', 6 | 'valid' => 'JSON 有效', 7 | 'validation_errors' => '驗證錯誤', 8 | ]; 9 | -------------------------------------------------------------------------------- /publishable/lang/zh_TW/login.php: -------------------------------------------------------------------------------- 1 | '正在登入', 5 | 'signin_below' => '在下方登入:', 6 | 'welcome' => '歡迎使用 Voyager - 不可錯過的 Laravel 後台管理框架', 7 | ]; 8 | -------------------------------------------------------------------------------- /publishable/lang/zh_TW/profile.php: -------------------------------------------------------------------------------- 1 | '頭像', 5 | 'edit' => '更改個人資料', 6 | 'edit_user' => '編輯用戶', 7 | 'password' => '密碼', 8 | 'password_hint' => '留空為不修改密碼', 9 | 'role' => '角色', 10 | 'roles' => '角色', 11 | 'role_default' => '預設角色', 12 | 'roles_additional' => '附加角色', 13 | 'user_role' => '用戶角色', 14 | ]; 15 | -------------------------------------------------------------------------------- /publishable/lang/zh_TW/theme.php: -------------------------------------------------------------------------------- 1 | '用 製成,by', 5 | 'footer_copyright2' => '用很多很多的朗姆酒製成', 6 | ]; 7 | -------------------------------------------------------------------------------- /resources/assets/js/skins/voyager/fonts/readme.md: -------------------------------------------------------------------------------- 1 | Icons are generated and provided by the http://icomoon.io service. 2 | -------------------------------------------------------------------------------- /resources/assets/js/skins/voyager/fonts/tinymce-small.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/assets/js/skins/voyager/fonts/tinymce-small.eot -------------------------------------------------------------------------------- /resources/assets/js/skins/voyager/fonts/tinymce-small.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/assets/js/skins/voyager/fonts/tinymce-small.ttf -------------------------------------------------------------------------------- /resources/assets/js/skins/voyager/fonts/tinymce-small.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/assets/js/skins/voyager/fonts/tinymce-small.woff -------------------------------------------------------------------------------- /resources/assets/js/skins/voyager/fonts/tinymce.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/assets/js/skins/voyager/fonts/tinymce.eot -------------------------------------------------------------------------------- /resources/assets/js/skins/voyager/fonts/tinymce.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/assets/js/skins/voyager/fonts/tinymce.ttf -------------------------------------------------------------------------------- /resources/assets/js/skins/voyager/fonts/tinymce.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/assets/js/skins/voyager/fonts/tinymce.woff -------------------------------------------------------------------------------- /resources/assets/js/skins/voyager/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/assets/js/skins/voyager/img/anchor.gif -------------------------------------------------------------------------------- /resources/assets/js/skins/voyager/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/assets/js/skins/voyager/img/loader.gif -------------------------------------------------------------------------------- /resources/assets/js/skins/voyager/img/object.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/assets/js/skins/voyager/img/object.gif -------------------------------------------------------------------------------- /resources/assets/js/skins/voyager/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/voyager/7e7e0f4f0e115d2d9e0481a86153a1ceff194c00/resources/assets/js/skins/voyager/img/trans.gif -------------------------------------------------------------------------------- /resources/assets/js/voyager_tinymce.js: -------------------------------------------------------------------------------- 1 | // Theme 2 | import 'tinymce/themes/silver/theme'; 3 | 4 | // Plugins 5 | import 'tinymce/plugins/link'; 6 | import 'tinymce/plugins/image'; 7 | import 'tinymce/plugins/code'; 8 | import 'tinymce/plugins/table'; 9 | import 'tinymce/plugins/lists'; 10 | 11 | $(document).ready(function(){ 12 | 13 | $.ajaxSetup({ 14 | headers: { 15 | 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') 16 | } 17 | }); 18 | }); 19 | -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | $icon-font-path: "voyager-assets?path=fonts/bootstrap/"; 2 | -------------------------------------------------------------------------------- /resources/views/alerts.blade.php: -------------------------------------------------------------------------------- 1 |
2 | @foreach ($alerts as $alert) 3 |
4 | @foreach($alert->components as $component) 5 | render(); ?> 6 | @endforeach 7 |
8 | @endforeach 9 |
10 | -------------------------------------------------------------------------------- /resources/views/dimmer.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | @if (isset($icon))@endif 5 |

{!! $title !!}

6 |

{!! $text !!}

7 | {!! $button['text'] !!} 8 |
9 |
10 | -------------------------------------------------------------------------------- /resources/views/formfields/code_editor.blade.php: -------------------------------------------------------------------------------- 1 |
{{ old($row->field, $dataTypeContent->{$row->field} ?? $options->default ?? '') }}
2 | 3 | -------------------------------------------------------------------------------- /resources/views/formfields/color.blade.php: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /resources/views/formfields/date.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /resources/views/formfields/hidden.blade.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /resources/views/formfields/markdown_editor.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/formfields/password.blade.php: -------------------------------------------------------------------------------- 1 | @if(isset($dataTypeContent->{$row->field})) 2 |
3 | {{ __('voyager::form.field_password_keep') }} 4 | @endif 5 | required == 1 && !isset($dataTypeContent->{$row->field})) required @endif 7 | class="form-control" 8 | name="{{ $row->field }}" 9 | value=""> 10 | -------------------------------------------------------------------------------- /resources/views/formfields/text.blade.php: -------------------------------------------------------------------------------- 1 | required == 1) required @endif type="text" class="form-control" name="{{ $row->field }}" 2 | placeholder="{{ old($row->field, $options->placeholder ?? $row->getTranslatedAttribute('display_name')) }}" 3 | {!! isBreadSlugAutoGenerator($options) !!} 4 | value="{{ old($row->field, $dataTypeContent->{$row->field} ?? $options->default ?? '') }}"> 5 | -------------------------------------------------------------------------------- /resources/views/formfields/text_area.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/formfields/time.blade.php: -------------------------------------------------------------------------------- 1 | required == 1) required @endif type="time" data-name="{{ $row->getTranslatedAttribute('display_name') }}" class="form-control" name="{{ $row->field }}" 2 | placeholder="{{ old($row->field, $options->placeholder ?? $row->getTranslatedAttribute('display_name')) }}" 3 | {!! isBreadSlugAutoGenerator($options) !!} 4 | value="{{ old($row->field, $dataTypeContent->{$row->field} ?? $options->default ?? '') }}"> 5 | -------------------------------------------------------------------------------- /resources/views/formfields/timestamp.blade.php: -------------------------------------------------------------------------------- 1 | required == 1) required @endif type="datetime" class="form-control datepicker" name="{{ $row->field }}" 2 | value="@if(isset($dataTypeContent->{$row->field})){{ \Carbon\Carbon::parse(old($row->field, $dataTypeContent->{$row->field}))->format('m/d/Y g:i A') }}@else{{old($row->field)}}@endif"> 3 | -------------------------------------------------------------------------------- /resources/views/menus/partial/notice.blade.php: -------------------------------------------------------------------------------- 1 | @if(config('voyager.show_dev_tips')) 2 |
3 |
4 | {{ __('voyager::generic.how_to_use') }}: 5 |

{{ trans_choice('voyager::menu_builder.usage_hint', !empty($menu) ? 0 : 1) }} menu('{{ !empty($menu) ? $menu->name : 'name' }}')

6 |
7 |
8 | @endif 9 | -------------------------------------------------------------------------------- /resources/views/multilingual/input-hidden-bread-browse.blade.php: -------------------------------------------------------------------------------- 1 | @if (is_field_translatable($data, $row)) 2 | 7 | @endif 8 | -------------------------------------------------------------------------------- /resources/views/multilingual/input-hidden-bread-read.blade.php: -------------------------------------------------------------------------------- 1 | @if (is_field_translatable($dataTypeContent, $row)) 2 | 7 | @endif 8 | -------------------------------------------------------------------------------- /resources/views/multilingual/input-hidden.blade.php: -------------------------------------------------------------------------------- 1 | @if ($isModelTranslatable) 2 | 7 | @endif 8 | -------------------------------------------------------------------------------- /resources/views/partials/coordinates-static-image.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Actions/ActionInterface.php: -------------------------------------------------------------------------------- 1 | text = $text; 12 | } 13 | 14 | public function render() 15 | { 16 | return "

{$this->text}

"; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/Alert/Components/TitleComponent.php: -------------------------------------------------------------------------------- 1 | title = $title; 12 | } 13 | 14 | public function render() 15 | { 16 | return "{$this->title}"; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/Contracts/User.php: -------------------------------------------------------------------------------- 1 | forget([ 12 | 'decimal', 13 | 'double', 14 | ]); 15 | 16 | return $typeMapping->unique(); 17 | } 18 | 19 | public static function registerCustomTypeOptions() 20 | { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Database/Types/Common/CharType.php: -------------------------------------------------------------------------------- 1 | collection = $collection; 16 | 17 | // @deprecate 18 | // 19 | event('voyager.alerts.collecting', $collection); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Events/BreadAdded.php: -------------------------------------------------------------------------------- 1 | dataType = $dataType; 19 | 20 | $this->data = $data; 21 | 22 | event(new BreadChanged($dataType, $data, 'Added')); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Events/BreadDeleted.php: -------------------------------------------------------------------------------- 1 | dataType = $dataType; 19 | 20 | $this->data = $data; 21 | 22 | event(new BreadChanged($dataType, $data, 'Deleted')); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Events/BreadImagesDeleted.php: -------------------------------------------------------------------------------- 1 | data = $data; 18 | 19 | $this->images = $images; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Events/BreadUpdated.php: -------------------------------------------------------------------------------- 1 | dataType = $dataType; 19 | 20 | $this->data = $data; 21 | 22 | event(new BreadChanged($dataType, $data, 'Updated')); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Events/FileDeleted.php: -------------------------------------------------------------------------------- 1 | path = $path; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/Events/FormFieldsRegistered.php: -------------------------------------------------------------------------------- 1 | fields = $fields; 16 | 17 | // @deprecate 18 | // 19 | event('voyager.form-fields.registered', $fields); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Events/MediaFileAdded.php: -------------------------------------------------------------------------------- 1 | path = $path; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Events/MenuDisplay.php: -------------------------------------------------------------------------------- 1 | menu = $menu; 17 | 18 | // @deprecate 19 | // 20 | event('voyager.menu.display', $menu); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Events/Routing.php: -------------------------------------------------------------------------------- 1 | router = app('router'); 16 | 17 | // @deprecate 18 | // 19 | event('voyager.routing', $this->router); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Events/RoutingAdmin.php: -------------------------------------------------------------------------------- 1 | router = app('router'); 16 | 17 | // @deprecate 18 | // 19 | event('voyager.admin.routing', $this->router); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Events/RoutingAdminAfter.php: -------------------------------------------------------------------------------- 1 | router = app('router'); 16 | 17 | // @deprecate 18 | // 19 | event('voyager.admin.routing.after', $this->router); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Events/RoutingAfter.php: -------------------------------------------------------------------------------- 1 | router = app('router'); 16 | 17 | // @deprecate 18 | // 19 | event('voyager.routing.after', $this->router); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Events/SettingUpdated.php: -------------------------------------------------------------------------------- 1 | setting = $setting; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/Events/TableAdded.php: -------------------------------------------------------------------------------- 1 | table = $table; 17 | 18 | event(new TableChanged($table->name, 'Added')); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Events/TableChanged.php: -------------------------------------------------------------------------------- 1 | name = $name; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Events/TableDeleted.php: -------------------------------------------------------------------------------- 1 | name = $name; 16 | 17 | event(new TableChanged($name, 'Deleted')); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Events/TableUpdated.php: -------------------------------------------------------------------------------- 1 | name = $name; 16 | 17 | event(new TableChanged($name['name'], 'Updated')); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/FormFields/After/HandlerInterface.php: -------------------------------------------------------------------------------- 1 | request->input($this->row->field) == 'on'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/Http/Controllers/ContentTypes/MultipleCheckbox.php: -------------------------------------------------------------------------------- 1 | request->input($this->row->field, []); 13 | if (true === empty($content)) { 14 | return json_encode([]); 15 | } 16 | 17 | return json_encode($content); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Http/Controllers/ContentTypes/Password.php: -------------------------------------------------------------------------------- 1 | request->input($this->row->field)) ? null : 15 | bcrypt($this->request->input($this->row->field)); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Http/Controllers/ContentTypes/Text.php: -------------------------------------------------------------------------------- 1 | request->input($this->row->field); 13 | 14 | if (isset($this->options->null)) { 15 | return $value == $this->options->null ? null : $value; 16 | } 17 | 18 | return $value; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Models/Setting.php: -------------------------------------------------------------------------------- 1 | SettingUpdated::class, 18 | ]; 19 | } 20 | -------------------------------------------------------------------------------- /src/Models/Translation.php: -------------------------------------------------------------------------------- 1 | render(); 13 | } 14 | 15 | return $content; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Traits/Seedable.php: -------------------------------------------------------------------------------- 1 | seedersPath.$class.'.php'; 11 | } 12 | 13 | with(new $class())->run(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Translator/Collection.php: -------------------------------------------------------------------------------- 1 |