├── .env.dusk.local
├── .env.example
├── .env.testing
├── .gitattributes
├── .gitignore
├── .travis.yml
├── app
├── Console
│ └── Kernel.php
├── Engagement.php
├── Exceptions
│ └── Handler.php
├── Http
│ ├── Controllers
│ │ ├── Admin
│ │ │ ├── CsvImportController.php
│ │ │ ├── EngagementsController.php
│ │ │ ├── PermissionsController.php
│ │ │ ├── ReportsController.php
│ │ │ ├── RolesController.php
│ │ │ └── UsersController.php
│ │ ├── Auth
│ │ │ ├── ChangePasswordController.php
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── LoginController.php
│ │ │ ├── RegisterController.php
│ │ │ └── ResetPasswordController.php
│ │ ├── Controller.php
│ │ ├── HomeController.php
│ │ └── Traits
│ │ │ └── FileUploadTrait.php
│ ├── Kernel.php
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── RedirectIfAuthenticated.php
│ │ ├── TrimStrings.php
│ │ ├── TrustProxies.php
│ │ └── VerifyCsrfToken.php
│ └── Requests
│ │ └── Admin
│ │ ├── StoreEngagementsRequest.php
│ │ ├── StorePermissionsRequest.php
│ │ ├── StoreRolesRequest.php
│ │ ├── StoreUsersRequest.php
│ │ ├── UpdateEngagementsRequest.php
│ │ ├── UpdatePermissionsRequest.php
│ │ ├── UpdateRolesRequest.php
│ │ └── UpdateUsersRequest.php
├── Permission.php
├── Providers
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── BroadcastServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
├── Role.php
└── User.php
├── artisan
├── bootstrap
├── app.php
└── cache
│ └── .gitignore
├── composer.json
├── composer.lock
├── config
├── app.php
├── auth.php
├── broadcasting.php
├── cache.php
├── database.php
├── filesystems.php
├── hashing.php
├── logging.php
├── mail.php
├── queue.php
├── services.php
├── session.php
└── view.php
├── database
├── .gitignore
├── factories
│ ├── EngagementFactory.php
│ ├── PermissionFactory.php
│ ├── RoleFactory.php
│ └── UserFactory.php
├── migrations
│ ├── 2014_10_12_000000_create_users_table.php
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2018_05_01_143330_create_1525174410_permissions_table.php
│ ├── 2018_05_01_143334_create_1525174414_roles_table.php
│ ├── 2018_05_01_143338_create_5ae85093b48fc_permission_role_table.php
│ ├── 2018_05_01_143342_create_1525174422_users_table.php
│ ├── 2018_05_01_143346_create_5ae8509c2b770_role_user_table.php
│ ├── 2018_05_01_143454_create_1525174494_engagements_table.php
│ └── combined
│ │ ├── 2018_05_01_143527_create_combined_1525174410_permissions_table.php
│ │ ├── 2018_05_01_143527_create_combined_1525174414_roles_table.php
│ │ ├── 2018_05_01_143528_create_combined_1525174422_users_table.php
│ │ ├── 2018_05_01_143528_create_combined_1525174494_engagements_table.php
│ │ ├── 2018_05_01_143531_create_5ae8510006fea_permission_role_table.php
│ │ └── 2018_05_01_143531_create_5ae8510008bf2_role_user_table.php
└── seeds
│ ├── DatabaseSeeder.php
│ ├── PermissionSeed.php
│ ├── RoleSeed.php
│ ├── RoleSeedPivot.php
│ ├── UserSeed.php
│ └── UserSeedPivot.php
├── package.json
├── phpunit.xml
├── public
├── .htaccess
├── adminlte
│ ├── bootstrap
│ │ ├── css
│ │ │ ├── bootstrap-theme.css
│ │ │ ├── bootstrap-theme.css.map
│ │ │ ├── bootstrap-theme.min.css
│ │ │ ├── bootstrap-theme.min.css.map
│ │ │ ├── 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
│ ├── css
│ │ ├── AdminLTE.css
│ │ ├── AdminLTE.min.css
│ │ ├── alt
│ │ │ ├── AdminLTE-bootstrap-social.css
│ │ │ ├── AdminLTE-bootstrap-social.min.css
│ │ │ ├── AdminLTE-fullcalendar.css
│ │ │ ├── AdminLTE-fullcalendar.min.css
│ │ │ ├── AdminLTE-select2.css
│ │ │ ├── AdminLTE-select2.min.css
│ │ │ ├── AdminLTE-without-plugins.css
│ │ │ └── AdminLTE-without-plugins.min.css
│ │ ├── custom.css
│ │ ├── select2.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
│ │ ├── bootstrap.min.js
│ │ ├── demo.js
│ │ ├── main.js
│ │ ├── mapInput.js
│ │ ├── pages
│ │ │ ├── dashboard.js
│ │ │ └── dashboard2.js
│ │ ├── select2.full.min.js
│ │ ├── textext.core.js
│ │ ├── textext.plugin.tags.js
│ │ ├── timepicker.js
│ │ ├── vue.js
│ │ └── vue.min.js
│ └── 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
│ │ │ │ ├── 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.css
│ │ ├── daterangepicker.js
│ │ ├── moment.js
│ │ └── moment.min.js
│ │ ├── datetimepicker
│ │ ├── bootstrap-datetimepicker.min.css
│ │ ├── bootstrap-datetimepicker.min.js
│ │ └── moment-with-locales.min.js
│ │ ├── fa_picker
│ │ ├── css
│ │ │ ├── fontawesome-iconpicker.css
│ │ │ └── fontawesome-iconpicker.min.css
│ │ └── js
│ │ │ ├── fontawesome-iconpicker.js
│ │ │ └── fontawesome-iconpicker.min.js
│ │ ├── fastclick
│ │ ├── fastclick.js
│ │ └── fastclick.min.js
│ │ ├── fileUpload
│ │ ├── css
│ │ │ ├── demo-ie8.css
│ │ │ ├── demo.css
│ │ │ ├── jquery.fileupload-noscript.css
│ │ │ ├── jquery.fileupload-ui-noscript.css
│ │ │ ├── jquery.fileupload-ui.css
│ │ │ ├── jquery.fileupload.css
│ │ │ └── style.css
│ │ ├── img
│ │ │ ├── loading.gif
│ │ │ └── progressbar.gif
│ │ └── js
│ │ │ ├── app.js
│ │ │ ├── cors
│ │ │ ├── jquery.postmessage-transport.js
│ │ │ └── jquery.xdr-transport.js
│ │ │ ├── jquery.fileupload-angular.js
│ │ │ ├── jquery.fileupload-audio.js
│ │ │ ├── jquery.fileupload-image.js
│ │ │ ├── jquery.fileupload-jquery-ui.js
│ │ │ ├── jquery.fileupload-process.js
│ │ │ ├── jquery.fileupload-ui.js
│ │ │ ├── jquery.fileupload-validate.js
│ │ │ ├── jquery.fileupload-video.js
│ │ │ ├── jquery.fileupload.js
│ │ │ ├── jquery.iframe-transport.js
│ │ │ ├── main.js
│ │ │ └── vendor
│ │ │ └── jquery.ui.widget.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.3.min.js
│ │ ├── jQueryUI
│ │ ├── jquery-ui.js
│ │ └── jquery-ui.min.js
│ │ ├── jqueryvalidation
│ │ ├── additional-methods.js
│ │ ├── additional-methods.min.js
│ │ ├── jquery.validate.js
│ │ ├── jquery.validate.min.js
│ │ └── localization
│ │ │ ├── messages_ar.js
│ │ │ ├── messages_ar.min.js
│ │ │ ├── messages_bg.js
│ │ │ ├── messages_bg.min.js
│ │ │ ├── messages_bn_BD.js
│ │ │ ├── messages_bn_BD.min.js
│ │ │ ├── messages_ca.js
│ │ │ ├── messages_ca.min.js
│ │ │ ├── messages_cs.js
│ │ │ ├── messages_cs.min.js
│ │ │ ├── messages_da.js
│ │ │ ├── messages_da.min.js
│ │ │ ├── messages_de.js
│ │ │ ├── messages_de.min.js
│ │ │ ├── messages_el.js
│ │ │ ├── messages_el.min.js
│ │ │ ├── messages_es.js
│ │ │ ├── messages_es.min.js
│ │ │ ├── messages_es_AR.js
│ │ │ ├── messages_es_AR.min.js
│ │ │ ├── messages_es_PE.js
│ │ │ ├── messages_es_PE.min.js
│ │ │ ├── messages_et.js
│ │ │ ├── messages_et.min.js
│ │ │ ├── messages_eu.js
│ │ │ ├── messages_eu.min.js
│ │ │ ├── messages_fa.js
│ │ │ ├── messages_fa.min.js
│ │ │ ├── messages_fi.js
│ │ │ ├── messages_fi.min.js
│ │ │ ├── messages_fr.js
│ │ │ ├── messages_fr.min.js
│ │ │ ├── messages_ge.js
│ │ │ ├── messages_ge.min.js
│ │ │ ├── messages_gl.js
│ │ │ ├── messages_gl.min.js
│ │ │ ├── messages_he.js
│ │ │ ├── messages_he.min.js
│ │ │ ├── messages_hr.js
│ │ │ ├── messages_hr.min.js
│ │ │ ├── messages_hu.js
│ │ │ ├── messages_hu.min.js
│ │ │ ├── messages_hy_AM.js
│ │ │ ├── messages_hy_AM.min.js
│ │ │ ├── messages_id.js
│ │ │ ├── messages_id.min.js
│ │ │ ├── messages_is.js
│ │ │ ├── messages_is.min.js
│ │ │ ├── messages_it.js
│ │ │ ├── messages_it.min.js
│ │ │ ├── messages_ja.js
│ │ │ ├── messages_ja.min.js
│ │ │ ├── messages_ka.js
│ │ │ ├── messages_ka.min.js
│ │ │ ├── messages_kk.js
│ │ │ ├── messages_kk.min.js
│ │ │ ├── messages_ko.js
│ │ │ ├── messages_ko.min.js
│ │ │ ├── messages_lt.js
│ │ │ ├── messages_lt.min.js
│ │ │ ├── messages_lv.js
│ │ │ ├── messages_lv.min.js
│ │ │ ├── messages_mk.js
│ │ │ ├── messages_mk.min.js
│ │ │ ├── messages_my.js
│ │ │ ├── messages_my.min.js
│ │ │ ├── messages_nl.js
│ │ │ ├── messages_nl.min.js
│ │ │ ├── messages_no.js
│ │ │ ├── messages_no.min.js
│ │ │ ├── messages_pl.js
│ │ │ ├── messages_pl.min.js
│ │ │ ├── messages_pt_BR.js
│ │ │ ├── messages_pt_BR.min.js
│ │ │ ├── messages_pt_PT.js
│ │ │ ├── messages_pt_PT.min.js
│ │ │ ├── messages_ro.js
│ │ │ ├── messages_ro.min.js
│ │ │ ├── messages_ru.js
│ │ │ ├── messages_ru.min.js
│ │ │ ├── messages_si.js
│ │ │ ├── messages_si.min.js
│ │ │ ├── messages_sk.js
│ │ │ ├── messages_sk.min.js
│ │ │ ├── messages_sl.js
│ │ │ ├── messages_sl.min.js
│ │ │ ├── messages_sr.js
│ │ │ ├── messages_sr.min.js
│ │ │ ├── messages_sr_lat.js
│ │ │ ├── messages_sr_lat.min.js
│ │ │ ├── messages_sv.js
│ │ │ ├── messages_sv.min.js
│ │ │ ├── messages_th.js
│ │ │ ├── messages_th.min.js
│ │ │ ├── messages_tj.js
│ │ │ ├── messages_tj.min.js
│ │ │ ├── messages_tr.js
│ │ │ ├── messages_tr.min.js
│ │ │ ├── messages_uk.js
│ │ │ ├── messages_uk.min.js
│ │ │ ├── messages_vi.js
│ │ │ ├── messages_vi.min.js
│ │ │ ├── messages_zh.js
│ │ │ ├── messages_zh.min.js
│ │ │ ├── messages_zh_TW.js
│ │ │ ├── messages_zh_TW.min.js
│ │ │ ├── methods_de.js
│ │ │ ├── methods_de.min.js
│ │ │ ├── methods_es_CL.js
│ │ │ ├── methods_es_CL.min.js
│ │ │ ├── methods_fi.js
│ │ │ ├── methods_fi.min.js
│ │ │ ├── methods_nl.js
│ │ │ ├── methods_nl.min.js
│ │ │ ├── methods_pt.js
│ │ │ └── methods_pt.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
│ │ │ ├── el.js
│ │ │ ├── en.js
│ │ │ ├── es.js
│ │ │ ├── et.js
│ │ │ ├── eu.js
│ │ │ ├── fa.js
│ │ │ ├── fi.js
│ │ │ ├── fr.js
│ │ │ ├── gl.js
│ │ │ ├── he.js
│ │ │ ├── hi.js
│ │ │ ├── hr.js
│ │ │ ├── hu.js
│ │ │ ├── id.js
│ │ │ ├── is.js
│ │ │ ├── it.js
│ │ │ ├── ja.js
│ │ │ ├── km.js
│ │ │ ├── ko.js
│ │ │ ├── lt.js
│ │ │ ├── lv.js
│ │ │ ├── mk.js
│ │ │ ├── ms.js
│ │ │ ├── nb.js
│ │ │ ├── nl.js
│ │ │ ├── pl.js
│ │ │ ├── pt-BR.js
│ │ │ ├── pt.js
│ │ │ ├── ro.js
│ │ │ ├── ru.js
│ │ │ ├── sk.js
│ │ │ ├── sr-Cyrl.js
│ │ │ ├── sr.js
│ │ │ ├── sv.js
│ │ │ ├── th.js
│ │ │ ├── tr.js
│ │ │ ├── uk.js
│ │ │ ├── vi.js
│ │ │ ├── zh-CN.js
│ │ │ └── zh-TW.js
│ │ ├── select2.css
│ │ ├── select2.full.js
│ │ ├── select2.full.min.js
│ │ ├── select2.js
│ │ ├── select2.min.css
│ │ └── select2.min.js
│ │ ├── slimScroll
│ │ ├── jquery.slimscroll.js
│ │ └── jquery.slimscroll.min.js
│ │ ├── sparkline
│ │ ├── jquery.sparkline.js
│ │ └── jquery.sparkline.min.js
│ │ └── timepicker
│ │ ├── bootstrap-timepicker.css
│ │ ├── bootstrap-timepicker.js
│ │ ├── bootstrap-timepicker.min.css
│ │ └── bootstrap-timepicker.min.js
├── css
│ └── app.css
├── favicon.ico
├── index.php
├── js
│ └── app.js
├── robots.txt
└── web.config
├── readme.md
├── resources
├── assets
│ ├── js
│ │ ├── app.js
│ │ ├── bootstrap.js
│ │ └── components
│ │ │ └── ExampleComponent.vue
│ └── sass
│ │ ├── _variables.scss
│ │ └── app.scss
├── lang
│ └── en
│ │ ├── auth.php
│ │ ├── global.php
│ │ ├── pagination.php
│ │ ├── passwords.php
│ │ └── validation.php
└── views
│ ├── actionsTemplate.blade.php
│ ├── admin
│ ├── engagements
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── permissions
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── reports.blade.php
│ ├── roles
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ └── users
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── auth
│ ├── change_password.blade.php
│ ├── emails
│ │ └── password.blade.php
│ ├── login.blade.php
│ └── passwords
│ │ ├── email.blade.php
│ │ └── reset.blade.php
│ ├── csvImport
│ ├── modal.blade.php
│ └── parse_import.blade.php
│ ├── errors
│ └── 503.blade.php
│ ├── home.blade.php
│ ├── layouts
│ ├── app.blade.php
│ └── auth.blade.php
│ ├── partials
│ ├── head.blade.php
│ ├── header.blade.php
│ ├── javascripts.blade.php
│ ├── sidebar.blade.php
│ └── topbar.blade.php
│ ├── restoreTemplate.blade.php
│ ├── vendor
│ └── .gitkeep
│ └── welcome.blade.php
├── routes
├── api.php
├── channels.php
├── console.php
└── web.php
├── server.php
├── storage
├── app
│ ├── .gitignore
│ └── public
│ │ └── .gitignore
├── framework
│ ├── .gitignore
│ ├── cache
│ │ └── .gitignore
│ ├── sessions
│ │ └── .gitignore
│ ├── testing
│ │ └── .gitignore
│ └── views
│ │ └── .gitignore
└── logs
│ └── .gitignore
├── tests
├── Browser
│ ├── EngagementTest.php
│ ├── PermissionTest.php
│ ├── RoleTest.php
│ └── UserTest.php
├── CreatesApplication.php
├── DuskTestCase.php
├── Feature
│ └── ExampleTest.php
├── TestCase.php
└── Unit
│ └── ExampleTest.php
└── webpack.mix.js
/.env.dusk.local:
--------------------------------------------------------------------------------
1 | APP_NAME=Laravel
2 | APP_ENV=local
3 | APP_KEY=base64:xAFx5Utad3VCd8m/WvQPitQK5dinSraiOdVlWiAJl0o=
4 | APP_DEBUG=true
5 | APP_URL=http://god.local/
6 |
7 | LOG_CHANNEL=stack
8 |
9 | DB_CONNECTION=mysql
10 | DB_HOST=127.0.0.1
11 | DB_PORT=3306
12 | DB_DATABASE=god_test
13 | DB_USERNAME=root
14 | DB_PASSWORD=
15 |
16 | BROADCAST_DRIVER=log
17 | CACHE_DRIVER=file
18 | SESSION_DRIVER=file
19 | SESSION_LIFETIME=120
20 | QUEUE_DRIVER=sync
21 |
22 | REDIS_HOST=127.0.0.1
23 | REDIS_PASSWORD=null
24 | REDIS_PORT=6379
25 |
26 | MAIL_DRIVER=smtp
27 | MAIL_HOST=smtp.mailtrap.io
28 | MAIL_PORT=2525
29 | MAIL_USERNAME=null
30 | MAIL_PASSWORD=null
31 | MAIL_ENCRYPTION=null
32 |
33 | PUSHER_APP_ID=
34 | PUSHER_APP_KEY=
35 | PUSHER_APP_SECRET=
36 | PUSHER_APP_CLUSTER=mt1
37 |
38 | MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
39 | MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
40 |
--------------------------------------------------------------------------------
/.env.example:
--------------------------------------------------------------------------------
1 | APP_NAME=Laravel
2 | APP_ENV=local
3 | APP_KEY=
4 | APP_DEBUG=true
5 | APP_URL=http://localhost
6 |
7 | LOG_CHANNEL=stack
8 |
9 | DB_CONNECTION=mysql
10 | DB_HOST=127.0.0.1
11 | DB_PORT=3306
12 | DB_DATABASE=homestead
13 | DB_USERNAME=homestead
14 | DB_PASSWORD=secret
15 |
16 | BROADCAST_DRIVER=log
17 | CACHE_DRIVER=file
18 | SESSION_DRIVER=file
19 | SESSION_LIFETIME=120
20 | QUEUE_DRIVER=sync
21 |
22 | REDIS_HOST=127.0.0.1
23 | REDIS_PASSWORD=null
24 | REDIS_PORT=6379
25 |
26 | MAIL_DRIVER=smtp
27 | MAIL_HOST=smtp.mailtrap.io
28 | MAIL_PORT=2525
29 | MAIL_USERNAME=null
30 | MAIL_PASSWORD=null
31 | MAIL_ENCRYPTION=null
32 |
33 | PUSHER_APP_ID=
34 | PUSHER_APP_KEY=
35 | PUSHER_APP_SECRET=
36 | PUSHER_APP_CLUSTER=mt1
37 |
38 | MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
39 | MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
40 |
41 | TOGGL_API_KEY=
42 |
--------------------------------------------------------------------------------
/.env.testing:
--------------------------------------------------------------------------------
1 | APP_NAME=Laravel
2 | APP_ENV=testing
3 | APP_KEY=base64:ysL52+GHZ00QapN3TIC+X05iE40RTDm30iXHNYBGy7Q=
4 | APP_DEBUG=false
5 | APP_URL=http://localhost:8000
6 |
7 | DB_CONNECTION=mysql
8 | DB_HOST=127.0.0.1
9 | DB_PORT=3306
10 | DB_DATABASE=homestead_test
11 | DB_USERNAME=root
12 | DB_PASSWORD=
13 |
14 | BROADCAST_DRIVER=log
15 | CACHE_DRIVER=file
16 | SESSION_DRIVER=file
17 | QUEUE_DRIVER=sync
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 | *.js linguist-vendored
5 | CHANGELOG.md export-ignore
6 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 | /public/hot
3 | /public/storage
4 | /storage/*.key
5 | /vendor
6 | /.idea
7 | /.vscode
8 | /.vagrant
9 | Homestead.json
10 | Homestead.yaml
11 | npm-debug.log
12 | yarn-error.log
13 | .env
14 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: php
2 | sudo: required
3 | dist: trusty
4 |
5 | php:
6 | - 7.1
7 |
8 |
9 | services:
10 | - mysql
11 |
12 | addons:
13 | apt:
14 | sources:
15 | - mysql-5.7-trusty
16 | packages:
17 | - mysql-server
18 |
19 | dist: trusty
20 | sudo: required
21 |
22 | before_install:
23 | - mysql -e 'CREATE DATABASE homestead_test;'
24 |
25 | before_script:
26 | - cp .env.testing .env
27 | - composer self-update
28 | - composer install --no-interaction
29 | - export DISPLAY=:99.0
30 | - sh -e /etc/init.d/xvfb start
31 | - chmod a+x ./vendor/laravel/dusk/bin/chromedriver-linux
32 | - ./vendor/laravel/dusk/bin/chromedriver-linux &
33 | - cp .env.testing .env
34 | - php artisan serve > /dev/null 2>&1 &
35 |
36 | script:
37 | - vendor/bin/phpunit
38 | - php artisan dusk
--------------------------------------------------------------------------------
/app/Http/Controllers/Controller.php:
--------------------------------------------------------------------------------
1 | check()) {
21 | return redirect('/admin/home');
22 | }
23 |
24 | return $next($request);
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/app/Http/Middleware/TrimStrings.php:
--------------------------------------------------------------------------------
1 | 'required',
27 | ];
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/app/Http/Requests/Admin/StoreRolesRequest.php:
--------------------------------------------------------------------------------
1 | 'required',
27 | 'permission' => 'required',
28 | 'permission.*' => 'exists:permissions,id',
29 | ];
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/app/Http/Requests/Admin/StoreUsersRequest.php:
--------------------------------------------------------------------------------
1 | 'required',
27 | 'email' => 'required|email|unique:users,email',
28 | 'password' => 'required',
29 | 'role' => 'required',
30 | 'role.*' => 'exists:roles,id',
31 | ];
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/app/Http/Requests/Admin/UpdatePermissionsRequest.php:
--------------------------------------------------------------------------------
1 | 'required',
28 | ];
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/app/Http/Requests/Admin/UpdateRolesRequest.php:
--------------------------------------------------------------------------------
1 | 'required',
28 | 'permission' => 'required',
29 | 'permission.*' => 'exists:permissions,id',
30 | ];
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/app/Http/Requests/Admin/UpdateUsersRequest.php:
--------------------------------------------------------------------------------
1 | 'required',
28 | 'email' => 'required|email|unique:users,email,'.$this->route('user'),
29 | 'role' => 'required',
30 | 'role.*' => 'exists:roles,id',
31 | ];
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/app/Permission.php:
--------------------------------------------------------------------------------
1 | app->environment('local', 'testing')) {
33 | $this->app->register(DuskServiceProvider::class);
34 | }
35 |
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/app/Providers/BroadcastServiceProvider.php:
--------------------------------------------------------------------------------
1 | [
17 | 'App\Listeners\EventListener',
18 | ],
19 | ];
20 |
21 | /**
22 | * Register any events for your application.
23 | *
24 | * @return void
25 | */
26 | public function boot()
27 | {
28 | parent::boot();
29 |
30 | //
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/app/Role.php:
--------------------------------------------------------------------------------
1 | belongsToMany(Permission::class, 'permission_role');
22 | }
23 |
24 | }
25 |
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 |
--------------------------------------------------------------------------------
/database/factories/EngagementFactory.php:
--------------------------------------------------------------------------------
1 | define(App\Engagement::class, function (Faker\Generator $faker) {
4 | return [
5 | "stats_date" => $faker->date("Y-m-d", $max = 'now'),
6 | "fans" => $faker->randomNumber(2),
7 | "engagements" => $faker->randomNumber(2),
8 | "reactions" => $faker->randomNumber(2),
9 | "comments" => $faker->randomNumber(2),
10 | "shares" => $faker->randomNumber(2),
11 | ];
12 | });
13 |
--------------------------------------------------------------------------------
/database/factories/PermissionFactory.php:
--------------------------------------------------------------------------------
1 | define(App\Permission::class, function (Faker\Generator $faker) {
4 | return [
5 | "title" => $faker->name,
6 | ];
7 | });
8 |
--------------------------------------------------------------------------------
/database/factories/RoleFactory.php:
--------------------------------------------------------------------------------
1 | define(App\Role::class, function (Faker\Generator $faker) {
4 | return [
5 | "title" => $faker->name,
6 | ];
7 | });
8 |
--------------------------------------------------------------------------------
/database/factories/UserFactory.php:
--------------------------------------------------------------------------------
1 | define(App\User::class, function (Faker\Generator $faker) {
4 | return [
5 | "name" => $faker->name,
6 | "email" => $faker->safeEmail,
7 | "password" => str_random(10),
8 | "remember_token" => $faker->name,
9 | ];
10 | });
11 |
--------------------------------------------------------------------------------
/database/migrations/2014_10_12_000000_create_users_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
18 | $table->string('name');
19 | $table->string('email')->unique();
20 | $table->string('password');
21 | $table->rememberToken();
22 | $table->timestamps();
23 | });
24 | }
25 |
26 | /**
27 | * Reverse the migrations.
28 | *
29 | * @return void
30 | */
31 | public function down()
32 | {
33 | Schema::dropIfExists('users');
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/database/migrations/2014_10_12_100000_create_password_resets_table.php:
--------------------------------------------------------------------------------
1 | string('email')->index();
18 | $table->string('token');
19 | $table->timestamp('created_at')->nullable();
20 | });
21 | }
22 |
23 | /**
24 | * Reverse the migrations.
25 | *
26 | * @return void
27 | */
28 | public function down()
29 | {
30 | Schema::dropIfExists('password_resets');
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/database/migrations/2018_05_01_143330_create_1525174410_permissions_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
18 | $table->string('title');
19 |
20 | $table->timestamps();
21 |
22 | });
23 | }
24 | }
25 |
26 | /**
27 | * Reverse the migrations.
28 | *
29 | * @return void
30 | */
31 | public function down()
32 | {
33 | Schema::dropIfExists('permissions');
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/database/migrations/2018_05_01_143334_create_1525174414_roles_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
18 | $table->string('title');
19 |
20 | $table->timestamps();
21 |
22 | });
23 | }
24 | }
25 |
26 | /**
27 | * Reverse the migrations.
28 | *
29 | * @return void
30 | */
31 | public function down()
32 | {
33 | Schema::dropIfExists('roles');
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/database/migrations/combined/2018_05_01_143527_create_combined_1525174410_permissions_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
18 | $table->string('title');
19 |
20 | $table->timestamps();
21 |
22 | });
23 | }
24 | }
25 |
26 | /**
27 | * Reverse the migrations.
28 | *
29 | * @return void
30 | */
31 | public function down()
32 | {
33 | Schema::dropIfExists('permissions');
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/database/migrations/combined/2018_05_01_143527_create_combined_1525174414_roles_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
18 | $table->string('title');
19 |
20 | $table->timestamps();
21 |
22 | });
23 | }
24 | }
25 |
26 | /**
27 | * Reverse the migrations.
28 | *
29 | * @return void
30 | */
31 | public function down()
32 | {
33 | Schema::dropIfExists('roles');
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/database/seeds/DatabaseSeeder.php:
--------------------------------------------------------------------------------
1 | call(PermissionSeed::class);
16 | $this->call(RoleSeed::class);
17 | $this->call(UserSeed::class);
18 | $this->call(RoleSeedPivot::class);
19 | $this->call(UserSeedPivot::class);
20 |
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/database/seeds/RoleSeed.php:
--------------------------------------------------------------------------------
1 | 1, 'title' => 'Administrator (can create other users)',],
17 | ['id' => 2, 'title' => 'Simple user',],
18 |
19 | ];
20 |
21 | foreach ($items as $item) {
22 | \App\Role::create($item);
23 | }
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/database/seeds/RoleSeedPivot.php:
--------------------------------------------------------------------------------
1 | [
17 | 'permission' => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25],
18 | ],
19 | 2 => [
20 | 'permission' => [21, 22, 23, 24, 25],
21 | ],
22 |
23 | ];
24 |
25 | foreach ($items as $id => $item) {
26 | $role = \App\Role::find($id);
27 |
28 | foreach ($item as $key => $ids) {
29 | $role->{$key}()->sync($ids);
30 | }
31 | }
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/database/seeds/UserSeed.php:
--------------------------------------------------------------------------------
1 | 1, 'name' => 'Admin', 'email' => 'admin@admin.com', 'password' => '$2y$10$ej0wwB/GmNHAaGGpzD5ACO1E3MyoeRHjy0geg/qQnZxqVrH/BoC6u', 'remember_token' => '',],
17 |
18 | ];
19 |
20 | foreach ($items as $item) {
21 | \App\User::create($item);
22 | }
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/database/seeds/UserSeedPivot.php:
--------------------------------------------------------------------------------
1 | [
17 | 'role' => [1],
18 | ],
19 |
20 | ];
21 |
22 | foreach ($items as $id => $item) {
23 | $user = \App\User::find($id);
24 |
25 | foreach ($item as $key => $ids) {
26 | $user->{$key}()->sync($ids);
27 | }
28 | }
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/public/.htaccess:
--------------------------------------------------------------------------------
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 |