├── .env.example
├── .gitattributes
├── .gitignore
├── LICENSE
├── app
├── Console
│ ├── Commands
│ │ └── Inspire.php
│ └── Kernel.php
├── Events
│ └── Event.php
├── Exceptions
│ └── Handler.php
├── Http
│ ├── Controllers
│ │ ├── AdminController.php
│ │ ├── Auth
│ │ │ ├── AuthController.php
│ │ │ └── PasswordController.php
│ │ ├── Controller.php
│ │ ├── DashboardController.php
│ │ └── HomeController.php
│ ├── Kernel.php
│ ├── Middleware
│ │ ├── Authenticate.php
│ │ ├── CheckRole.php
│ │ ├── EncryptCookies.php
│ │ ├── RedirectIfAuthenticated.php
│ │ └── VerifyCsrfToken.php
│ ├── Requests
│ │ └── Request.php
│ └── routes.php
├── Jobs
│ └── Job.php
├── Listeners
│ └── .gitkeep
├── Modules
│ ├── Contact
│ │ ├── Controllers
│ │ │ └── IndexController.php
│ │ ├── Views
│ │ │ ├── Index.blade.php
│ │ │ ├── Thankyou.blade.php
│ │ │ └── emails
│ │ │ │ └── contactus.blade.php
│ │ └── routes.php
│ └── ModulesServiceProvider.php
├── Policies
│ └── .gitkeep
├── Providers
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
├── Role.php
├── User.php
└── UserLogin.php
├── artisan
├── bootstrap
├── app.php
├── autoload.php
└── cache
│ └── .gitignore
├── composer.json
├── composer.lock
├── config
├── app.php
├── auth.php
├── broadcasting.php
├── cache.php
├── compile.php
├── database.php
├── filesystems.php
├── mail.php
├── module.php
├── queue.php
├── services.php
├── session.php
└── view.php
├── database
├── .gitignore
├── factories
│ └── ModelFactory.php
├── migrations
│ ├── .gitkeep
│ ├── 2016_07_09_00001_create_cache_table.php
│ ├── 2016_07_09_00002_create_users_table.php
│ ├── 2016_07_09_00003_create_roles_table.php
│ ├── 2016_07_09_00004_create_password_resets_table.php
│ └── 2016_07_09_00006_create_user_logins_table.php
└── seeds
│ ├── .gitkeep
│ ├── DatabaseSeeder.php
│ └── RoleTableSeeder.php
├── gulpfile.js
├── htg-admin.png
├── package.json
├── phpspec.yml
├── phpunit.xml
├── public
├── .htaccess
├── css
│ ├── AdminLTE.min.css
│ ├── bootstrap-social.css
│ ├── dashboard.css
│ ├── flatly
│ │ └── bootstrap.min.css
│ ├── font-awesome.min.css
│ ├── htg.css
│ ├── ie10-viewport-bug-workaround.css
│ ├── skins
│ │ ├── _all-skins.css
│ │ ├── _all-skins.min.css
│ │ ├── skin-black-light.css
│ │ ├── skin-black-light.min.css
│ │ ├── skin-black.css
│ │ ├── skin-black.min.css
│ │ ├── skin-blue-light.css
│ │ ├── skin-blue-light.min.css
│ │ ├── skin-blue.css
│ │ ├── skin-blue.min.css
│ │ ├── skin-green-light.css
│ │ ├── skin-green-light.min.css
│ │ ├── skin-green.css
│ │ ├── skin-green.min.css
│ │ ├── skin-purple-light.css
│ │ ├── skin-purple-light.min.css
│ │ ├── skin-purple.css
│ │ ├── skin-purple.min.css
│ │ ├── skin-red-light.css
│ │ ├── skin-red-light.min.css
│ │ ├── skin-red.css
│ │ ├── skin-red.min.css
│ │ ├── skin-yellow-light.css
│ │ ├── skin-yellow-light.min.css
│ │ ├── skin-yellow.css
│ │ └── skin-yellow.min.css
│ └── sticky-footer-navbar.css
├── favicon.ico
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ ├── fontawesome-webfont.woff
│ └── fontawesome-webfont.woff2
├── index.php
├── js
│ ├── app.min.js
│ ├── ie10-viewport-bug-workaround.js
│ └── ie8-responsive-file-warning.js
└── robots.txt
├── readme.md
├── resources
├── assets
│ └── sass
│ │ └── app.scss
├── lang
│ └── en
│ │ ├── auth.php
│ │ ├── pagination.php
│ │ ├── passwords.php
│ │ └── validation.php
├── vendor
│ └── AdminLTE-2.3.3
│ │ ├── .gitignore
│ │ ├── .jshintrc
│ │ ├── Gruntfile.js
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bootstrap
│ │ ├── css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.css.map
│ │ │ ├── bootstrap.min.css
│ │ │ └── bootstrap.min.css.map
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ └── npm.js
│ │ ├── bower.json
│ │ ├── build
│ │ ├── bootstrap-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
│ │ │ └── variables.less
│ │ └── less
│ │ │ ├── .csslintrc
│ │ │ ├── 404_500_errors.less
│ │ │ ├── AdminLTE.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
│ │ │ ├── info-box.less
│ │ │ ├── invoice.less
│ │ │ ├── labels.less
│ │ │ ├── lockscreen.less
│ │ │ ├── login_and_register.less
│ │ │ ├── mailbox.less
│ │ │ ├── miscellaneous.less
│ │ │ ├── mixins.less
│ │ │ ├── modal.less
│ │ │ ├── navs.less
│ │ │ ├── print.less
│ │ │ ├── products.less
│ │ │ ├── profile.less
│ │ │ ├── progress-bars.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
│ │ │ ├── users-list.less
│ │ │ └── variables.less
│ │ ├── changelog
│ │ ├── composer.json
│ │ ├── dist
│ │ ├── css
│ │ │ ├── AdminLTE.css
│ │ │ ├── AdminLTE.min.css
│ │ │ └── skins
│ │ │ │ ├── _all-skins.css
│ │ │ │ ├── _all-skins.min.css
│ │ │ │ ├── skin-black-light.css
│ │ │ │ ├── skin-black-light.min.css
│ │ │ │ ├── skin-black.css
│ │ │ │ ├── skin-black.min.css
│ │ │ │ ├── skin-blue-light.css
│ │ │ │ ├── skin-blue-light.min.css
│ │ │ │ ├── skin-blue.css
│ │ │ │ ├── skin-blue.min.css
│ │ │ │ ├── skin-green-light.css
│ │ │ │ ├── skin-green-light.min.css
│ │ │ │ ├── skin-green.css
│ │ │ │ ├── skin-green.min.css
│ │ │ │ ├── skin-purple-light.css
│ │ │ │ ├── skin-purple-light.min.css
│ │ │ │ ├── skin-purple.css
│ │ │ │ ├── skin-purple.min.css
│ │ │ │ ├── skin-red-light.css
│ │ │ │ ├── skin-red-light.min.css
│ │ │ │ ├── skin-red.css
│ │ │ │ ├── skin-red.min.css
│ │ │ │ ├── skin-yellow-light.css
│ │ │ │ ├── skin-yellow-light.min.css
│ │ │ │ ├── skin-yellow.css
│ │ │ │ └── skin-yellow.min.css
│ │ ├── img
│ │ │ ├── avatar.png
│ │ │ ├── avatar04.png
│ │ │ ├── avatar2.png
│ │ │ ├── avatar3.png
│ │ │ ├── avatar5.png
│ │ │ ├── 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
│ │ │ ├── photo1.png
│ │ │ ├── photo2.png
│ │ │ ├── photo3.jpg
│ │ │ ├── photo4.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
│ │ │ ├── app.min.js
│ │ │ ├── demo.js
│ │ │ └── pages
│ │ │ ├── dashboard.js
│ │ │ └── dashboard2.js
│ │ ├── documentation
│ │ ├── build
│ │ │ ├── include
│ │ │ │ ├── adminlte-options.html
│ │ │ │ ├── advice.html
│ │ │ │ ├── browsers.html
│ │ │ │ ├── components.html
│ │ │ │ ├── dependencies.html
│ │ │ │ ├── download.html
│ │ │ │ ├── faq.html
│ │ │ │ ├── implementations.html
│ │ │ │ ├── introduction.html
│ │ │ │ ├── layout.html
│ │ │ │ ├── license.html
│ │ │ │ ├── plugins.html
│ │ │ │ └── upgrade.html
│ │ │ └── index.html
│ │ ├── docs.js
│ │ ├── index.html
│ │ └── style.css
│ │ ├── index.html
│ │ ├── index2.html
│ │ ├── package.json
│ │ ├── 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
│ │ ├── 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
│ │ ├── layout
│ │ │ ├── boxed.html
│ │ │ ├── collapsed-sidebar.html
│ │ │ ├── fixed.html
│ │ │ └── top-nav.html
│ │ ├── mailbox
│ │ │ ├── compose.html
│ │ │ ├── mailbox.html
│ │ │ └── read-mail.html
│ │ ├── tables
│ │ │ ├── data.html
│ │ │ └── simple.html
│ │ └── widgets.html
│ │ ├── plugins
│ │ ├── bootstrap-slider
│ │ │ ├── bootstrap-slider.js
│ │ │ └── slider.css
│ │ ├── 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
│ │ │ │ │ ├── CHANGELOG.md
│ │ │ │ │ ├── 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
│ │ │ ├── dataTables.bootstrap.css
│ │ │ ├── dataTables.bootstrap.js
│ │ │ ├── dataTables.bootstrap.min.js
│ │ │ ├── extensions
│ │ │ │ ├── AutoFill
│ │ │ │ │ ├── Readme.txt
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── dataTables.autoFill.css
│ │ │ │ │ │ └── dataTables.autoFill.min.css
│ │ │ │ │ ├── examples
│ │ │ │ │ │ ├── columns.html
│ │ │ │ │ │ ├── complete-callback.html
│ │ │ │ │ │ ├── fill-both.html
│ │ │ │ │ │ ├── fill-horizontal.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── scrolling.html
│ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ └── step-callback.html
│ │ │ │ │ ├── images
│ │ │ │ │ │ └── filler.png
│ │ │ │ │ └── js
│ │ │ │ │ │ ├── dataTables.autoFill.js
│ │ │ │ │ │ └── dataTables.autoFill.min.js
│ │ │ │ ├── ColReorder
│ │ │ │ │ ├── License.txt
│ │ │ │ │ ├── Readme.md
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── dataTables.colReorder.css
│ │ │ │ │ │ └── dataTables.colReorder.min.css
│ │ │ │ │ ├── examples
│ │ │ │ │ │ ├── alt_insert.html
│ │ │ │ │ │ ├── col_filter.html
│ │ │ │ │ │ ├── colvis.html
│ │ │ │ │ │ ├── fixedcolumns.html
│ │ │ │ │ │ ├── fixedheader.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── jqueryui.html
│ │ │ │ │ │ ├── new_init.html
│ │ │ │ │ │ ├── predefined.html
│ │ │ │ │ │ ├── realtime.html
│ │ │ │ │ │ ├── reset.html
│ │ │ │ │ │ ├── scrolling.html
│ │ │ │ │ │ ├── server_side.html
│ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ └── state_save.html
│ │ │ │ │ ├── images
│ │ │ │ │ │ └── insert.png
│ │ │ │ │ └── js
│ │ │ │ │ │ ├── dataTables.colReorder.js
│ │ │ │ │ │ └── dataTables.colReorder.min.js
│ │ │ │ ├── ColVis
│ │ │ │ │ ├── License.txt
│ │ │ │ │ ├── Readme.md
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── dataTables.colVis.css
│ │ │ │ │ │ ├── dataTables.colVis.min.css
│ │ │ │ │ │ └── dataTables.colvis.jqueryui.css
│ │ │ │ │ ├── examples
│ │ │ │ │ │ ├── button_order.html
│ │ │ │ │ │ ├── exclude_columns.html
│ │ │ │ │ │ ├── group_columns.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── jqueryui.html
│ │ │ │ │ │ ├── mouseover.html
│ │ │ │ │ │ ├── new_init.html
│ │ │ │ │ │ ├── restore.html
│ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ ├── text.html
│ │ │ │ │ │ ├── title_callback.html
│ │ │ │ │ │ ├── two_tables.html
│ │ │ │ │ │ └── two_tables_identical.html
│ │ │ │ │ └── js
│ │ │ │ │ │ ├── dataTables.colVis.js
│ │ │ │ │ │ └── dataTables.colVis.min.js
│ │ │ │ ├── FixedColumns
│ │ │ │ │ ├── License.txt
│ │ │ │ │ ├── Readme.md
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── dataTables.fixedColumns.css
│ │ │ │ │ │ └── dataTables.fixedColumns.min.css
│ │ │ │ │ ├── examples
│ │ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ │ ├── col_filter.html
│ │ │ │ │ │ ├── colvis.html
│ │ │ │ │ │ ├── css_size.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── index_column.html
│ │ │ │ │ │ ├── left_right_columns.html
│ │ │ │ │ │ ├── right_column.html
│ │ │ │ │ │ ├── rowspan.html
│ │ │ │ │ │ ├── server-side-processing.html
│ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ ├── size_fixed.html
│ │ │ │ │ │ ├── size_fluid.html
│ │ │ │ │ │ └── two_columns.html
│ │ │ │ │ └── js
│ │ │ │ │ │ ├── dataTables.fixedColumns.js
│ │ │ │ │ │ └── dataTables.fixedColumns.min.js
│ │ │ │ ├── FixedHeader
│ │ │ │ │ ├── Readme.txt
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── dataTables.fixedHeader.css
│ │ │ │ │ │ └── dataTables.fixedHeader.min.css
│ │ │ │ │ ├── examples
│ │ │ │ │ │ ├── header_footer.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ ├── top_left_right.html
│ │ │ │ │ │ ├── two_tables.html
│ │ │ │ │ │ └── zIndexes.html
│ │ │ │ │ └── js
│ │ │ │ │ │ ├── dataTables.fixedHeader.js
│ │ │ │ │ │ └── dataTables.fixedHeader.min.js
│ │ │ │ ├── KeyTable
│ │ │ │ │ ├── Readme.txt
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── dataTables.keyTable.css
│ │ │ │ │ │ └── dataTables.keyTable.min.css
│ │ │ │ │ ├── examples
│ │ │ │ │ │ ├── events.html
│ │ │ │ │ │ ├── html.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── scrolling.html
│ │ │ │ │ │ └── simple.html
│ │ │ │ │ └── js
│ │ │ │ │ │ ├── dataTables.keyTable.js
│ │ │ │ │ │ └── dataTables.keyTable.min.js
│ │ │ │ ├── Responsive
│ │ │ │ │ ├── License.txt
│ │ │ │ │ ├── Readme.md
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── dataTables.responsive.css
│ │ │ │ │ │ └── dataTables.responsive.scss
│ │ │ │ │ ├── examples
│ │ │ │ │ │ ├── child-rows
│ │ │ │ │ │ │ ├── column-control.html
│ │ │ │ │ │ │ ├── custom-renderer.html
│ │ │ │ │ │ │ ├── disable-child-rows.html
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ ├── right-column.html
│ │ │ │ │ │ │ └── whole-row-control.html
│ │ │ │ │ │ ├── display-control
│ │ │ │ │ │ │ ├── auto.html
│ │ │ │ │ │ │ ├── classes.html
│ │ │ │ │ │ │ ├── complexHeader.html
│ │ │ │ │ │ │ ├── fixedHeader.html
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ └── init-classes.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── initialisation
│ │ │ │ │ │ │ ├── ajax.html
│ │ │ │ │ │ │ ├── className.html
│ │ │ │ │ │ │ ├── default.html
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ ├── new.html
│ │ │ │ │ │ │ └── option.html
│ │ │ │ │ │ └── styling
│ │ │ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ │ │ ├── compact.html
│ │ │ │ │ │ │ ├── foundation.html
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ └── scrolling.html
│ │ │ │ │ └── js
│ │ │ │ │ │ ├── dataTables.responsive.js
│ │ │ │ │ │ └── dataTables.responsive.min.js
│ │ │ │ ├── Scroller
│ │ │ │ │ ├── Readme.txt
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── dataTables.scroller.css
│ │ │ │ │ │ └── dataTables.scroller.min.css
│ │ │ │ │ ├── examples
│ │ │ │ │ │ ├── api_scrolling.html
│ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ ├── 2500.txt
│ │ │ │ │ │ │ └── ssp.php
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── large_js_source.html
│ │ │ │ │ │ ├── server-side_processing.html
│ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ └── state_saving.html
│ │ │ │ │ ├── images
│ │ │ │ │ │ └── loading-background.png
│ │ │ │ │ └── js
│ │ │ │ │ │ ├── dataTables.scroller.js
│ │ │ │ │ │ └── dataTables.scroller.min.js
│ │ │ │ └── TableTools
│ │ │ │ │ ├── Readme.md
│ │ │ │ │ ├── css
│ │ │ │ │ ├── dataTables.tableTools.css
│ │ │ │ │ └── dataTables.tableTools.min.css
│ │ │ │ │ ├── examples
│ │ │ │ │ ├── ajax.html
│ │ │ │ │ ├── alter_buttons.html
│ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ ├── button_text.html
│ │ │ │ │ ├── collection.html
│ │ │ │ │ ├── defaults.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── jqueryui.html
│ │ │ │ │ ├── multi_instance.html
│ │ │ │ │ ├── multiple_tables.html
│ │ │ │ │ ├── new_init.html
│ │ │ │ │ ├── pdf_message.html
│ │ │ │ │ ├── plug-in.html
│ │ │ │ │ ├── select_column.html
│ │ │ │ │ ├── select_multi.html
│ │ │ │ │ ├── select_os.html
│ │ │ │ │ ├── select_single.html
│ │ │ │ │ ├── simple.html
│ │ │ │ │ └── swf_path.html
│ │ │ │ │ ├── images
│ │ │ │ │ ├── collection.png
│ │ │ │ │ ├── collection_hover.png
│ │ │ │ │ ├── copy.png
│ │ │ │ │ ├── copy_hover.png
│ │ │ │ │ ├── csv.png
│ │ │ │ │ ├── csv_hover.png
│ │ │ │ │ ├── pdf.png
│ │ │ │ │ ├── pdf_hover.png
│ │ │ │ │ ├── print.png
│ │ │ │ │ ├── print_hover.png
│ │ │ │ │ ├── psd
│ │ │ │ │ │ ├── collection.psd
│ │ │ │ │ │ ├── copy document.psd
│ │ │ │ │ │ ├── file_types.psd
│ │ │ │ │ │ └── printer.psd
│ │ │ │ │ ├── xls.png
│ │ │ │ │ └── xls_hover.png
│ │ │ │ │ ├── js
│ │ │ │ │ ├── dataTables.tableTools.js
│ │ │ │ │ └── dataTables.tableTools.min.js
│ │ │ │ │ └── swf
│ │ │ │ │ ├── copy_csv_xls.swf
│ │ │ │ │ └── copy_csv_xls_pdf.swf
│ │ │ ├── images
│ │ │ │ ├── sort_asc.png
│ │ │ │ ├── sort_asc_disabled.png
│ │ │ │ ├── sort_both.png
│ │ │ │ ├── sort_desc.png
│ │ │ │ └── sort_desc_disabled.png
│ │ │ ├── jquery.dataTables.css
│ │ │ ├── jquery.dataTables.js
│ │ │ ├── jquery.dataTables.min.css
│ │ │ ├── jquery.dataTables.min.js
│ │ │ └── jquery.dataTables_themeroller.css
│ │ ├── 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-bs3.css
│ │ │ ├── daterangepicker.js
│ │ │ ├── moment.js
│ │ │ └── moment.min.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
│ │ ├── 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.0.min.js
│ │ ├── jQueryUI
│ │ │ ├── jquery-ui.js
│ │ │ └── jquery-ui.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
│ │ ├── morris
│ │ │ ├── morris.css
│ │ │ ├── morris.js
│ │ │ └── morris.min.js
│ │ ├── pace
│ │ │ ├── pace.css
│ │ │ ├── pace.js
│ │ │ ├── pace.min.css
│ │ │ └── pace.min.js
│ │ ├── select2
│ │ │ ├── i18n
│ │ │ │ ├── ar.js
│ │ │ │ ├── az.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de.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
│ │ │ │ ├── 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
│ │ ├── sparkline
│ │ │ ├── jquery.sparkline.js
│ │ │ └── jquery.sparkline.min.js
│ │ └── timepicker
│ │ │ ├── bootstrap-timepicker.css
│ │ │ ├── bootstrap-timepicker.js
│ │ │ ├── bootstrap-timepicker.min.css
│ │ │ └── bootstrap-timepicker.min.js
│ │ └── starter.html
└── views
│ ├── admin
│ ├── flash.blade.php
│ ├── index.blade.php
│ ├── sidebar.blade.php
│ ├── user
│ │ └── edit.blade.php
│ └── users.blade.php
│ ├── auth
│ ├── emails
│ │ └── password.blade.php
│ ├── login.blade.php
│ ├── passwords
│ │ ├── email.blade.php
│ │ └── reset.blade.php
│ ├── register.blade.php
│ └── social-logins.blade.php
│ ├── dashboard.blade.php
│ ├── emails
│ └── password.blade.php
│ ├── errors
│ └── 503.blade.php
│ ├── home.blade.php
│ ├── layouts
│ ├── admin.blade.php
│ └── main.blade.php
│ └── vendor
│ └── .gitkeep
├── server.php
├── storage
├── framework
│ ├── .gitignore
│ ├── cache
│ │ └── .gitignore
│ ├── sessions
│ │ └── .gitignore
│ └── views
│ │ └── .gitignore
└── logs
│ └── .gitignore
└── tests
├── HomepageTest.php
└── TestCase.php
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.less linguist-vendored
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /vendor
2 | /node_modules
3 | Homestead.yaml
4 | Homestead.json
5 | .env
6 | .DS_Store
7 | .idea
8 | tags
9 |
--------------------------------------------------------------------------------
/app/Console/Commands/Inspire.php:
--------------------------------------------------------------------------------
1 | comment(PHP_EOL.Inspiring::quote().PHP_EOL);
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/app/Console/Kernel.php:
--------------------------------------------------------------------------------
1 | command('inspire')
28 | ->hourly();
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/app/Events/Event.php:
--------------------------------------------------------------------------------
1 | middleware('auth');
18 | }
19 |
20 | /**
21 | * Show the application dashboard.
22 | *
23 | * @return \Illuminate\Http\Response
24 | */
25 | public function index()
26 | {
27 | return view('home');
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/app/Http/Middleware/CheckRole.php:
--------------------------------------------------------------------------------
1 | getRequiredRoleForRoute($request->route());
17 |
18 | if ($request->user()->hasRole($roles) || !$roles)
19 | {
20 | return $next($request);
21 | }
22 |
23 | return response(
24 | 'You are not authorized to access this resource'
25 | , 404);
26 | }
27 |
28 | private function getRequiredRoleForRoute($route)
29 | {
30 | $actions = $route->getAction();
31 | return isset($actions['roles']) ? $actions['roles'] : null;
32 | }
33 |
34 | }
--------------------------------------------------------------------------------
/app/Http/Middleware/EncryptCookies.php:
--------------------------------------------------------------------------------
1 | auth = $auth;
26 | }
27 |
28 | /**
29 | * Handle an incoming request.
30 | *
31 | * @param \Illuminate\Http\Request $request
32 | * @param \Closure $next
33 | * @return mixed
34 | */
35 | public function handle($request, Closure $next)
36 | {
37 | if ($this->auth->check()) {
38 | return redirect('/home');
39 | }
40 |
41 | return $next($request);
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/app/Http/Middleware/VerifyCsrfToken.php:
--------------------------------------------------------------------------------
1 | Thank you for contacting us
4 | @endsection
5 | @section('content')
6 |
7 |
8 |
Your enquiry has been sent. We'll jump on it and get back to you ASAP.
9 |
We promise!
10 |
11 |
12 |
13 |
14 | @endsection;
15 |
--------------------------------------------------------------------------------
/app/Modules/Contact/Views/emails/contactus.blade.php:
--------------------------------------------------------------------------------
1 | Hi
2 | {{ $name }} has sent a message from the contact us form on the website:
3 |
4 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/app/Modules/Contact/routes.php:
--------------------------------------------------------------------------------
1 | 'contact',
5 | 'namespace' => 'App\Modules\Contact\Controllers'
6 | ],
7 | function () {
8 | Route::get('/', ['as' => 'contact_index', 'uses' => 'IndexController@index']);
9 | Route::post('/', ['as' => 'contact_submit', 'uses' => 'IndexController@submit']);
10 | Route::get('/thank-you', ['as' => 'contact_thankyou', 'uses' => 'IndexController@thankyou']);
11 | });
12 |
--------------------------------------------------------------------------------
/app/Policies/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/app/Policies/.gitkeep
--------------------------------------------------------------------------------
/app/Providers/AppServiceProvider.php:
--------------------------------------------------------------------------------
1 | 'App\Policies\ModelPolicy',
17 | ];
18 |
19 | /**
20 | * Register any application authentication / authorization services.
21 | *
22 | * @param \Illuminate\Contracts\Auth\Access\Gate $gate
23 | * @return void
24 | */
25 | public function boot(GateContract $gate)
26 | {
27 | parent::registerPolicies($gate);
28 |
29 | //
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/app/Providers/EventServiceProvider.php:
--------------------------------------------------------------------------------
1 | [
17 | 'App\Listeners\EventListener',
18 | ],
19 | ];
20 |
21 | /**
22 | * Register any other events for your application.
23 | *
24 | * @param \Illuminate\Contracts\Events\Dispatcher $events
25 | * @return void
26 | */
27 | public function boot(DispatcherContract $events)
28 | {
29 | parent::boot($events);
30 |
31 | //
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/app/Role.php:
--------------------------------------------------------------------------------
1 | hasMany('App\User', 'role_id', 'id');
16 | }
17 |
18 | }
--------------------------------------------------------------------------------
/app/UserLogin.php:
--------------------------------------------------------------------------------
1 | [
5 | 'Contact' => [
6 | 'contact_recipient_name' => env('CONTACT_US_RECIPIENT_NAME', 'Fred Smith'),
7 | 'contact_recipient_email' => env('CONTACT_US_RECIPIENT_EMAIL', 'fred@example.com'),
8 | 'contact_subject' => env('CONTACT_US_SUBJECT', 'Contact Us Submission')
9 | ]
10 | ]
11 | ];
12 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 |
--------------------------------------------------------------------------------
/database/factories/ModelFactory.php:
--------------------------------------------------------------------------------
1 | define(App\User::class, function (Faker\Generator $faker) {
15 | return [
16 | 'name' => $faker->name,
17 | 'email' => $faker->email,
18 | 'password' => bcrypt(str_random(10)),
19 | 'remember_token' => str_random(10),
20 | ];
21 | });
22 |
--------------------------------------------------------------------------------
/database/migrations/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/database/migrations/.gitkeep
--------------------------------------------------------------------------------
/database/migrations/2016_07_09_00001_create_cache_table.php:
--------------------------------------------------------------------------------
1 | string('key')->unique();
17 | $table->text('value');
18 | $table->integer('expiration');
19 | });
20 | }
21 |
22 | /**
23 | * Reverse the migrations.
24 | *
25 | * @return void
26 | */
27 | public function down()
28 | {
29 | Schema::drop('cache');
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/database/migrations/2016_07_09_00003_create_roles_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
17 | $table->string('name', 40);
18 | $table->string('description', 255);
19 | $table->timestamps();
20 | });
21 |
22 | }
23 |
24 | /**
25 | * Reverse the migrations.
26 | *
27 | * @return void
28 | */
29 | public function down()
30 | {
31 | Schema::drop('roles');
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/database/migrations/2016_07_09_00004_create_password_resets_table.php:
--------------------------------------------------------------------------------
1 | string('email')->index();
17 | $table->string('token')->index();
18 | $table->timestamp('created_at')->useCurrent();
19 | });
20 | }
21 |
22 | /**
23 | * Reverse the migrations.
24 | *
25 | * @return void
26 | */
27 | public function down()
28 | {
29 | Schema::drop('password_resets');
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/database/seeds/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/database/seeds/.gitkeep
--------------------------------------------------------------------------------
/database/seeds/DatabaseSeeder.php:
--------------------------------------------------------------------------------
1 | call(RoleTableSeeder::class);
18 |
19 | Model::reguard();
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/gulpfile.js:
--------------------------------------------------------------------------------
1 | var elixir = require('laravel-elixir');
2 |
3 | /*
4 | |--------------------------------------------------------------------------
5 | | Elixir Asset Management
6 | |--------------------------------------------------------------------------
7 | |
8 | | Elixir provides a clean, fluent API for defining some basic Gulp tasks
9 | | for your Laravel application. By default, we are compiling the Sass
10 | | file for our application, as well as publishing vendor resources.
11 | |
12 | */
13 |
14 | elixir(function(mix) {
15 | mix.sass('app.scss');
16 | });
17 |
--------------------------------------------------------------------------------
/htg-admin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/htg-admin.png
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "private": true,
3 | "devDependencies": {
4 | "gulp": "^3.8.8"
5 | },
6 | "dependencies": {
7 | "laravel-elixir": "^3.0.0",
8 | "bootstrap-sass": "^3.0.0"
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/phpspec.yml:
--------------------------------------------------------------------------------
1 | suites:
2 | main:
3 | namespace: App
4 | psr4_prefix: App
5 | src_path: app
--------------------------------------------------------------------------------
/public/.htaccess:
--------------------------------------------------------------------------------
1 |
2 |
3 | Options -MultiViews
4 |
5 |
6 | RewriteEngine On
7 |
8 | # Redirect Trailing Slashes If Not A Folder...
9 | RewriteCond %{REQUEST_FILENAME} !-d
10 | RewriteRule ^(.*)/$ /$1 [L,R=301]
11 |
12 | # Handle Front Controller...
13 | RewriteCond %{REQUEST_FILENAME} !-d
14 | RewriteCond %{REQUEST_FILENAME} !-f
15 | RewriteRule ^ index.php [L]
16 |
17 |
--------------------------------------------------------------------------------
/public/css/htg.css:
--------------------------------------------------------------------------------
1 | .splash {
2 | padding: 4em 0 4em;
3 | background-color: #141d27;
4 | background-image: url(../img/bg-grass.jpg);
5 | background-size: cover;
6 | background-attachment: fixed;
7 | color: #fff;
8 | text-align: center;
9 | }
--------------------------------------------------------------------------------
/public/css/ie10-viewport-bug-workaround.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * IE10 viewport hack for Surface/desktop Windows 8 bug
3 | * Copyright 2014-2015 Twitter, Inc.
4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5 | */
6 |
7 | /*
8 | * See the Getting Started docs for more information:
9 | * http://getbootstrap.com/getting-started/#support-ie10-width
10 | */
11 | @-webkit-viewport { width: device-width; }
12 | @-moz-viewport { width: device-width; }
13 | @-ms-viewport { width: device-width; }
14 | @-o-viewport { width: device-width; }
15 | @viewport { width: device-width; }
16 |
--------------------------------------------------------------------------------
/public/css/sticky-footer-navbar.css:
--------------------------------------------------------------------------------
1 | /* Sticky footer styles
2 | -------------------------------------------------- */
3 | html {
4 | position: relative;
5 | min-height: 100%;
6 | }
7 | body {
8 | /* Margin bottom by footer height */
9 | margin-bottom: 60px;
10 | }
11 | .footer {
12 | position: absolute;
13 | bottom: 0;
14 | width: 100%;
15 | /* Set the fixed height of the footer here */
16 | height: 60px;
17 | background-color: #f5f5f5;
18 | }
19 |
20 |
21 | /* Custom page CSS
22 | -------------------------------------------------- */
23 | /* Not required for template or sticky footer method. */
24 |
25 | body > .container {
26 | padding: 60px 15px 0;
27 | }
28 | .container .text-muted {
29 | margin: 20px 0;
30 | }
31 |
32 | .footer > .container {
33 | padding-right: 15px;
34 | padding-left: 15px;
35 | }
36 |
37 | code {
38 | font-size: 80%;
39 | }
40 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/public/favicon.ico
--------------------------------------------------------------------------------
/public/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/public/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/public/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/public/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/public/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/public/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/public/js/ie10-viewport-bug-workaround.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * IE10 viewport hack for Surface/desktop Windows 8 bug
3 | * Copyright 2014-2015 Twitter, Inc.
4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5 | */
6 |
7 | // See the Getting Started docs for more information:
8 | // http://getbootstrap.com/getting-started/#support-ie10-width
9 |
10 | (function () {
11 | 'use strict';
12 |
13 | if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
14 | var msViewportStyle = document.createElement('style')
15 | msViewportStyle.appendChild(
16 | document.createTextNode(
17 | '@-ms-viewport{width:auto!important}'
18 | )
19 | )
20 | document.querySelector('head').appendChild(msViewportStyle)
21 | }
22 |
23 | })();
24 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/resources/assets/sass/app.scss:
--------------------------------------------------------------------------------
1 | // @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
2 |
3 |
--------------------------------------------------------------------------------
/resources/lang/en/auth.php:
--------------------------------------------------------------------------------
1 | 'These credentials do not match our records.',
17 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
18 |
19 | ];
20 |
--------------------------------------------------------------------------------
/resources/lang/en/pagination.php:
--------------------------------------------------------------------------------
1 | '« Previous',
17 | 'next' => 'Next »',
18 |
19 | ];
20 |
--------------------------------------------------------------------------------
/resources/lang/en/passwords.php:
--------------------------------------------------------------------------------
1 | 'Passwords must be at least six characters and match the confirmation.',
17 | 'reset' => 'Your password has been reset!',
18 | 'sent' => 'We have e-mailed your password reset link!',
19 | 'token' => 'This password reset token is invalid.',
20 | 'user' => "We can't find a user with that e-mail address.",
21 |
22 | ];
23 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/.gitignore:
--------------------------------------------------------------------------------
1 | *.DS_Store
2 | *.log
3 | *.zip
4 | .idea
5 | .sass-cache/
6 | /nbproject/
7 | /nbproject/private/
8 | /node_modules/
9 | ad.js
10 | TODO
11 | test.html
12 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "asi" : true,
3 | "browser" : true,
4 | "eqeqeq" : false,
5 | "eqnull" : true,
6 | "es3" : true,
7 | "expr" : true,
8 | "jquery" : true,
9 | "latedef" : "nofunc",
10 | "laxbreak" : true,
11 | "nonbsp" : true,
12 | "strict" : true,
13 | "undef" : true,
14 | "unused" : true,
15 | // External variabls and plugins
16 | "predef": [ "AdminLTEOptions", "FastClick", "moment", "Morris", "Chart" ]
17 | }
18 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/bootstrap/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/bootstrap/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/bootstrap/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/bootstrap/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/bootstrap/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/bootstrap/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/bootstrap/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/bootstrap/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/bootstrap/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')
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "AdminLTE",
3 | "homepage": "http://almsaeedstudio.com",
4 | "authors": [
5 | "Abdullah Almsaeed "
6 | ],
7 | "description": "Admin dashboard and control panel template",
8 | "main": [
9 | "index2.html",
10 | "dist/css/AdminLTE.css",
11 | "dist/js/app.js",
12 | "build/less/AdminLTE.less"
13 | ],
14 | "keywords": [
15 | "css",
16 | "js",
17 | "html",
18 | "template",
19 | "admin",
20 | "bootstrap",
21 | "theme",
22 | "backend",
23 | "responsive"
24 | ],
25 | "license": "MIT",
26 | "ignore": [
27 | "/.*",
28 | "node_modules",
29 | "bower_components",
30 | "composer.json",
31 | "documentation"
32 | ]
33 | }
34 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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 |
8 | .border-right-radius(@radius) {
9 | border-bottom-right-radius: @radius;
10 | border-top-right-radius: @radius;
11 | }
12 |
13 | .border-bottom-radius(@radius) {
14 | border-bottom-right-radius: @radius;
15 | border-bottom-left-radius: @radius;
16 | }
17 |
18 | .border-left-radius(@radius) {
19 | border-bottom-left-radius: @radius;
20 | border-top-left-radius: @radius;
21 | }
22 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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 (will be 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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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& {
8 | display: table !important;
9 | }
10 | tr& {
11 | display: table-row !important;
12 | }
13 | th&,
14 | td& {
15 | display: table-cell !important;
16 | }
17 | }
18 |
19 | .responsive-invisibility() {
20 | display: none !important;
21 | }
22 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/mixins/table-row.less:
--------------------------------------------------------------------------------
1 | // Tables
2 |
3 | .table-row-variant(@state; @background) {
4 | // Exact selectors below required to override `.table-striped` and prevent
5 | // inheritance to nested tables.
6 | .table > thead > tr,
7 | .table > tbody > tr,
8 | .table > tfoot > tr {
9 | > td.@{state},
10 | > th.@{state},
11 | &.@{state} > td,
12 | &.@{state} > th {
13 | background-color: @background;
14 | }
15 | }
16 |
17 | // Hover states for `.table-hover`
18 | // Note: this is not available for cells or rows within `thead` or `tfoot`.
19 | .table-hover > tbody > tr {
20 | > td.@{state}:hover,
21 | > th.@{state}:hover,
22 | &.@{state}:hover > td,
23 | &:hover > .@{state},
24 | &.@{state}:hover > th {
25 | background-color: darken(@background, 5%);
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/bootstrap-less/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/vendor/AdminLTE-2.3.3/build/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/vendor/AdminLTE-2.3.3/build/less/404_500_errors.less:
--------------------------------------------------------------------------------
1 | /*
2 | * Page: 400 and 500 error pages
3 | * ------------------------------
4 | */
5 | .error-page {
6 | width: 600px;
7 | margin: 20px auto 0 auto;
8 | @media (max-width: @screen-sm-max) {
9 | width: 100%;
10 | }
11 | //For the error number e.g: 404
12 | > .headline {
13 | float: left;
14 | font-size: 100px;
15 | font-weight: 300;
16 | @media (max-width: @screen-sm-max) {
17 | float: none;
18 | text-align: center;
19 | }
20 | }
21 | //For the message
22 | > .error-content {
23 | margin-left: 190px;
24 | @media (max-width: @screen-sm-max) {
25 | margin-left: 0;
26 | }
27 | > h3 {
28 | font-weight: 300;
29 | font-size: 25px;
30 | @media (max-width: @screen-sm-max) {
31 | text-align: center;
32 | }
33 | }
34 | display: block;
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/build/less/alerts.less:
--------------------------------------------------------------------------------
1 | /*
2 | * Component: alert
3 | * ----------------
4 | */
5 |
6 | .alert {
7 | .border-radius(3px);
8 | h4 {
9 | font-weight: 600;
10 | }
11 | .icon {
12 | margin-right: 10px;
13 | }
14 | .close {
15 | color: #000;
16 | .opacity(.2);
17 | &:hover {
18 | .opacity(.5);
19 | }
20 | }
21 | a {
22 | color: #fff;
23 | text-decoration: underline;
24 | }
25 | }
26 |
27 | //Alert Variants
28 | .alert-success {
29 | &:extend(.bg-green);
30 | border-color: darken(@green, 5%);
31 | }
32 |
33 | .alert-danger,
34 | .alert-error {
35 | &:extend(.bg-red);
36 | border-color: darken(@red, 5%);
37 | }
38 |
39 | .alert-warning {
40 | &:extend(.bg-yellow);
41 | border-color: darken(@yellow, 5%);
42 | }
43 |
44 | .alert-info {
45 | &:extend(.bg-aqua);
46 | border-color: darken(@aqua, 5%);
47 | }
48 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/build/less/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/vendor/AdminLTE-2.3.3/build/less/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/vendor/AdminLTE-2.3.3/build/less/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/vendor/AdminLTE-2.3.3/build/less/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/vendor/AdminLTE-2.3.3/build/less/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/vendor/AdminLTE-2.3.3/build/less/users-list.less:
--------------------------------------------------------------------------------
1 | /*
2 | * Component: Users List
3 | * ---------------------
4 | */
5 | .users-list {
6 | &:extend(.list-unstyled);
7 | > li {
8 | width: 25%;
9 | float: left;
10 | padding: 10px;
11 | text-align: center;
12 | img {
13 | .border-radius(50%);
14 | max-width: 100%;
15 | height: auto;
16 | }
17 | > a:hover {
18 | &,
19 | .users-list-name {
20 | color: #999;
21 | }
22 | }
23 | }
24 | }
25 |
26 | .users-list-name,
27 | .users-list-date {
28 | display: block;
29 | }
30 |
31 | .users-list-name {
32 | font-weight: 600;
33 | color: #444;
34 | overflow: hidden;
35 | white-space: nowrap;
36 | text-overflow: ellipsis;
37 | }
38 |
39 | .users-list-date {
40 | color: #999;
41 | font-size: 12px;
42 | }
43 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "almasaeed2010/adminlte",
3 | "description": "AdminLTE - admin control panel and dashboard that's based on Bootstrap 3",
4 | "homepage": "http://almsaeedstudio.com/",
5 | "keywords": [
6 | "css",
7 | "js",
8 | "less",
9 | "responsive",
10 | "back-end",
11 | "template",
12 | "theme",
13 | "web",
14 | "admin"
15 | ],
16 | "authors": [
17 | {
18 | "name": "Abdullah Almsaeed",
19 | "email": "support@almsaeedstudio.com"
20 | }
21 | ],
22 | "license": "MIT",
23 | "support": {
24 | "issues": "https://github.com/almasaeed2010/AdminLTE/issues"
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/avatar.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/avatar04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/avatar04.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/avatar2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/avatar2.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/avatar3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/avatar3.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/avatar5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/avatar5.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/boxed-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/boxed-bg.jpg
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/boxed-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/boxed-bg.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/credit/american-express.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/credit/american-express.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/credit/cirrus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/credit/cirrus.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/credit/mastercard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/credit/mastercard.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/credit/mestro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/credit/mestro.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/credit/paypal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/credit/paypal.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/credit/paypal2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/credit/paypal2.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/credit/visa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/credit/visa.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/default-50x50.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/default-50x50.gif
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/icons.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/photo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/photo1.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/photo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/photo2.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/photo3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/photo3.jpg
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/photo4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/photo4.jpg
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/user1-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/user1-128x128.jpg
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/user2-160x160.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/user2-160x160.jpg
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/user3-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/user3-128x128.jpg
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/user4-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/user4-128x128.jpg
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/user5-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/user5-128x128.jpg
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/user6-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/user6-128x128.jpg
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/user7-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/user7-128x128.jpg
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/dist/img/user8-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/dist/img/user8-128x128.jpg
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/documentation/build/include/browsers.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | AdminLTE supports the following browsers:
4 |
5 | - IE9+
6 | - Firefox (latest)
7 | - Safari (latest)
8 | - Chrome (latest)
9 | - Opera (latest)
10 |
11 | Note: IE9 does not support transitions or animations. The template will function properly but it won't use animations/transitions on IE9.
12 |
13 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/documentation/build/include/dependencies.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | AdminLTE depends on two main frameworks.
4 | The downloadable package contains both of these libraries, so you don't have to manually download them.
5 |
10 |
11 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/documentation/build/include/introduction.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | AdminLTE is a popular open source WebApp template for admin dashboards and control panels.
5 | It is a responsive HTML template that is based on the CSS framework Bootstrap 3.
6 | It utilizes all of the Bootstrap components in its design and re-styles many
7 | commonly used plugins to create a consistent design that can be used as a user
8 | interface for backend applications. AdminLTE is based on a modular design, which
9 | allows it to be easily customized and built upon. This documentation will guide you through
10 | installing the template and exploring the various components that are bundled with the template.
11 |
12 |
13 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/documentation/build/include/license.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | AdminLTE
4 |
5 | AdminLTE is an open source project that is licensed under the MIT license.
6 | This allows you to do pretty much anything you want as long as you include
7 | the copyright in "all copies or substantial portions of the Software."
8 | Attribution is not required (though very much appreciated).
9 |
10 |
11 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "admin-lte",
3 | "version": "2.3.3",
4 | "main": "dist/js/app.min.js",
5 | "repository": {
6 | "type": "git",
7 | "url": "git://github.com/almasaeed2010/AdminLTE.git"
8 | },
9 | "license": "MIT",
10 | "devDependencies": {
11 | "R2": "^1.4.3",
12 | "grunt": "~0.4.5",
13 | "grunt-bootlint": "^0.9.1",
14 | "grunt-contrib-clean": "^0.6.0",
15 | "grunt-contrib-csslint": "^0.5.0",
16 | "grunt-contrib-cssmin": "^0.12.2",
17 | "grunt-contrib-jshint": "^0.11.2",
18 | "grunt-contrib-less": "^0.12.0",
19 | "grunt-contrib-uglify": "^0.7.0",
20 | "grunt-contrib-watch": "~0.6.1",
21 | "grunt-cssjanus": "^0.2.4",
22 | "grunt-image": "^1.0.5",
23 | "grunt-includes": "^0.4.5"
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/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 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/icons.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/icons_hidpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/icons_hidpi.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/image/images/noimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/image/images/noimage.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/link/images/anchor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/link/images/anchor.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/link/images/hidpi/anchor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/link/images/hidpi/anchor.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/magicline/images/icon-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/magicline/images/icon-rtl.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/magicline/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/magicline/images/icon.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
2 | For licensing, see LICENSE.md or http://ckeditor.com/license
3 |
4 | cs.js Found: 118 Missing: 0
5 | cy.js Found: 118 Missing: 0
6 | de.js Found: 118 Missing: 0
7 | el.js Found: 16 Missing: 102
8 | eo.js Found: 118 Missing: 0
9 | et.js Found: 31 Missing: 87
10 | fa.js Found: 24 Missing: 94
11 | fi.js Found: 23 Missing: 95
12 | fr.js Found: 118 Missing: 0
13 | hr.js Found: 23 Missing: 95
14 | it.js Found: 118 Missing: 0
15 | nb.js Found: 118 Missing: 0
16 | nl.js Found: 118 Missing: 0
17 | no.js Found: 118 Missing: 0
18 | tr.js Found: 118 Missing: 0
19 | ug.js Found: 39 Missing: 79
20 | zh-cn.js Found: 118 Missing: 0
21 |
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/img/github-top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/img/github-top.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/img/header-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/img/header-bg.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/img/header-separator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/img/header-separator.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/img/logo.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/img/navigation-tip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/img/navigation-tip.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/old/assets/inlineall/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/old/assets/inlineall/logo.png
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/old/assets/sample.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/old/assets/sample.jpg
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/euperia/htg-laravel/ca6b6d0fa2ed300dd291d977b5ff8795a3315c7a/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf
--------------------------------------------------------------------------------
/resources/vendor/AdminLTE-2.3.3/plugins/ckeditor/samples/old/sample_posteddata.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | -------------------------------------------------------------------------------------------
4 | CKEditor - Posted Data
5 |
6 | We are sorry, but your Web server does not support the PHP language used in this script.
7 |
8 | Please note that CKEditor can be used with any other server-side language than just PHP.
9 | To save the content created with CKEditor you need to read the POST data on the server
10 | side and write it to a file or the database.
11 |
12 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
13 | For licensing, see LICENSE.md or http://ckeditor.com/license
14 | -------------------------------------------------------------------------------------------
15 |
16 |