├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .php-cs-fixer.dist.php ├── .styleci.yml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── app ├── Console │ ├── Commands │ │ ├── Crud.php │ │ └── Migration.php │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Helpers │ ├── CodeGenerator.php │ ├── LAFormMaker.php │ └── LAHelper.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── Controller.php │ │ ├── HomeController.php │ │ └── LA │ │ │ ├── BackupsController.php │ │ │ ├── BlogCategoriesController.php │ │ │ ├── BlogPostsController.php │ │ │ ├── CustomersController.php │ │ │ ├── DashboardController.php │ │ │ ├── DepartmentsController.php │ │ │ ├── EmployeesController.php │ │ │ ├── LAConfigController.php │ │ │ ├── LALogsController.php │ │ │ ├── LAMenuController.php │ │ │ ├── LAModuleController.php │ │ │ ├── LAModuleFieldController.php │ │ │ ├── PermissionsController.php │ │ │ ├── RolesController.php │ │ │ ├── SearchController.php │ │ │ ├── UploadsController.php │ │ │ └── UsersController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Listeners │ ├── LogSuccessfulLogin.php │ └── LogSuccessfulLogout.php ├── Models │ ├── Backup.php │ ├── BlogCategory.php │ ├── BlogPost.php │ ├── Customer.php │ ├── Department.php │ ├── Employee.php │ ├── LAConfig.php │ ├── LALog.php │ ├── LAMenu.php │ ├── LAModule.php │ ├── LAModuleField.php │ ├── LAModuleFieldType.php │ ├── Permission.php │ ├── Role.php │ ├── Upload.php │ └── User.php ├── Observers │ ├── BackupObserver.php │ ├── BlogCategoryObserver.php │ ├── BlogPostObserver.php │ ├── CustomerObserver.php │ ├── DepartmentObserver.php │ ├── EmployeeObserver.php │ ├── LALogObserver.php │ └── UploadObserver.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── LAProvider.php │ └── RouteServiceProvider.php └── Stubs │ ├── config_lalogs.stub │ ├── controller.stub │ ├── language.stub │ ├── migration.stub │ ├── migration_removal.stub │ ├── model.stub │ ├── observer.stub │ ├── observer_boot.stub │ ├── routes.stub │ └── views │ ├── edit.blade.stub │ ├── index.blade.stub │ └── show.blade.stub ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── datatables.php ├── filesystems.php ├── hashing.php ├── laraadmin.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_05_26_050000_create_la_modules_table.php │ ├── 2014_05_26_055000_create_la_module_field_types_table.php │ ├── 2014_05_26_060000_create_la_module_fields_table.php │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2014_12_01_000000_create_uploads_table.php │ ├── 2016_05_26_064006_create_departments_table.php │ ├── 2016_05_26_064007_create_employees_table.php │ ├── 2016_05_26_064110_create_customers_table.php │ ├── 2016_05_26_064446_create_roles_table.php │ ├── 2016_07_05_115343_create_role_user_table.php │ ├── 2016_07_07_134058_create_backups_table.php │ ├── 2016_07_07_134058_create_la_menus_table.php │ ├── 2016_07_07_294546_create_role_la_menu_table.php │ ├── 2016_09_10_163337_create_permissions_table.php │ ├── 2016_09_10_163520_create_permission_role_table.php │ ├── 2016_09_22_105958_role_la_module_fields_table.php │ ├── 2016_09_22_110008_role_la_module_table.php │ ├── 2016_10_06_115413_create_la_configs_table.php │ ├── 2017_11_20_063000_create_blog_categories_table.php │ ├── 2017_11_20_063206_create_blog_posts_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ └── 2050_01_01_010000_create_la_logs_table.php └── seeders │ ├── DatabaseSeeder.php │ └── LaraAdminSeeder.php ├── package-lock.json ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── home.css │ └── home.css.map ├── favicon.ico ├── index.php ├── js │ ├── app.js │ └── app.js.map ├── la-assets │ ├── css │ │ ├── LaraAdmin.css │ │ ├── LaraAdmin.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ ├── ionicons.css │ │ ├── ionicons.min.css │ │ └── skins │ │ │ ├── _all-skins.css │ │ │ ├── _all-skins.css.map │ │ │ ├── _all-skins.min.css │ │ │ ├── skin-black-light.css │ │ │ ├── skin-black-light.css.map │ │ │ ├── skin-black-light.min.css │ │ │ ├── skin-black.css │ │ │ ├── skin-black.css.map │ │ │ ├── skin-black.min.css │ │ │ ├── skin-blue-light.css │ │ │ ├── skin-blue-light.css.map │ │ │ ├── skin-blue-light.min.css │ │ │ ├── skin-blue.css │ │ │ ├── skin-blue.css.map │ │ │ ├── skin-blue.min.css │ │ │ ├── skin-green-light.css │ │ │ ├── skin-green-light.css.map │ │ │ ├── skin-green-light.min.css │ │ │ ├── skin-green.css │ │ │ ├── skin-green.css.map │ │ │ ├── skin-green.min.css │ │ │ ├── skin-purple-light.css │ │ │ ├── skin-purple-light.css.map │ │ │ ├── skin-purple-light.min.css │ │ │ ├── skin-purple.css │ │ │ ├── skin-purple.css.map │ │ │ ├── skin-purple.min.css │ │ │ ├── skin-red-light.css │ │ │ ├── skin-red-light.css.map │ │ │ ├── skin-red-light.min.css │ │ │ ├── skin-red.css │ │ │ ├── skin-red.css.map │ │ │ ├── skin-red.min.css │ │ │ ├── skin-yellow-light.css │ │ │ ├── skin-yellow-light.css.map │ │ │ ├── skin-yellow-light.min.css │ │ │ ├── skin-yellow.css │ │ │ ├── skin-yellow.css.map │ │ │ └── skin-yellow.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ ├── img │ │ ├── app-bg.png │ │ ├── arrow1.png │ │ ├── arrow2.png │ │ ├── avatar.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar4.png │ │ ├── avatar5.png │ │ ├── bg-login.jpg │ │ ├── bg_blog.jpg │ │ ├── bg_customers.jpg │ │ ├── bg_employees.jpg │ │ ├── bg_uploads.jpg │ │ ├── boxed-bg.jpg │ │ ├── boxed-bg.png │ │ ├── credit │ │ │ ├── american-express.png │ │ │ ├── cirrus.png │ │ │ ├── mastercard.png │ │ │ ├── mestro.png │ │ │ ├── paypal.png │ │ │ ├── paypal2.png │ │ │ └── visa.png │ │ ├── default-50x50.gif │ │ ├── icons.png │ │ ├── laraadmin-256.png │ │ ├── laraadmin_logo_white.png │ │ ├── mobile.png │ │ ├── post_banner.png │ │ ├── post_banner_large.jpg │ │ ├── user1-128x128.jpg │ │ ├── user2-160x160.jpg │ │ ├── user3-128x128.jpg │ │ ├── user4-128x128.jpg │ │ ├── user5-128x128.jpg │ │ ├── user6-128x128.jpg │ │ ├── user7-128x128.jpg │ │ └── user8-128x128.jpg │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── demo.js │ │ ├── npm.js │ │ └── pages │ │ │ ├── dashboard.js │ │ │ └── dashboard2.js │ └── plugins │ │ ├── SmoothScroll │ │ └── smoothscroll.js │ │ ├── ace │ │ ├── ace.js │ │ ├── ext-beautify.js │ │ ├── ext-elastic_tabstops_lite.js │ │ ├── ext-emmet.js │ │ ├── ext-error_marker.js │ │ ├── ext-keybinding_menu.js │ │ ├── ext-language_tools.js │ │ ├── ext-linking.js │ │ ├── ext-modelist.js │ │ ├── ext-options.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-vim.js │ │ ├── mode-abap.js │ │ ├── mode-abc.js │ │ ├── mode-actionscript.js │ │ ├── mode-ada.js │ │ ├── mode-apache_conf.js │ │ ├── mode-apex.js │ │ ├── mode-applescript.js │ │ ├── mode-asciidoc.js │ │ ├── mode-asl.js │ │ ├── mode-assembly_x86.js │ │ ├── mode-autohotkey.js │ │ ├── mode-batchfile.js │ │ ├── mode-bro.js │ │ ├── mode-c9search.js │ │ ├── mode-c_cpp.js │ │ ├── mode-cirru.js │ │ ├── mode-clojure.js │ │ ├── mode-cobol.js │ │ ├── mode-coffee.js │ │ ├── mode-coldfusion.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-jack.js │ │ ├── mode-jade.js │ │ ├── mode-java.js │ │ ├── mode-javascript.js │ │ ├── mode-json.js │ │ ├── mode-jsoniq.js │ │ ├── mode-jsp.js │ │ ├── mode-jssm.js │ │ ├── mode-jsx.js │ │ ├── mode-julia.js │ │ ├── mode-kotlin.js │ │ ├── mode-latex.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-mel.js │ │ ├── mode-mixal.js │ │ ├── mode-mushcode.js │ │ ├── mode-mysql.js │ │ ├── mode-nix.js │ │ ├── mode-nsis.js │ │ ├── mode-objectivec.js │ │ ├── mode-ocaml.js │ │ ├── mode-pascal.js │ │ ├── mode-perl.js │ │ ├── mode-perl6.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-prolog.js │ │ ├── mode-properties.js │ │ ├── mode-protobuf.js │ │ ├── mode-puppet.js │ │ ├── mode-python.js │ │ ├── mode-r.js │ │ ├── mode-razor.js │ │ ├── mode-rdoc.js │ │ ├── mode-red.js │ │ ├── mode-redshift.js │ │ ├── mode-rhtml.js │ │ ├── mode-rst.js │ │ ├── mode-ruby.js │ │ ├── mode-rust.js │ │ ├── mode-sass.js │ │ ├── mode-scad.js │ │ ├── mode-scala.js │ │ ├── mode-scheme.js │ │ ├── mode-scss.js │ │ ├── mode-sh.js │ │ ├── mode-sjs.js │ │ ├── mode-slim.js │ │ ├── mode-smarty.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 │ │ ├── snippets │ │ │ ├── abap.js │ │ │ ├── abc.js │ │ │ ├── actionscript.js │ │ │ ├── ada.js │ │ │ ├── apache_conf.js │ │ │ ├── apex.js │ │ │ ├── applescript.js │ │ │ ├── asciidoc.js │ │ │ ├── asl.js │ │ │ ├── assembly_x86.js │ │ │ ├── autohotkey.js │ │ │ ├── batchfile.js │ │ │ ├── bro.js │ │ │ ├── c9search.js │ │ │ ├── c_cpp.js │ │ │ ├── cirru.js │ │ │ ├── clojure.js │ │ │ ├── cobol.js │ │ │ ├── coffee.js │ │ │ ├── coldfusion.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 │ │ │ ├── jack.js │ │ │ ├── jade.js │ │ │ ├── java.js │ │ │ ├── javascript.js │ │ │ ├── json.js │ │ │ ├── jsoniq.js │ │ │ ├── jsp.js │ │ │ ├── jssm.js │ │ │ ├── jsx.js │ │ │ ├── julia.js │ │ │ ├── kotlin.js │ │ │ ├── latex.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 │ │ │ ├── mel.js │ │ │ ├── mixal.js │ │ │ ├── mushcode.js │ │ │ ├── mysql.js │ │ │ ├── nix.js │ │ │ ├── nsis.js │ │ │ ├── objectivec.js │ │ │ ├── ocaml.js │ │ │ ├── pascal.js │ │ │ ├── perl.js │ │ │ ├── perl6.js │ │ │ ├── pgsql.js │ │ │ ├── php.js │ │ │ ├── php_laravel_blade.js │ │ │ ├── pig.js │ │ │ ├── plain_text.js │ │ │ ├── powershell.js │ │ │ ├── praat.js │ │ │ ├── prolog.js │ │ │ ├── properties.js │ │ │ ├── protobuf.js │ │ │ ├── puppet.js │ │ │ ├── python.js │ │ │ ├── r.js │ │ │ ├── razor.js │ │ │ ├── rdoc.js │ │ │ ├── red.js │ │ │ ├── redshift.js │ │ │ ├── rhtml.js │ │ │ ├── rst.js │ │ │ ├── ruby.js │ │ │ ├── rust.js │ │ │ ├── sass.js │ │ │ ├── scad.js │ │ │ ├── scala.js │ │ │ ├── scheme.js │ │ │ ├── scss.js │ │ │ ├── sh.js │ │ │ ├── sjs.js │ │ │ ├── slim.js │ │ │ ├── smarty.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 │ │ ├── theme-ambiance.js │ │ ├── theme-chaos.js │ │ ├── theme-chrome.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-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-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-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 │ │ ├── bootstrap-datetimepicker │ │ ├── bootstrap-datetimepicker.js │ │ └── moment.min.js │ │ ├── bootstrap-editable │ │ ├── bootstrap-editable.css │ │ ├── bootstrap-editable.js │ │ ├── bootstrap-editable.min.js │ │ ├── clear.png │ │ └── loading.gif │ │ ├── bootstrap-slider │ │ ├── bootstrap-slider.js │ │ └── slider.css │ │ ├── bootstrap-timepicker │ │ ├── bootstrap-timepicker.css │ │ ├── bootstrap-timepicker.js │ │ ├── bootstrap-timepicker.min.css │ │ └── bootstrap-timepicker.min.js │ │ ├── bootstrap-wysihtml5 │ │ ├── bootstrap3-wysihtml5.all.js │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ ├── bootstrap3-wysihtml5.css │ │ └── bootstrap3-wysihtml5.min.css │ │ ├── chartjs │ │ ├── Chart.js │ │ └── Chart.min.js │ │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── samples │ │ │ ├── css │ │ │ │ └── samples.css │ │ │ ├── img │ │ │ │ ├── github-top.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── header-separator.png │ │ │ │ ├── logo.png │ │ │ │ └── navigation-tip.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── sample.js │ │ │ │ └── sf.js │ │ │ ├── old │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── datafiltering.html │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── tabindex.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ │ └── xhtmlstyle.html │ │ │ └── toolbarconfigurator │ │ │ │ ├── css │ │ │ │ └── fontello.css │ │ │ │ ├── font │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.json │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.svg │ │ │ │ ├── fontello.ttf │ │ │ │ └── fontello.woff │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ ├── toolbarmodifier.js │ │ │ │ └── toolbartextmodifier.js │ │ │ │ └── lib │ │ │ │ └── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── javascript.js │ │ │ │ ├── neo.css │ │ │ │ ├── show-hint.css │ │ │ │ └── show-hint.js │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ └── styles.js │ │ ├── colorpicker │ │ ├── bootstrap-colorpicker.css │ │ ├── bootstrap-colorpicker.js │ │ ├── bootstrap-colorpicker.min.css │ │ ├── bootstrap-colorpicker.min.js │ │ └── img │ │ │ ├── alpha-horizontal.png │ │ │ ├── alpha.png │ │ │ ├── hue-horizontal.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ ├── datatables │ │ ├── css │ │ │ ├── datatables.bootstrap.css │ │ │ └── demo.css │ │ ├── images │ │ │ ├── details_close.png │ │ │ ├── details_open.png │ │ │ ├── favicon.ico │ │ │ ├── loading_bar.gif │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── buttons │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── buttons.bootstrap.css │ │ │ │ ├── buttons.bootstrap.min.css │ │ │ │ ├── buttons.dataTables.css │ │ │ │ ├── buttons.dataTables.min.css │ │ │ │ ├── buttons.foundation.css │ │ │ │ ├── buttons.foundation.min.css │ │ │ │ ├── buttons.jqueryui.css │ │ │ │ ├── buttons.jqueryui.min.css │ │ │ │ ├── common.scss │ │ │ │ └── mixins.scss │ │ │ ├── examples │ │ │ │ ├── api │ │ │ │ │ ├── addRemove.html │ │ │ │ │ ├── enable.html │ │ │ │ │ ├── group.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── text.html │ │ │ │ ├── column_visibility │ │ │ │ │ ├── columnGroups.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── columnsToggle.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── restore.html │ │ │ │ │ ├── simple.html │ │ │ │ │ └── text.html │ │ │ │ ├── flash │ │ │ │ │ ├── copyi18n.html │ │ │ │ │ ├── filename.html │ │ │ │ │ ├── hidden.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pdfMessage.html │ │ │ │ │ ├── pdfPage.html │ │ │ │ │ ├── simple.html │ │ │ │ │ ├── swfPath.html │ │ │ │ │ └── tsv.html │ │ │ │ ├── html5 │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── copyi18n.html │ │ │ │ │ ├── filename.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pdfImage.html │ │ │ │ │ ├── pdfMessage.html │ │ │ │ │ ├── pdfOpen.html │ │ │ │ │ ├── pdfPage.html │ │ │ │ │ ├── simple.html │ │ │ │ │ └── tsv.html │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── className.html │ │ │ │ │ ├── collections.html │ │ │ │ │ ├── custom.html │ │ │ │ │ ├── export.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── keys.html │ │ │ │ │ ├── multiple.html │ │ │ │ │ ├── new.html │ │ │ │ │ ├── plugins.html │ │ │ │ │ └── simple.html │ │ │ │ ├── print │ │ │ │ │ ├── autoPrint.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── customisation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── message.html │ │ │ │ │ ├── select.html │ │ │ │ │ └── simple.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── jqueryui.html │ │ │ ├── js │ │ │ │ ├── buttons.bootstrap.js │ │ │ │ ├── buttons.bootstrap.min.js │ │ │ │ ├── buttons.colVis.js │ │ │ │ ├── buttons.colVis.min.js │ │ │ │ ├── buttons.flash.js │ │ │ │ ├── buttons.flash.min.js │ │ │ │ ├── buttons.foundation.js │ │ │ │ ├── buttons.foundation.min.js │ │ │ │ ├── buttons.html5.js │ │ │ │ ├── buttons.html5.min.js │ │ │ │ ├── buttons.jqueryui.js │ │ │ │ ├── buttons.jqueryui.min.js │ │ │ │ ├── buttons.print.js │ │ │ │ ├── buttons.print.min.js │ │ │ │ ├── dataTables.buttons.js │ │ │ │ └── dataTables.buttons.min.js │ │ │ └── swf │ │ │ │ └── flashExport.swf │ │ │ ├── datatables.bootstrap.js │ │ │ ├── handlebars.js │ │ │ ├── jquery.dataTables.min.js │ │ │ └── jquery.min.js │ │ ├── datepicker │ │ ├── bootstrap-datepicker.js │ │ ├── datepicker3.css │ │ └── locales │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ ├── bootstrap-datepicker.az.js │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ ├── bootstrap-datepicker.da.js │ │ │ ├── bootstrap-datepicker.de.js │ │ │ ├── bootstrap-datepicker.el.js │ │ │ ├── bootstrap-datepicker.es.js │ │ │ ├── bootstrap-datepicker.et.js │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ ├── bootstrap-datepicker.he.js │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ ├── bootstrap-datepicker.id.js │ │ │ ├── bootstrap-datepicker.is.js │ │ │ ├── bootstrap-datepicker.it.js │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ ├── bootstrap-datepicker.no.js │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ ├── bootstrap-datepicker.th.js │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── daterangepicker │ │ ├── daterangepicker.css │ │ ├── daterangepicker.js │ │ ├── moment.js │ │ └── moment.min.js │ │ ├── dropzone │ │ └── dropzone.js │ │ ├── fastclick │ │ ├── fastclick.js │ │ └── fastclick.min.js │ │ ├── flot │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.colorhelpers.min.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.canvas.min.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.categories.min.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.crosshair.min.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.errorbars.min.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.fillbetween.min.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.image.min.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.navigate.min.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.pie.min.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.resize.min.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.selection.min.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.stack.min.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.symbol.min.js │ │ ├── jquery.flot.threshold.js │ │ ├── jquery.flot.threshold.min.js │ │ ├── jquery.flot.time.js │ │ └── jquery.flot.time.min.js │ │ ├── fullcalendar │ │ ├── fullcalendar.css │ │ ├── fullcalendar.js │ │ ├── fullcalendar.min.css │ │ ├── fullcalendar.min.js │ │ └── fullcalendar.print.css │ │ ├── iCheck │ │ ├── all.css │ │ ├── flat │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── flat.css │ │ │ ├── flat.png │ │ │ ├── flat@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── futurico │ │ │ ├── futurico.css │ │ │ ├── futurico.png │ │ │ └── futurico@2x.png │ │ ├── icheck.js │ │ ├── icheck.min.js │ │ ├── line │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── blue.css │ │ │ ├── green.css │ │ │ ├── grey.css │ │ │ ├── line.css │ │ │ ├── line.png │ │ │ ├── line@2x.png │ │ │ ├── orange.css │ │ │ ├── pink.css │ │ │ ├── purple.css │ │ │ ├── red.css │ │ │ └── yellow.css │ │ ├── minimal │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── minimal.css │ │ │ ├── minimal.png │ │ │ ├── minimal@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── polaris │ │ │ ├── polaris.css │ │ │ ├── polaris.png │ │ │ └── polaris@2x.png │ │ └── square │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── square.css │ │ │ ├── square.png │ │ │ ├── square@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── iconpicker │ │ └── fontawesome-iconpicker.js │ │ ├── input-mask │ │ ├── jquery.inputmask.date.extensions.js │ │ ├── jquery.inputmask.extensions.js │ │ ├── jquery.inputmask.js │ │ ├── jquery.inputmask.numeric.extensions.js │ │ ├── jquery.inputmask.phone.extensions.js │ │ ├── jquery.inputmask.regex.extensions.js │ │ └── phone-codes │ │ │ ├── phone-be.json │ │ │ ├── phone-codes.json │ │ │ └── readme.txt │ │ ├── ionslider │ │ ├── img │ │ │ ├── sprite-skin-flat.png │ │ │ └── sprite-skin-nice.png │ │ ├── ion.rangeSlider.css │ │ ├── ion.rangeSlider.min.js │ │ ├── ion.rangeSlider.skinFlat.css │ │ └── ion.rangeSlider.skinNice.css │ │ ├── jQuery │ │ └── jquery-2.2.3.min.js │ │ ├── jQueryUI │ │ ├── jquery-ui.js │ │ └── jquery-ui.min.js │ │ ├── jquery-filetree │ │ ├── images │ │ │ ├── application.png │ │ │ ├── code.png │ │ │ ├── css.png │ │ │ ├── db.png │ │ │ ├── directory-lock.png │ │ │ ├── directory.png │ │ │ ├── doc.png │ │ │ ├── file-lock.png │ │ │ ├── file.png │ │ │ ├── film.png │ │ │ ├── flash.png │ │ │ ├── folder_open.png │ │ │ ├── html.png │ │ │ ├── java.png │ │ │ ├── linux.png │ │ │ ├── music.png │ │ │ ├── pdf.png │ │ │ ├── php.png │ │ │ ├── picture.png │ │ │ ├── ppt.png │ │ │ ├── psd.png │ │ │ ├── ruby.png │ │ │ ├── script.png │ │ │ ├── spinner.gif │ │ │ ├── txt.png │ │ │ ├── xls.png │ │ │ └── zip.png │ │ ├── jQueryFileTree.min.css │ │ └── jQueryFileTree.min.js │ │ ├── jquery-validation │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ │ ├── jvectormap │ │ ├── jquery-jvectormap-1.2.2.css │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ ├── jquery-jvectormap-usa-en.js │ │ └── jquery-jvectormap-world-mill-en.js │ │ ├── knob │ │ └── jquery.knob.js │ │ ├── locationpicker │ │ ├── locationpicker.jquery.js │ │ ├── locationpicker.jquery.min.js │ │ └── locationpicker.jquery.min.js.map.txt │ │ ├── masonry │ │ ├── imagesloaded.pkgd.min.js │ │ └── masonry.pkgd.min.js │ │ ├── moment │ │ └── moment.min.js │ │ ├── morris │ │ ├── morris.css │ │ ├── morris.js │ │ └── morris.min.js │ │ ├── nestable │ │ └── jquery.nestable.js │ │ ├── pace │ │ ├── pace.css │ │ ├── pace.js │ │ ├── pace.min.css │ │ └── pace.min.js │ │ ├── pjax │ │ └── jquery.pjax.js │ │ ├── raphael │ │ └── raphael-min.js │ │ ├── select2 │ │ ├── i18n │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.css │ │ ├── select2.full.js │ │ ├── select2.full.min.js │ │ ├── select2.js │ │ ├── select2.min.css │ │ └── select2.min.js │ │ ├── slimScroll │ │ ├── jquery.slimscroll.js │ │ └── jquery.slimscroll.min.js │ │ ├── socket.io │ │ ├── socket.io.js │ │ ├── socket.io.js.map │ │ ├── socket.io.min.js │ │ ├── socket.io.slim.js │ │ ├── socket.io.slim.js.map │ │ └── socket.io.slim.min.js │ │ ├── sparkline │ │ ├── jquery.sparkline.js │ │ └── jquery.sparkline.min.js │ │ ├── stickytabs │ │ └── jquery.stickytabs.js │ │ ├── summernote │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ └── summernote.woff │ │ ├── lang │ │ │ ├── summernote-ar-AR.js │ │ │ ├── summernote-bg-BG.js │ │ │ ├── summernote-ca-ES.js │ │ │ ├── summernote-cs-CZ.js │ │ │ ├── summernote-da-DK.js │ │ │ ├── summernote-de-DE.js │ │ │ ├── summernote-es-ES.js │ │ │ ├── summernote-es-EU.js │ │ │ ├── summernote-fa-IR.js │ │ │ ├── summernote-fi-FI.js │ │ │ ├── summernote-fr-FR.js │ │ │ ├── summernote-gl-ES.js │ │ │ ├── summernote-he-IL.js │ │ │ ├── summernote-hr-HR.js │ │ │ ├── summernote-hu-HU.js │ │ │ ├── summernote-id-ID.js │ │ │ ├── summernote-it-IT.js │ │ │ ├── summernote-ja-JP.js │ │ │ ├── summernote-ko-KR.js │ │ │ ├── summernote-lt-LT.js │ │ │ ├── summernote-lt-LV.js │ │ │ ├── summernote-nb-NO.js │ │ │ ├── summernote-nl-NL.js │ │ │ ├── summernote-pl-PL.js │ │ │ ├── summernote-pt-BR.js │ │ │ ├── summernote-pt-PT.js │ │ │ ├── summernote-ro-RO.js │ │ │ ├── summernote-ru-RU.js │ │ │ ├── summernote-sk-SK.js │ │ │ ├── summernote-sl-SI.js │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ ├── summernote-sr-RS.js │ │ │ ├── summernote-sv-SE.js │ │ │ ├── summernote-th-TH.js │ │ │ ├── summernote-tr-TR.js │ │ │ ├── summernote-uk-UA.js │ │ │ ├── summernote-vi-VN.js │ │ │ ├── summernote-zh-CN.js │ │ │ └── summernote-zh-TW.js │ │ ├── plugin │ │ │ ├── databasic │ │ │ │ ├── summernote-ext-databasic.css │ │ │ │ └── summernote-ext-databasic.js │ │ │ ├── hello │ │ │ │ └── summernote-ext-hello.js │ │ │ └── specialchars │ │ │ │ └── summernote-ext-specialchars.js │ │ ├── summernote.css │ │ ├── summernote.js │ │ └── summernote.min.js │ │ ├── timepicker │ │ ├── bootstrap-timepicker.css │ │ ├── bootstrap-timepicker.js │ │ ├── bootstrap-timepicker.min.css │ │ └── bootstrap-timepicker.min.js │ │ ├── typeahead │ │ ├── typeahead.bundle.js │ │ └── typeahead.bundle.min.js │ │ └── vue.js │ │ ├── vue-resource.min.js │ │ ├── vue.js │ │ └── vue.min.js ├── pages │ ├── UI │ │ ├── buttons.html │ │ ├── general.html │ │ ├── icons.html │ │ ├── modals.html │ │ ├── sliders.html │ │ └── timeline.html │ ├── calendar.html │ ├── charts │ │ ├── chartjs.html │ │ ├── flot.html │ │ ├── inline.html │ │ └── morris.html │ ├── dashboard.html │ ├── examples │ │ ├── 404.html │ │ ├── 500.html │ │ ├── blank.html │ │ ├── invoice-print.html │ │ ├── invoice.html │ │ ├── lockscreen.html │ │ ├── login.html │ │ ├── pace.html │ │ ├── profile.html │ │ └── register.html │ ├── forms │ │ ├── advanced.html │ │ ├── editors.html │ │ └── general.html │ ├── index2.html │ ├── layout │ │ ├── boxed.html │ │ ├── collapsed-sidebar.html │ │ ├── fixed.html │ │ └── top-nav.html │ ├── mailbox │ │ ├── compose.html │ │ ├── mailbox.html │ │ └── read-mail.html │ ├── starter.html │ ├── tables │ │ ├── data.html │ │ └── simple.html │ └── widgets.html └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ ├── bootstrap.js │ └── laraadmin │ │ ├── app.js │ │ └── base.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── common.php │ │ ├── dashboard.php │ │ ├── home.php │ │ ├── la_backup.php │ │ ├── la_blog_category.php │ │ ├── la_blog_post.php │ │ ├── la_configure.php │ │ ├── la_customer.php │ │ ├── la_department.php │ │ ├── la_editor.php │ │ ├── la_employee.php │ │ ├── la_la_log.php │ │ ├── la_lalog.php │ │ ├── la_menu.php │ │ ├── la_message.php │ │ ├── la_organization.php │ │ ├── la_permission.php │ │ ├── la_role.php │ │ ├── la_upload.php │ │ ├── la_user.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── less │ ├── .csslintrc │ ├── LaraAdmin.less │ ├── bootstrap │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── reset-text.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ ├── home.less │ └── laraadmin │ │ ├── 404_500_errors.less │ │ ├── alerts.less │ │ ├── bootstrap-social.less │ │ ├── boxes.less │ │ ├── buttons.less │ │ ├── callout.less │ │ ├── carousel.less │ │ ├── control-sidebar.less │ │ ├── core.less │ │ ├── direct-chat.less │ │ ├── dropdown.less │ │ ├── forms.less │ │ ├── fullcalendar.less │ │ ├── header.less │ │ ├── iconpicker.less │ │ ├── info-box.less │ │ ├── invoice.less │ │ ├── labels.less │ │ ├── laeditor.less │ │ ├── lockscreen.less │ │ ├── login_and_register.less │ │ ├── mailbox.less │ │ ├── messages.less │ │ ├── miscellaneous.less │ │ ├── mixins.less │ │ ├── modal.less │ │ ├── navs.less │ │ ├── nestable.less │ │ ├── notifications.less │ │ ├── print.less │ │ ├── products.less │ │ ├── profile.less │ │ ├── profile2.less │ │ ├── progress-bars.less │ │ ├── search.less │ │ ├── select2.less │ │ ├── sidebar-mini.less │ │ ├── sidebar.less │ │ ├── skins │ │ ├── _all-skins.less │ │ ├── skin-black-light.less │ │ ├── skin-black.less │ │ ├── skin-blue-light.less │ │ ├── skin-blue.less │ │ ├── skin-green-light.less │ │ ├── skin-green.less │ │ ├── skin-purple-light.less │ │ ├── skin-purple.less │ │ ├── skin-red-light.less │ │ ├── skin-red.less │ │ ├── skin-yellow-light.less │ │ └── skin-yellow.less │ │ ├── small-box.less │ │ ├── social-widgets.less │ │ ├── table.less │ │ ├── timeline.less │ │ ├── uploads.less │ │ ├── users-list.less │ │ └── variables.less ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ ├── register_customer.blade.php │ └── verify.blade.php │ ├── blog │ ├── blog.blade.php │ ├── category.blade.php │ └── post.blade.php │ ├── emails │ ├── send_inquiry.blade.php │ ├── send_login_cred.blade.php │ └── send_login_cred_change.blade.php │ ├── errors │ ├── 401.blade.php │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 429.blade.php │ ├── 500.blade.php │ ├── 503.blade.php │ ├── error.blade.php │ ├── illustrated-layout.blade.php │ ├── layout.blade.php │ └── minimal.blade.php │ ├── home.blade.php │ └── la │ ├── backups │ └── index.blade.php │ ├── blog_categories │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── blog_posts │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── customers │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── dashboard.blade.php │ ├── departments │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── editor │ └── install.blade.php │ ├── employees │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── errors │ ├── 404.blade.php │ ├── 500.blade.php │ └── 503.blade.php │ ├── la_configs │ ├── edit.blade.php │ └── index.blade.php │ ├── la_logs │ └── index.blade.php │ ├── la_menus │ ├── index.blade.php │ └── show.blade.php │ ├── la_modules │ ├── edit.blade.php │ ├── field_edit.blade.php │ ├── index.blade.php │ ├── quick_add_form.blade.php │ └── show.blade.php │ ├── layouts │ ├── app.blade.php │ ├── auth.blade.php │ └── partials │ │ ├── contentheader.blade.php │ │ ├── controlsidebar.blade.php │ │ ├── file_manager.blade.php │ │ ├── footer.blade.php │ │ ├── htmlheader.blade.php │ │ ├── mainheader.blade.php │ │ ├── notifs.blade.php │ │ ├── quick_add.blade.php │ │ ├── scripts.blade.php │ │ ├── scripts_auth.blade.php │ │ ├── sidebar.blade.php │ │ └── top_nav_menu.blade.php │ ├── permissions │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── roles │ ├── edit.blade.php │ ├── hierarchy.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── uploads │ └── index.blade.php │ ├── users │ └── index.blade.php │ └── vendor │ └── .gitkeep ├── routes ├── admin.php ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── logs │ └── .gitignore └── uploads │ ├── .gitkeep │ └── Hello-World-by-Tim-Bogdanov.jpg ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── LABasicTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 4 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [docker-compose.yml] 18 | indent_size = 4 19 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.blade.php diff=html 4 | *.css diff=css 5 | *.html diff=html 6 | *.md diff=markdown 7 | *.php diff=php 8 | 9 | /.github export-ignore 10 | CHANGELOG.md export-ignore 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .env 3 | .idea/ 4 | .php-cs-fixer.cache 5 | .phpunit.cache 6 | .phpunit.result.cache 7 | Homestead.json 8 | Homestead.yaml 9 | node_modules/ 10 | npm-debug.log 11 | storage/*.key 12 | storage/thumbnails 13 | vendor/ 14 | yarn-error.log 15 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | version: 8 4 | disabled: 5 | - no_unused_imports 6 | finder: 7 | not-name: 8 | - index.php 9 | - server.php 10 | js: 11 | finder: 12 | not-name: 13 | - webpack.mix.js 14 | css: true 15 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | 'current_password', 16 | 'password', 17 | 'password_confirmation', 18 | ]; 19 | } 20 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | public function hosts() 15 | { 16 | return [ 17 | $this->allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /app/Observers/BackupObserver.php: -------------------------------------------------------------------------------- 1 | id); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/Observers/CustomerObserver.php: -------------------------------------------------------------------------------- 1 | id); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/Observers/EmployeeObserver.php: -------------------------------------------------------------------------------- 1 | id); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/Observers/UploadObserver.php: -------------------------------------------------------------------------------- 1 | id); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $policies = [ 15 | // 'App\Models\Model' => 'App\Policies\ModelPolicy', 16 | ]; 17 | 18 | /** 19 | * Register any authentication / authorization services. 20 | * 21 | * @return void 22 | */ 23 | public function boot() 24 | { 25 | $this->registerPolicies(); 26 | 27 | // 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | [ 3 | '__singular_var_upper___CREATED' => ["name" => "__singular_cap_var__ Created", "is_notif" => "false", "code" => "__singular_var_upper___CREATED", "module" => "__module_name__"], 4 | '__singular_var_upper___UPDATED' => ["name" => "__singular_cap_var__ Updated", "is_notif" => "false", "code" => "__singular_var_upper___UPDATED", "module" => "__module_name__"], 5 | '__singular_var_upper___DELETED' => ["name" => "__singular_cap_var__ Deleted", "is_notif" => "false", "code" => "__singular_var_upper___DELETED", "module" => "__module_name__"], 6 | ], 7 | 8 | // More LALogs Configurations - Do not edit this line -------------------------------------------------------------------------------- /app/Stubs/observer_boot.stub: -------------------------------------------------------------------------------- 1 | \App\Models\__model_class_name__::observe(\App\Observers\__model_class_name__Observer::class); 2 | // End of Boot - Please do not edit this line. -------------------------------------------------------------------------------- /app/Stubs/routes.stub: -------------------------------------------------------------------------------- 1 | /* ================== __module_name__ ================== */ 2 | Route::resource(config('laraadmin.adminRoute') . '/__db_table_name__', '__controller_class_name__'); 3 | Route::get(config('laraadmin.adminRoute') . '/__singular_var___dt_ajax', '__controller_class_name__@dtajax'); 4 | }); 5 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call(LaraAdminSeeder::class); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "npm run development", 5 | "development": "mix", 6 | "watch": "mix watch", 7 | "watch-poll": "mix watch -- --watch-options-poll=1000", 8 | "hot": "mix watch --hot", 9 | "prod": "npm run production", 10 | "production": "mix --production" 11 | }, 12 | "devDependencies": { 13 | "axios": "^0.21", 14 | "laravel-mix": "^6.0.6", 15 | "lodash": "^4.17.19", 16 | "postcss": "^8.1.14" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Handle Authorization Header 9 | RewriteCond %{HTTP:Authorization} . 10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 | 12 | # Redirect Trailing Slashes If Not A Folder... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_URI} (.+)/$ 15 | RewriteRule ^ %1 [L,R=301] 16 | 17 | # Send Requests To Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/favicon.ico -------------------------------------------------------------------------------- /public/la-assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/la-assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/la-assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/la-assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/la-assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/la-assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/la-assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/la-assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/la-assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/la-assets/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/fonts/ionicons.eot -------------------------------------------------------------------------------- /public/la-assets/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/fonts/ionicons.ttf -------------------------------------------------------------------------------- /public/la-assets/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/fonts/ionicons.woff -------------------------------------------------------------------------------- /public/la-assets/img/app-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/app-bg.png -------------------------------------------------------------------------------- /public/la-assets/img/arrow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/arrow1.png -------------------------------------------------------------------------------- /public/la-assets/img/arrow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/arrow2.png -------------------------------------------------------------------------------- /public/la-assets/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/avatar.png -------------------------------------------------------------------------------- /public/la-assets/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/avatar2.png -------------------------------------------------------------------------------- /public/la-assets/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/avatar3.png -------------------------------------------------------------------------------- /public/la-assets/img/avatar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/avatar4.png -------------------------------------------------------------------------------- /public/la-assets/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/avatar5.png -------------------------------------------------------------------------------- /public/la-assets/img/bg-login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/bg-login.jpg -------------------------------------------------------------------------------- /public/la-assets/img/bg_blog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/bg_blog.jpg -------------------------------------------------------------------------------- /public/la-assets/img/bg_customers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/bg_customers.jpg -------------------------------------------------------------------------------- /public/la-assets/img/bg_employees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/bg_employees.jpg -------------------------------------------------------------------------------- /public/la-assets/img/bg_uploads.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/bg_uploads.jpg -------------------------------------------------------------------------------- /public/la-assets/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/boxed-bg.jpg -------------------------------------------------------------------------------- /public/la-assets/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/boxed-bg.png -------------------------------------------------------------------------------- /public/la-assets/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/credit/american-express.png -------------------------------------------------------------------------------- /public/la-assets/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/credit/cirrus.png -------------------------------------------------------------------------------- /public/la-assets/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/credit/mastercard.png -------------------------------------------------------------------------------- /public/la-assets/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/credit/mestro.png -------------------------------------------------------------------------------- /public/la-assets/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/credit/paypal.png -------------------------------------------------------------------------------- /public/la-assets/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/credit/paypal2.png -------------------------------------------------------------------------------- /public/la-assets/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/credit/visa.png -------------------------------------------------------------------------------- /public/la-assets/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/default-50x50.gif -------------------------------------------------------------------------------- /public/la-assets/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/icons.png -------------------------------------------------------------------------------- /public/la-assets/img/laraadmin-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/laraadmin-256.png -------------------------------------------------------------------------------- /public/la-assets/img/laraadmin_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/laraadmin_logo_white.png -------------------------------------------------------------------------------- /public/la-assets/img/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/mobile.png -------------------------------------------------------------------------------- /public/la-assets/img/post_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/post_banner.png -------------------------------------------------------------------------------- /public/la-assets/img/post_banner_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/post_banner_large.jpg -------------------------------------------------------------------------------- /public/la-assets/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/user1-128x128.jpg -------------------------------------------------------------------------------- /public/la-assets/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/user2-160x160.jpg -------------------------------------------------------------------------------- /public/la-assets/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/user3-128x128.jpg -------------------------------------------------------------------------------- /public/la-assets/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/user4-128x128.jpg -------------------------------------------------------------------------------- /public/la-assets/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/user5-128x128.jpg -------------------------------------------------------------------------------- /public/la-assets/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/user6-128x128.jpg -------------------------------------------------------------------------------- /public/la-assets/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/user7-128x128.jpg -------------------------------------------------------------------------------- /public/la-assets/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/img/user8-128x128.jpg -------------------------------------------------------------------------------- /public/la-assets/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/ext-error_marker.js: -------------------------------------------------------------------------------- 1 | ; (function() { 2 | window.require(["ace/ext/error_marker"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/mode-text.js: -------------------------------------------------------------------------------- 1 | ; (function() { 2 | window.require(["ace/mode/text"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/abap.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/abap",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="abap"}); (function() { 2 | window.require(["ace/snippets/abap"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/ada.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/ada",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ada"}); (function() { 2 | window.require(["ace/snippets/ada"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/apache_conf.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/apache_conf",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="apache_conf"}); (function() { 2 | window.require(["ace/snippets/apache_conf"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/apex.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/apex",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="apex"}); (function() { 2 | window.require(["ace/snippets/apex"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/applescript.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/applescript",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="applescript"}); (function() { 2 | window.require(["ace/snippets/applescript"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/asciidoc.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/asciidoc",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="asciidoc"}); (function() { 2 | window.require(["ace/snippets/asciidoc"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/asl.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/asl",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="asl"}); (function() { 2 | window.require(["ace/snippets/asl"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/assembly_x86.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/assembly_x86",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="assembly_x86"}); (function() { 2 | window.require(["ace/snippets/assembly_x86"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/autohotkey.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/autohotkey",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="autohotkey"}); (function() { 2 | window.require(["ace/snippets/autohotkey"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/batchfile.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/batchfile",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="batchfile"}); (function() { 2 | window.require(["ace/snippets/batchfile"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/bro.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/bro",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""}); (function() { 2 | window.require(["ace/snippets/bro"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/c9search.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/c9search",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="c9search"}); (function() { 2 | window.require(["ace/snippets/c9search"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/cirru.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/cirru",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="cirru"}); (function() { 2 | window.require(["ace/snippets/cirru"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/cobol.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/cobol",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="cobol"}); (function() { 2 | window.require(["ace/snippets/cobol"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/coldfusion.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/coldfusion",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="coldfusion"}); (function() { 2 | window.require(["ace/snippets/coldfusion"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/csharp.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/csharp",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="csharp"}); (function() { 2 | window.require(["ace/snippets/csharp"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/csound_document.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/csound_document",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="# \nsnippet synth\n \n \n ${1}\n \n \n e\n \n \n",t.scope="csound_document"}); (function() { 2 | window.require(["ace/snippets/csound_document"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/csound_score.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/csound_score",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="csound_score"}); (function() { 2 | window.require(["ace/snippets/csound_score"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/csp.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/csp",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""}); (function() { 2 | window.require(["ace/snippets/csp"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/curly.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/curly",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="curly"}); (function() { 2 | window.require(["ace/snippets/curly"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/d.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/d",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="d"}); (function() { 2 | window.require(["ace/snippets/d"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/dockerfile.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/dockerfile",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="dockerfile"}); (function() { 2 | window.require(["ace/snippets/dockerfile"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/dot.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/dot",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="dot"}); (function() { 2 | window.require(["ace/snippets/dot"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/eiffel.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/eiffel",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="eiffel"}); (function() { 2 | window.require(["ace/snippets/eiffel"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/ejs.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/ejs",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ejs"}); (function() { 2 | window.require(["ace/snippets/ejs"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/elixir.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/elixir",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""}); (function() { 2 | window.require(["ace/snippets/elixir"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/elm.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/elm",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="elm"}); (function() { 2 | window.require(["ace/snippets/elm"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/forth.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/forth",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="forth"}); (function() { 2 | window.require(["ace/snippets/forth"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/fortran.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/fortran",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="fortran"}); (function() { 2 | window.require(["ace/snippets/fortran"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/fsharp.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/fsharp",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="fsharp"}); (function() { 2 | window.require(["ace/snippets/fsharp"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/fsl.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/fsl",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""}); (function() { 2 | window.require(["ace/snippets/fsl"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/ftl.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/ftl",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ftl"}); (function() { 2 | window.require(["ace/snippets/ftl"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/gcode.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/gcode",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="gcode"}); (function() { 2 | window.require(["ace/snippets/gcode"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/gherkin.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/gherkin",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="gherkin"}); (function() { 2 | window.require(["ace/snippets/gherkin"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/gitignore.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/gitignore",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="gitignore"}); (function() { 2 | window.require(["ace/snippets/gitignore"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/glsl.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/glsl",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="glsl"}); (function() { 2 | window.require(["ace/snippets/glsl"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/golang.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/golang",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="golang"}); (function() { 2 | window.require(["ace/snippets/golang"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/groovy.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/groovy",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="groovy"}); (function() { 2 | window.require(["ace/snippets/groovy"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/handlebars.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/handlebars",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="handlebars"}); (function() { 2 | window.require(["ace/snippets/handlebars"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/haskell_cabal.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/haskell_cabal",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="haskell_cabal"}); (function() { 2 | window.require(["ace/snippets/haskell_cabal"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/haxe.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/haxe",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="haxe"}); (function() { 2 | window.require(["ace/snippets/haxe"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/hjson.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/hjson",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""}); (function() { 2 | window.require(["ace/snippets/hjson"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/html_elixir.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/html_elixir",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="html_elixir"}); (function() { 2 | window.require(["ace/snippets/html_elixir"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/html_ruby.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/html_ruby",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="html_ruby"}); (function() { 2 | window.require(["ace/snippets/html_ruby"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/ini.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/ini",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ini"}); (function() { 2 | window.require(["ace/snippets/ini"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/jack.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/jack",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="jack"}); (function() { 2 | window.require(["ace/snippets/jack"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/jade.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/jade",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="jade"}); (function() { 2 | window.require(["ace/snippets/jade"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/json.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/json",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="json"}); (function() { 2 | window.require(["ace/snippets/json"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/jssm.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/jssm",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""}); (function() { 2 | window.require(["ace/snippets/jssm"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/jsx.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/jsx",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="jsx"}); (function() { 2 | window.require(["ace/snippets/jsx"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/julia.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/julia",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="julia"}); (function() { 2 | window.require(["ace/snippets/julia"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/kotlin.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/kotlin",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""}); (function() { 2 | window.require(["ace/snippets/kotlin"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/latex.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/latex",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="latex"}); (function() { 2 | window.require(["ace/snippets/latex"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/less.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/less",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="less"}); (function() { 2 | window.require(["ace/snippets/less"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/lisp.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/lisp",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="lisp"}); (function() { 2 | window.require(["ace/snippets/lisp"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/livescript.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/livescript",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="livescript"}); (function() { 2 | window.require(["ace/snippets/livescript"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/logiql.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/logiql",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="logiql"}); (function() { 2 | window.require(["ace/snippets/logiql"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/logtalk.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/logtalk",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="logtalk"}); (function() { 2 | window.require(["ace/snippets/logtalk"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/luapage.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/luapage",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="luapage"}); (function() { 2 | window.require(["ace/snippets/luapage"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/lucene.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/lucene",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="lucene"}); (function() { 2 | window.require(["ace/snippets/lucene"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/makefile.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/makefile",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet ifeq\n ifeq (${1:cond0},${2:cond1})\n ${3:code}\n endif\n",t.scope="makefile"}); (function() { 2 | window.require(["ace/snippets/makefile"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/mask.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/mask",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mask"}); (function() { 2 | window.require(["ace/snippets/mask"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/matlab.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/matlab",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="matlab"}); (function() { 2 | window.require(["ace/snippets/matlab"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/maze.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/maze",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet >\ndescription assignment\nscope maze\n -> ${1}= ${2}\n\nsnippet >\ndescription if\nscope maze\n -> IF ${2:**} THEN %${3:L} ELSE %${4:R}\n",t.scope="maze"}); (function() { 2 | window.require(["ace/snippets/maze"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/mel.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/mel",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mel"}); (function() { 2 | window.require(["ace/snippets/mel"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/mixal.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/mixal",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mixal"}); (function() { 2 | window.require(["ace/snippets/mixal"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/mushcode.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/mushcode",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mushcode"}); (function() { 2 | window.require(["ace/snippets/mushcode"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/mysql.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/mysql",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mysql"}); (function() { 2 | window.require(["ace/snippets/mysql"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/nix.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/nix",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="nix"}); (function() { 2 | window.require(["ace/snippets/nix"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/nsis.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/nsis",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""}); (function() { 2 | window.require(["ace/snippets/nsis"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/objectivec.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/objectivec",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="objectivec"}); (function() { 2 | window.require(["ace/snippets/objectivec"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/ocaml.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/ocaml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ocaml"}); (function() { 2 | window.require(["ace/snippets/ocaml"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/pascal.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/pascal",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="pascal"}); (function() { 2 | window.require(["ace/snippets/pascal"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/perl6.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/perl6",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="perl6"}); (function() { 2 | window.require(["ace/snippets/perl6"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/pgsql.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/pgsql",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="pgsql"}); (function() { 2 | window.require(["ace/snippets/pgsql"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/php_laravel_blade.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/php_laravel_blade",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="php"}); (function() { 2 | window.require(["ace/snippets/php_laravel_blade"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/pig.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/pig",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="pig"}); (function() { 2 | window.require(["ace/snippets/pig"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/plain_text.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/plain_text",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="plain_text"}); (function() { 2 | window.require(["ace/snippets/plain_text"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/powershell.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/powershell",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="powershell"}); (function() { 2 | window.require(["ace/snippets/powershell"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/praat.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/praat",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="praat"}); (function() { 2 | window.require(["ace/snippets/praat"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/prolog.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/prolog",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="prolog"}); (function() { 2 | window.require(["ace/snippets/prolog"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/properties.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/properties",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="properties"}); (function() { 2 | window.require(["ace/snippets/properties"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/protobuf.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/protobuf",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="",t.scope="protobuf"}); (function() { 2 | window.require(["ace/snippets/protobuf"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/puppet.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/puppet",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="puppet"}); (function() { 2 | window.require(["ace/snippets/puppet"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/razor.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/razor",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet if\n(${1} == ${2}) {\n ${3}\n}",t.scope="razor"}); (function() { 2 | window.require(["ace/snippets/razor"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/rdoc.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/rdoc",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="rdoc"}); (function() { 2 | window.require(["ace/snippets/rdoc"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/red.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/red",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=" ",t.scope="red"}); (function() { 2 | window.require(["ace/snippets/red"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/redshift.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/redshift",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="redshift"}); (function() { 2 | window.require(["ace/snippets/redshift"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/rhtml.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/rhtml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="rhtml"}); (function() { 2 | window.require(["ace/snippets/rhtml"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/rust.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/rust",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="rust"}); (function() { 2 | window.require(["ace/snippets/rust"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/sass.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/sass",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="sass"}); (function() { 2 | window.require(["ace/snippets/sass"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/scad.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/scad",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="scad"}); (function() { 2 | window.require(["ace/snippets/scad"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/scala.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/scala",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="scala"}); (function() { 2 | window.require(["ace/snippets/scala"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/scheme.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/scheme",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="scheme"}); (function() { 2 | window.require(["ace/snippets/scheme"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/scss.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/scss",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="scss"}); (function() { 2 | window.require(["ace/snippets/scss"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/sjs.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/sjs",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="sjs"}); (function() { 2 | window.require(["ace/snippets/sjs"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/slim.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/slim",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="slim"}); (function() { 2 | window.require(["ace/snippets/slim"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/smarty.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/smarty",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="smarty"}); (function() { 2 | window.require(["ace/snippets/smarty"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/snippets.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/snippets",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="# snippets for making snippets :)\nsnippet snip\n snippet ${1:trigger}\n ${2}\nsnippet msnip\n snippet ${1:trigger} ${2:description}\n ${3}\nsnippet v\n {VISUAL}\n",t.scope="snippets"}); (function() { 2 | window.require(["ace/snippets/snippets"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/soy_template.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/soy_template",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="soy_template"}); (function() { 2 | window.require(["ace/snippets/soy_template"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/space.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/space",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="space"}); (function() { 2 | window.require(["ace/snippets/space"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/sparql.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/sparql",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""}); (function() { 2 | window.require(["ace/snippets/sparql"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/stylus.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/stylus",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="stylus"}); (function() { 2 | window.require(["ace/snippets/stylus"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/svg.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/svg",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="svg"}); (function() { 2 | window.require(["ace/snippets/svg"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/swift.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/swift",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="swift"}); (function() { 2 | window.require(["ace/snippets/swift"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/terraform.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/terraform",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="terraform"}); (function() { 2 | window.require(["ace/snippets/terraform"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/text.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/text",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="text"}); (function() { 2 | window.require(["ace/snippets/text"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/toml.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/toml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="toml"}); (function() { 2 | window.require(["ace/snippets/toml"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/tsx.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/tsx",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="tsx"}); (function() { 2 | window.require(["ace/snippets/tsx"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/turtle.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/turtle",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""}); (function() { 2 | window.require(["ace/snippets/turtle"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/twig.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/twig",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="twig"}); (function() { 2 | window.require(["ace/snippets/twig"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/typescript.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/typescript",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="typescript"}); (function() { 2 | window.require(["ace/snippets/typescript"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/vbscript.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/vbscript",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="vbscript"}); (function() { 2 | window.require(["ace/snippets/vbscript"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/verilog.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/verilog",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="verilog"}); (function() { 2 | window.require(["ace/snippets/verilog"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/vhdl.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/vhdl",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="vhdl"}); (function() { 2 | window.require(["ace/snippets/vhdl"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/visualforce.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/visualforce",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="visualforce"}); (function() { 2 | window.require(["ace/snippets/visualforce"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/xml.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/xml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="xml"}); (function() { 2 | window.require(["ace/snippets/xml"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ace/snippets/yaml.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/yaml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="yaml"}); (function() { 2 | window.require(["ace/snippets/yaml"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /public/la-assets/plugins/bootstrap-editable/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/bootstrap-editable/clear.png -------------------------------------------------------------------------------- /public/la-assets/plugins/bootstrap-editable/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/bootstrap-editable/loading.gif -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /public/la-assets/plugins/colorpicker/img/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/colorpicker/img/alpha-horizontal.png -------------------------------------------------------------------------------- /public/la-assets/plugins/colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/colorpicker/img/alpha.png -------------------------------------------------------------------------------- /public/la-assets/plugins/colorpicker/img/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/colorpicker/img/hue-horizontal.png -------------------------------------------------------------------------------- /public/la-assets/plugins/colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/colorpicker/img/hue.png -------------------------------------------------------------------------------- /public/la-assets/plugins/colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/colorpicker/img/saturation.png -------------------------------------------------------------------------------- /public/la-assets/plugins/datatables/images/details_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/datatables/images/details_close.png -------------------------------------------------------------------------------- /public/la-assets/plugins/datatables/images/details_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/datatables/images/details_open.png -------------------------------------------------------------------------------- /public/la-assets/plugins/datatables/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/datatables/images/favicon.ico -------------------------------------------------------------------------------- /public/la-assets/plugins/datatables/images/loading_bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/datatables/images/loading_bar.gif -------------------------------------------------------------------------------- /public/la-assets/plugins/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /public/la-assets/plugins/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /public/la-assets/plugins/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/datatables/images/sort_both.png -------------------------------------------------------------------------------- /public/la-assets/plugins/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /public/la-assets/plugins/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /public/la-assets/plugins/datatables/js/buttons/css/common.scss: -------------------------------------------------------------------------------- 1 | 2 | div.dt-button-info { 3 | position: fixed; 4 | top: 50%; 5 | left: 50%; 6 | width: 400px; 7 | margin-top: -100px; 8 | margin-left: -200px; 9 | background-color: white; 10 | border: 2px solid #111; 11 | box-shadow: 3px 3px 8px rgba( 0, 0, 0, 0.3); 12 | border-radius: 3px; 13 | text-align: center; 14 | z-index: 21; 15 | 16 | h2 { 17 | padding: 0.5em; 18 | margin: 0; 19 | font-weight: normal; 20 | border-bottom: 1px solid #ddd; 21 | background-color: #f3f3f3; 22 | } 23 | 24 | > div { 25 | padding: 1em; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /public/la-assets/plugins/datatables/js/buttons/js/buttons.bootstrap.min.js: -------------------------------------------------------------------------------- 1 | (function(b,a){b.extend(!0,a.Buttons.defaults,{dom:{container:{className:"dt-buttons btn-group"},button:{className:"btn btn-default"},collection:{tag:"ul",className:"dt-button-collection dropdown-menu",button:{tag:"li",className:"dt-button"},buttonLiner:{tag:"a",className:""}}}});a.ext.buttons.collection.text=function(a){return a.i18n("buttons.collection",'Collection ')}})(jQuery,jQuery.fn.dataTable); 2 | -------------------------------------------------------------------------------- /public/la-assets/plugins/datatables/js/buttons/js/buttons.foundation.min.js: -------------------------------------------------------------------------------- 1 | (function(b,a){b.extend(!0,a.Buttons.defaults,{dom:{container:{tag:"ul",className:"dt-buttons button-group"},buttonContainer:{tag:"li",className:""},button:{tag:"a",className:"button small"},buttonLiner:{tag:null},collection:{tag:"ul",className:"dt-button-collection f-dropdown open",button:{tag:"a",className:"small"}}}});a.ext.buttons.collection.className="buttons-collection dropdown"})(jQuery,jQuery.fn.dataTable); 2 | -------------------------------------------------------------------------------- /public/la-assets/plugins/datatables/js/buttons/js/buttons.jqueryui.min.js: -------------------------------------------------------------------------------- 1 | (function(b,a){b.extend(!0,a.Buttons.defaults,{dom:{container:{className:"dt-buttons ui-buttonset"},button:{className:"dt-button ui-button ui-state-default ui-button-text-only",disabled:"ui-state-disabled",active:"ui-state-active"},buttonLiner:{tag:"span",className:"ui-button-text"}}});a.ext.buttons.collection.text=function(a){return a.i18n("buttons.collection",'Collection ')}})(jQuery,jQuery.fn.dataTable); 2 | -------------------------------------------------------------------------------- /public/la-assets/plugins/datatables/js/buttons/swf/flashExport.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/datatables/js/buttons/swf/flashExport.swf -------------------------------------------------------------------------------- /public/la-assets/plugins/datepicker/locales/bootstrap-datepicker.az.js: -------------------------------------------------------------------------------- 1 | // Azerbaijani 2 | ;(function($){ 3 | $.fn.datepicker.dates['az'] = { 4 | days: ["Bazar", "Bazar ertəsi", "Çərşənbə axşamı", "Çərşənbə", "Cümə axşamı", "Cümə", "Şənbə", "Bazar"], 5 | daysShort: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 6 | daysMin: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 7 | months: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"], 8 | monthsShort: ["Yan", "Fev", "Mar", "Apr", "May", "İyun", "İyul", "Avq", "Sen", "Okt", "Noy", "Dek"], 9 | today: "Bu gün", 10 | weekStart: 1 11 | }; 12 | }(jQuery)); 13 | -------------------------------------------------------------------------------- /public/la-assets/plugins/datepicker/locales/bootstrap-datepicker.cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Welsh translation for bootstrap-datepicker 3 | * S. Morris 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['cy'] = { 7 | days: ["Sul", "Llun", "Mawrth", "Mercher", "Iau", "Gwener", "Sadwrn", "Sul"], 8 | daysShort: ["Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad", "Sul"], 9 | daysMin: ["Su", "Ll", "Ma", "Me", "Ia", "Gwe", "Sa", "Su"], 10 | months: ["Ionawr", "Chewfror", "Mawrth", "Ebrill", "Mai", "Mehefin", "Gorfennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr"], 11 | monthsShort: ["Ion", "Chw", "Maw", "Ebr", "Mai", "Meh", "Gor", "Aws", "Med", "Hyd", "Tach", "Rha"], 12 | today: "Heddiw" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /public/la-assets/plugins/datepicker/locales/bootstrap-datepicker.gl.js: -------------------------------------------------------------------------------- 1 | ;(function($){ 2 | $.fn.datepicker.dates['gl'] = { 3 | days: ["Domingo", "Luns", "Martes", "Mércores", "Xoves", "Venres", "Sábado", "Domingo"], 4 | daysShort: ["Dom", "Lun", "Mar", "Mér", "Xov", "Ven", "Sáb", "Dom"], 5 | daysMin: ["Do", "Lu", "Ma", "Me", "Xo", "Ve", "Sa", "Do"], 6 | months: ["Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"], 7 | monthsShort: ["Xan", "Feb", "Mar", "Abr", "Mai", "Xun", "Xul", "Ago", "Sep", "Out", "Nov", "Dec"], 8 | today: "Hoxe", 9 | clear: "Limpar" 10 | }; 11 | }(jQuery)); 12 | -------------------------------------------------------------------------------- /public/la-assets/plugins/datepicker/locales/bootstrap-datepicker.he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hebrew translation for bootstrap-datepicker 3 | * Sagie Maoz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['he'] = { 7 | days: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת", "ראשון"], 8 | daysShort: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 9 | daysMin: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 10 | months: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"], 11 | monthsShort: ["ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ"], 12 | today: "היום", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /public/la-assets/plugins/datepicker/locales/bootstrap-datepicker.hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Croatian localisation 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['hr'] = { 6 | days: ["Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota", "Nedjelja"], 7 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub", "Ned"], 8 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su", "Ne"], 9 | months: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"], 10 | monthsShort: ["Sij", "Velj", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro"], 11 | today: "Danas" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /public/la-assets/plugins/datepicker/locales/bootstrap-datepicker.ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Japanese translation for bootstrap-datepicker 3 | * Norio Suzuki 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ja'] = { 7 | days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜", "日曜"], 8 | daysShort: ["日", "月", "火", "水", "木", "金", "土", "日"], 9 | daysMin: ["日", "月", "火", "水", "木", "金", "土", "日"], 10 | months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 12 | today: "今日", 13 | format: "yyyy/mm/dd" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /public/la-assets/plugins/datepicker/locales/bootstrap-datepicker.kr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Korean translation for bootstrap-datepicker 3 | * Gu Youn 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kr'] = { 7 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일"], 8 | daysShort: ["일", "월", "화", "수", "목", "금", "토", "일"], 9 | daysMin: ["일", "월", "화", "수", "목", "금", "토", "일"], 10 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 11 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"] 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /public/la-assets/plugins/datepicker/locales/bootstrap-datepicker.ms.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Malay translation for bootstrap-datepicker 3 | * Ateman Faiz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ms'] = { 7 | days: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu", "Ahad"], 8 | daysShort: ["Aha", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab", "Aha"], 9 | daysMin: ["Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa", "Ah"], 10 | months: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"], 12 | today: "Hari Ini" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /public/la-assets/plugins/datepicker/locales/bootstrap-datepicker.no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian translation for bootstrap-datepicker 3 | **/ 4 | ;(function($){ 5 | $.fn.datepicker.dates['no'] = { 6 | days: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'], 7 | daysShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'], 8 | daysMin: ['Sø','Ma','Ti','On','To','Fr','Lø'], 9 | months: ['Januar','Februar','Mars','April','Mai','Juni','Juli','August','September','Oktober','November','Desember'], 10 | monthsShort: ['Jan','Feb','Mar','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Des'], 11 | today: 'I dag', 12 | clear: 'Nullstill', 13 | weekStart: 1, 14 | format: 'dd.mm.yyyy' 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /public/la-assets/plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Simplified Chinese translation for bootstrap-datepicker 3 | * Yuan Cheung 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['zh-CN'] = { 7 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], 8 | daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"], 9 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], 10 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 11 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | today: "今日", 13 | format: "yyyy年mm月dd日", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/green.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/green.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/orange.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/purple.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/square.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/yellow.png -------------------------------------------------------------------------------- /public/la-assets/plugins/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /public/la-assets/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- 1 | more phone masks can be found at https://github.com/andr-04/inputmask-multi -------------------------------------------------------------------------------- /public/la-assets/plugins/ionslider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ionslider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /public/la-assets/plugins/ionslider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/ionslider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/application.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/code.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/css.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/db.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/directory-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/directory-lock.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/directory.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/doc.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/file-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/file-lock.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/file.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/film.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/flash.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/folder_open.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/html.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/java.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/linux.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/music.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/pdf.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/php.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/picture.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/ppt.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/psd.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/ruby.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/script.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/spinner.gif -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/txt.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/xls.png -------------------------------------------------------------------------------- /public/la-assets/plugins/jquery-filetree/images/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/jquery-filetree/images/zip.png -------------------------------------------------------------------------------- /public/la-assets/plugins/morris/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1090;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#f9f9f9;background:rgba(0, 0, 0, 0.8);border:solid 2px rgba(0, 0, 0, 0.9);font-weight: 600;font-size:14px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;} 3 | -------------------------------------------------------------------------------- /public/la-assets/plugins/select2/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/la-assets/plugins/select2/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/la-assets/plugins/select2/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/la-assets/plugins/select2/i18n/ja.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/la-assets/plugins/select2/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/la-assets/plugins/select2/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/la-assets/plugins/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/la-assets/plugins/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/la-assets/plugins/summernote/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/summernote/font/summernote.eot -------------------------------------------------------------------------------- /public/la-assets/plugins/summernote/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/summernote/font/summernote.ttf -------------------------------------------------------------------------------- /public/la-assets/plugins/summernote/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/public/la-assets/plugins/summernote/font/summernote.woff -------------------------------------------------------------------------------- /public/la-assets/plugins/summernote/plugin/databasic/summernote-ext-databasic.css: -------------------------------------------------------------------------------- 1 | .ext-databasic { 2 | position: relative; 3 | display: block; 4 | min-height: 50px; 5 | background-color: cyan; 6 | text-align: center; 7 | padding: 20px; 8 | border: 1px solid white; 9 | border-radius: 10px; 10 | } 11 | 12 | .ext-databasic p { 13 | color: white; 14 | font-size: 1.2em; 15 | margin: 0; 16 | } 17 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /resources/lang/en/common.php: -------------------------------------------------------------------------------- 1 | 'Add', 5 | 'cancel' => 'Cancel', 6 | 'close' => 'Close', 7 | 'save' => 'Save', 8 | 'submit' => 'Submit', 9 | 'edit' => 'Edit', 10 | 'update' => 'Update', 11 | 'listing' => 'Listing', 12 | 'general_info' => 'General Info', 13 | 'timeline' => 'Timeline', 14 | 'access' => 'Access', 15 | 'download' => 'Download', 16 | 'delete' => 'Delete', 17 | 'actions' => 'Actions', 18 | 'search' => 'Search', 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/la_blog_category.php: -------------------------------------------------------------------------------- 1 | 'Blog category', 12 | 'blog_categories' => 'Blog Categories', 13 | 'blog_category_listing' => 'Blog category Listing', 14 | 'blog_category_add' => 'Add Blog category', 15 | 'back_to_blog_categories' => 'Back to Blog Categories', 16 | 'blog_category_view' => 'Blog category View', 17 | 'blog_category_edit' => 'Blog category Edit', 18 | ]; 19 | -------------------------------------------------------------------------------- /resources/lang/en/la_blog_post.php: -------------------------------------------------------------------------------- 1 | 'Blog post', 12 | 'blog_posts' => 'Blog Posts', 13 | 'blog_post_listing' => 'Blog post Listing', 14 | 'blog_post_add' => 'Add Blog post', 15 | 'back_to_blog_posts' => 'Back to Blog Posts', 16 | 'blog_post_view' => 'Blog post View', 17 | 'blog_post_edit' => 'Blog post Edit', 18 | ]; 19 | -------------------------------------------------------------------------------- /resources/lang/en/la_configure.php: -------------------------------------------------------------------------------- 1 | 'Configurations', 5 | 'gui_settings' => 'GUI Settings', 6 | 'config_add' => 'Add Configuration' 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/en/la_customer.php: -------------------------------------------------------------------------------- 1 | 'Customer', 12 | 'customers' => 'Customers', 13 | 'customer_listing' => 'Customer Listing', 14 | 'customer_add' => 'Add Customer', 15 | 'back_to_customers' => 'Back to Customers', 16 | 'customer_view' => 'Customer View', 17 | 'customer_edit' => 'Customer Edit', 18 | ]; 19 | -------------------------------------------------------------------------------- /resources/lang/en/la_department.php: -------------------------------------------------------------------------------- 1 | 'Department', 12 | 'departments' => 'Departments', 13 | 'department_listing' => 'Department Listing', 14 | 'department_add' => 'Add Department', 15 | 'back_to_departments' => 'Back to Departments', 16 | 'department_view' => 'Department View', 17 | 'department_edit' => 'Department Edit', 18 | ]; 19 | -------------------------------------------------------------------------------- /resources/lang/en/la_editor.php: -------------------------------------------------------------------------------- 1 | 'LA Code Editor', 5 | 'inst_instn' => 'Installation instructions', 6 | 'not_installed' => 'Not installed', 7 | 'inst_la_code_editor' => 'Install LA Code Editor', 8 | ]; 9 | -------------------------------------------------------------------------------- /resources/lang/en/la_employee.php: -------------------------------------------------------------------------------- 1 | 'Employee', 12 | 'employees' => 'Employees', 13 | 'employee_listing' => 'Employee Listing', 14 | 'employee_add' => 'Add Employee', 15 | 'back_to_employees' => 'Back to Employees', 16 | 'employee_view' => 'Employee View', 17 | 'employee_edit' => 'Employee Edit', 18 | 'account_settings' => 'Account settings' 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/la_la_log.php: -------------------------------------------------------------------------------- 1 | 'LA log', 12 | 'la_logs' => 'LA Logs', 13 | 'la_log_listing' => 'LA log Listing', 14 | 'la_log_add' => 'Add LA log', 15 | 'back_to_la_logs' => 'Back to LA Logs', 16 | 'la_log_view' => 'LA log View', 17 | 'la_log_edit' => 'LA log Edit', 18 | ]; 19 | -------------------------------------------------------------------------------- /resources/lang/en/la_lalog.php: -------------------------------------------------------------------------------- 1 | 'Log', 12 | 'la_logs' => 'Logs', 13 | 'lalog_listing' => 'Log Listing', 14 | 'lalog_add' => 'Add Log', 15 | 'back_to_lalogs' => 'Back to Logs', 16 | 'lalog_view' => 'Log View', 17 | 'lalog_edit' => 'Log Edit' 18 | ]; 19 | -------------------------------------------------------------------------------- /resources/lang/en/la_menu.php: -------------------------------------------------------------------------------- 1 | 'Menus', 5 | 'editor' => 'Editor', 6 | 'menu_editor' => 'Menu Editor', 7 | 'modules' => 'Modules', 8 | 'url' => 'URL', 9 | 'cust_links' =>'Custom Links', 10 | 'label' => 'Label', 11 | 'icon' => 'Icon', 12 | 'add_to_menu' => 'Add to menu', 13 | 'edit_menu_item' => 'Edit Menu Item', 14 | ]; 15 | -------------------------------------------------------------------------------- /resources/lang/en/la_message.php: -------------------------------------------------------------------------------- 1 | 'Message', 12 | 'messages' => 'Messages' 13 | ]; 14 | -------------------------------------------------------------------------------- /resources/lang/en/la_organization.php: -------------------------------------------------------------------------------- 1 | 'Organization', 5 | 'organizations' => 'Organizations', 6 | 'organization_listing' => 'Organization Listing', 7 | 'organization_add' => 'Add Organization', 8 | 'organization_view' => 'Organization View', 9 | 'organization_settings' => 'Account settings', 10 | 'organization_edit' => 'Organizations Edit', 11 | ]; 12 | -------------------------------------------------------------------------------- /resources/lang/en/la_permission.php: -------------------------------------------------------------------------------- 1 | 'Permission', 12 | 'permissions' => 'Permissions', 13 | 'permission_listing' => 'Permission Listing', 14 | 'permission_add' => 'Add Permission', 15 | 'back_to_permissions' => 'Back to Permissions', 16 | 'permission_view' => 'Permission View', 17 | 'permission_edit' => 'Permission Edit' 18 | ]; 19 | -------------------------------------------------------------------------------- /resources/lang/en/la_role.php: -------------------------------------------------------------------------------- 1 | 'Role', 12 | 'roles' => 'Roles', 13 | 'role_listing' => 'Role Listing', 14 | 'role_add' => 'Add Role', 15 | 'back_to_roles' => 'Back to Roles', 16 | 'role_view' => 'Role View', 17 | 'role_edit' => 'Role Edit', 18 | 'hierarchy_view' => 'Hierarchy View', 19 | 'list_view' => 'List View' 20 | ]; 21 | -------------------------------------------------------------------------------- /resources/lang/en/la_upload.php: -------------------------------------------------------------------------------- 1 | 'Upload', 12 | 'uploads' => 'Uploads', 13 | 'uploaded_img_file' => 'Uploaded images & files', 14 | 'upload_new' => 'Add New', 15 | 'drop_file' => 'Drop files here to upload', 16 | 'file_name' => 'File Name', 17 | 'url' => 'URL', 18 | 'caption' => 'Caption', 19 | 'lable' => 'Lable', 20 | 'is_public' => 'Is Public', 21 | 'no_files' => 'No Files', 22 | ]; 23 | -------------------------------------------------------------------------------- /resources/lang/en/la_user.php: -------------------------------------------------------------------------------- 1 | 'users', 12 | 'user_listing' => 'User Listing', 13 | ]; 14 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/less/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false, 3 | "box-sizing": false, 4 | "box-model": false, 5 | "compatible-vendor-prefixes": false, 6 | "floats": false, 7 | "font-sizes": false, 8 | "gradients": false, 9 | "important": false, 10 | "known-properties": false, 11 | "outline-none": false, 12 | "qualified-headings": false, 13 | "regex-selectors": false, 14 | "shorthand": false, 15 | "text-indent": false, 16 | "unique-headings": false, 17 | "universal-selector": false, 18 | "unqualified-attributes": false, 19 | "ids": false, 20 | "fallback-colors": false, 21 | "vendor-prefix": false, 22 | "import": false 23 | } 24 | -------------------------------------------------------------------------------- /resources/less/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; 8 | margin-bottom: @line-height-computed; 9 | list-style: none; 10 | background-color: @breadcrumb-bg; 11 | border-radius: @border-radius-base; 12 | 13 | > li { 14 | display: inline-block; 15 | 16 | + li:before { 17 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 18 | padding: 0 5px; 19 | color: @breadcrumb-color; 20 | } 21 | } 22 | 23 | > .active { 24 | color: @breadcrumb-active-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover, 6 | a&:focus { 7 | background-color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/border-radius.less: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | .border-top-radius(@radius) { 4 | border-top-right-radius: @radius; 5 | border-top-left-radius: @radius; 6 | } 7 | .border-right-radius(@radius) { 8 | border-bottom-right-radius: @radius; 9 | border-top-right-radius: @radius; 10 | } 11 | .border-bottom-radius(@radius) { 12 | border-bottom-right-radius: @radius; 13 | border-bottom-left-radius: @radius; 14 | } 15 | .border-left-radius(@radius) { 16 | border-bottom-left-radius: @radius; 17 | border-top-left-radius: @radius; 18 | } 19 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/clearfix.less: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | .clearfix() { 14 | &:before, 15 | &:after { 16 | content: " "; // 1 17 | display: table; // 2 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/hide-text.less: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (has been removed in v4) 10 | .hide-text() { 11 | font: ~"0/0" a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | .text-hide() { 20 | .hide-text(); 21 | } 22 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/list-group.less: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | .list-group-item-variant(@state; @background; @color) { 4 | .list-group-item-@{state} { 5 | color: @color; 6 | background-color: @background; 7 | 8 | a&, 9 | button& { 10 | color: @color; 11 | 12 | .list-group-item-heading { 13 | color: inherit; 14 | } 15 | 16 | &:hover, 17 | &:focus { 18 | color: @color; 19 | background-color: darken(@background, 5%); 20 | } 21 | &.active, 22 | &.active:hover, 23 | &.active:focus { 24 | color: #fff; 25 | background-color: @color; 26 | border-color: @color; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/pagination.less: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: @padding-vertical @padding-horizontal; 8 | font-size: @font-size; 9 | line-height: @line-height; 10 | } 11 | &:first-child { 12 | > a, 13 | > span { 14 | .border-left-radius(@border-radius); 15 | } 16 | } 17 | &:last-child { 18 | > a, 19 | > span { 20 | .border-right-radius(@border-radius); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/panels.less: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { 4 | border-color: @border; 5 | 6 | & > .panel-heading { 7 | color: @heading-text-color; 8 | background-color: @heading-bg-color; 9 | border-color: @heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: @border; 13 | } 14 | .badge { 15 | color: @heading-bg-color; 16 | background-color: @heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: @border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/reset-text.less: -------------------------------------------------------------------------------- 1 | .reset-text() { 2 | font-family: @font-family-base; 3 | // We deliberately do NOT reset font-size. 4 | font-style: normal; 5 | font-weight: normal; 6 | letter-spacing: normal; 7 | line-break: auto; 8 | line-height: @line-height-base; 9 | text-align: left; // Fallback for where `start` is not supported 10 | text-align: start; 11 | text-decoration: none; 12 | text-shadow: none; 13 | text-transform: none; 14 | white-space: normal; 15 | word-break: normal; 16 | word-spacing: normal; 17 | word-wrap: normal; 18 | } 19 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | .responsive-visibility() { 6 | display: block !important; 7 | table& { display: table !important; } 8 | tr& { display: table-row !important; } 9 | th&, 10 | td& { display: table-cell !important; } 11 | } 12 | 13 | .responsive-invisibility() { 14 | display: none !important; 15 | } 16 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /resources/less/bootstrap/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /resources/less/bootstrap/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @well-bg; 12 | border: 1px solid @well-border; 13 | border-radius: @border-radius-base; 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: @border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: @border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /resources/less/laraadmin/carousel.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: Carousel 3 | * ------------------- 4 | */ 5 | .carousel-control { 6 | &.left, 7 | &.right { 8 | background-image: none; 9 | } 10 | > .fa { 11 | font-size: 40px; 12 | position: absolute; 13 | top: 50%; 14 | z-index: 5; 15 | display: inline-block; 16 | margin-top: -20px; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /resources/less/laraadmin/invoice.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Page: Invoice 3 | * ------------- 4 | */ 5 | 6 | .invoice { 7 | position: relative; 8 | background: #fff; 9 | border: 1px solid #f4f4f4; 10 | padding: 20px; 11 | margin: 10px 25px; 12 | } 13 | 14 | .invoice-title { 15 | margin-top: 0; 16 | } 17 | -------------------------------------------------------------------------------- /resources/less/laraadmin/labels.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: Label 3 | * ---------------- 4 | */ 5 | .label-default { 6 | background-color: @gray; 7 | color: #444; 8 | } 9 | 10 | .label-danger { 11 | &:extend(.bg-red); 12 | } 13 | 14 | .label-info { 15 | &:extend(.bg-aqua); 16 | } 17 | 18 | .label-warning { 19 | &:extend(.bg-yellow); 20 | } 21 | 22 | .label-primary { 23 | &:extend(.bg-light-blue); 24 | } 25 | 26 | .label-success { 27 | &:extend(.bg-green); 28 | } 29 | -------------------------------------------------------------------------------- /resources/less/laraadmin/profile.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Page: Profile 3 | * ------------- 4 | */ 5 | 6 | .profile-user-img { 7 | margin: 0 auto; 8 | width: 100px; 9 | padding: 3px; 10 | border: 3px solid @gray; 11 | } 12 | 13 | .profile-username { 14 | font-size: 21px; 15 | margin-top: 5px; 16 | } 17 | 18 | .post { 19 | border-bottom: 1px solid @gray; 20 | margin-bottom: 15px; 21 | padding-bottom: 15px; 22 | color: #666; 23 | &:last-of-type { 24 | border-bottom: 0; 25 | margin-bottom: 0; 26 | padding-bottom: 0; 27 | } 28 | .user-block { 29 | margin-bottom: 15px; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /resources/less/laraadmin/skins/_all-skins.less: -------------------------------------------------------------------------------- 1 | //All skins in one file 2 | @import "skin-blue.less"; 3 | @import "skin-blue-light.less"; 4 | @import "skin-black.less"; 5 | @import "skin-black-light.less"; 6 | @import "skin-green.less"; 7 | @import "skin-green-light.less"; 8 | @import "skin-red.less"; 9 | @import "skin-red-light.less"; 10 | @import "skin-yellow.less"; 11 | @import "skin-yellow-light.less"; 12 | @import "skin-purple.less"; 13 | @import "skin-purple-light.less"; 14 | -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | // Body 2 | $body-bg: #f8fafc; 3 | 4 | // Typography 5 | $font-family-sans-serif: "Nunito", sans-serif; 6 | $font-size-base: 0.9rem; 7 | $line-height-base: 1.6; 8 | 9 | // Colors 10 | $blue: #3490dc; 11 | $indigo: #6574cd; 12 | $purple: #9561e2; 13 | $pink: #f66d9b; 14 | $red: #e3342f; 15 | $orange: #f6993f; 16 | $yellow: #ffed4a; 17 | $green: #38c172; 18 | $teal: #4dc0b5; 19 | $cyan: #6cb2eb; 20 | -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // Fonts 2 | @import url("https://fonts.googleapis.com/css?family=Nunito"); 3 | 4 | // Variables 5 | @import "variables"; 6 | 7 | // Bootstrap 8 | @import "~bootstrap/scss/bootstrap"; 9 | 10 | .navbar-laravel { 11 | background-color: #fff; 12 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); 13 | } 14 | -------------------------------------------------------------------------------- /resources/views/emails/send_inquiry.blade.php: -------------------------------------------------------------------------------- 1 | Dear Admin,

2 | 3 | We have received a new Inquiry.

4 | 5 | Name: {{ $request->name }}
6 | Phone: {{ $request->phone }}
7 | Email: {{ $request->email }}
8 | Message: {{ $request->message }}

9 | 10 | Best Regards,

11 | 12 | === Powered by LaraAdmin CRM === -------------------------------------------------------------------------------- /resources/views/emails/send_login_cred.blade.php: -------------------------------------------------------------------------------- 1 | Dear {{ $user->name }},

2 | 3 | You have been registered on {{ url('/') }}.

4 | 5 | Your login credentials for the same are as below:

6 | 7 | Username: {{ $user->email }}
8 | password: {{ $password }}

9 | 10 | You can login on {{ str_replace("http://", "", url('/login')) }}.

11 | 12 | Best Regards, -------------------------------------------------------------------------------- /resources/views/emails/send_login_cred_change.blade.php: -------------------------------------------------------------------------------- 1 | Dear {{ $user->name }},

2 | 3 | Your login credentials are changed:

4 | 5 | Username: {{ $user->email }}
6 | password: {{ $password }}

7 | 8 | You can login on {{ str_replace("http://", "", url('/login')) }}.

9 | 10 | Best Regards, -------------------------------------------------------------------------------- /resources/views/errors/401.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors.minimal') 2 | 3 | @section('title', __('Unauthorized')) 4 | @section('code', '401') 5 | @section('message', __('Unauthorized')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors.minimal') 2 | 3 | @section('title', __('Forbidden')) 4 | @section('code', '403') 5 | @section('message', __('Forbidden')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors.minimal') 2 | 3 | @section('title', __('Not Found')) 4 | @section('code', '404') 5 | @section('message', __('Not Found')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/419.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors.minimal') 2 | 3 | @section('title', __('Page Expired')) 4 | @section('code', '419') 5 | @section('message', __('Page Expired')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/429.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors.minimal') 2 | 3 | @section('title', __('Too Many Requests')) 4 | @section('code', '429') 5 | @section('message', __('Too Many Requests')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors.minimal') 2 | 3 | @section('title', __('Server Error')) 4 | @section('code', '500') 5 | @section('message', __('Server Error')) 6 | -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors.minimal') 2 | 3 | @section('title', __('Service Unavailable')) 4 | @section('code', '503') 5 | @section('message', __('Service Unavailable')) 6 | -------------------------------------------------------------------------------- /resources/views/la/layouts/auth.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | @include('la.layouts.partials.htmlheader') 5 | 6 | @yield('content') 7 | 8 | -------------------------------------------------------------------------------- /resources/views/la/layouts/partials/footer.blade.php: -------------------------------------------------------------------------------- 1 | @if(!isset($no_padding)) 2 | 8 | @endif -------------------------------------------------------------------------------- /resources/views/la/layouts/partials/quick_add.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/la/layouts/partials/scripts_auth.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/views/la/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 18 | return $request->user(); 19 | }); 20 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 18 | }); 19 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 19 | })->purpose('Display an inspiring quote'); 20 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) ?? '' 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/uploads/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/storage/uploads/.gitkeep -------------------------------------------------------------------------------- /storage/uploads/Hello-World-by-Tim-Bogdanov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwijitsolutions/laraadmin/6fefb40ab1cd0bc7fdbb5db0b1d1f37723cd73bd/storage/uploads/Hello-World-by-Tim-Bogdanov.jpg -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | artisan('migrate:refresh'); 20 | $this->artisan('db:seed --class=LaraAdminSeeder'); 21 | } 22 | 23 | /** 24 | * A basic test example. 25 | * 26 | * @return void 27 | */ 28 | public function test_example() 29 | { 30 | $response = $this->get('/'); 31 | 32 | $response->assertStatus(200); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 |