├── .env.example ├── .gitattributes ├── .gitignore ├── .idea ├── blade.xml ├── copyright │ └── profiles_settings.xml ├── jsLibraryMappings.xml ├── libraries │ └── pMS_node_modules.xml ├── misc.xml ├── modules.xml ├── pMS.iml └── workspace.xml ├── README.md ├── app ├── Collaboration.php ├── Console │ ├── Commands │ │ └── Inspire.php │ └── Kernel.php ├── Cout.php ├── Events │ └── Event.php ├── Exceptions │ └── Handler.php ├── File.php ├── Historic.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── AuthController.php │ │ │ └── PasswordController.php │ │ ├── Controller.php │ │ ├── HomeController.php │ │ ├── adminController.php │ │ ├── applyController.php │ │ ├── calendarController.php │ │ ├── collaborationsController.php │ │ ├── exportController.php │ │ ├── messagesController.php │ │ ├── milestonesController.php │ │ ├── projectsController.php │ │ ├── public │ │ │ └── img │ │ │ │ └── shit.png │ │ ├── reportsController.php │ │ ├── risksController.php │ │ ├── searchController.php │ │ ├── tasksController.php │ │ └── usersController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── RedirectIfNotAnAdmin.php │ │ ├── RedirectIfNotaLeader.php │ │ ├── VerifyCsrfToken.php │ │ └── redirectIfOwner.php │ ├── Requests │ │ ├── CreateProjectRequest.php │ │ └── Request.php │ └── routes.php ├── Jobs │ └── Job.php ├── Listeners │ └── .gitkeep ├── Message.php ├── Milestone.php ├── Policies │ └── .gitkeep ├── Project.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Risk.php ├── Role.php ├── Status.php ├── Task.php ├── Todo.php └── User.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 ├── dompdf.php ├── excel.php ├── filesystems.php ├── javascript.php ├── mail.php ├── messenger.php ├── queue.php ├── services.php ├── session.php ├── terminal.php ├── tracy.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── .gitkeep │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2016_07_04_120138_create_projects_table.php │ ├── 2016_07_19_123248_create_todos_table.php │ ├── 2016_07_20_000708_create_messages_table.php │ ├── 2016_07_20_113717_create_tasks_table.php │ ├── 2016_07_20_221259_create_files_table.php │ ├── 2016_07_21_132332_create_statuses_table.php │ ├── 2016_07_22_080656_create_risks_table.php │ ├── 2016_07_22_135528_create_milestones_table.php │ ├── 2016_07_24_145314_Create_roles_table.php │ ├── 2016_07_25_183801_Create_users_projects_table.php │ ├── 2016_07_26_093757_Create_couts_table.php │ ├── 2016_07_28_201806_create_historics_table.php │ ├── 2016_07_31_144024_create_collaborations_table.php │ └── 2016_07_31_145043_create_collaboration_project_table.php └── seeds │ ├── .gitkeep │ └── DatabaseSeeder.php ├── demo └── anim.gif ├── gulpfile.js ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── 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 ├── 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 ├── css │ ├── cover.css │ ├── fonts │ │ ├── FantasqueSansMono-Bold.woff │ │ └── FantasqueSansMono-Regular.woff2 │ ├── libs │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ ├── dncalendar-skin.css │ │ ├── font-awesome.min.css │ │ ├── ionicons.min.css │ │ └── select2.min.css │ └── style.css ├── 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 ├── favicon.ico ├── img │ ├── _1.jpg │ ├── admin.png │ ├── arrow.png │ ├── avatar04.png │ ├── avatar2.png │ ├── avatar3.png │ ├── avatar5.png │ ├── butn-ok.png │ ├── css1.png │ ├── delete.png │ ├── edit.png │ ├── gotop.png │ ├── gotop1.png │ ├── logo.jpg │ ├── modify.png │ ├── pms.gif │ ├── saitama.jpg │ ├── slider-2.jpg │ └── user-icon.png ├── index.php ├── js │ └── libs │ │ ├── bootbox.min.js │ │ ├── bootstrap.min.js │ │ ├── canvasjs.min.js │ │ ├── dncalendar.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.canvasjs.min.js │ │ ├── jquery.js │ │ ├── moment.min.js │ │ ├── raphael-min.js │ │ ├── select2.min.css │ │ └── select2.min.js ├── pages │ ├── UI │ │ ├── buttons.html │ │ ├── general.html │ │ ├── icons.html │ │ ├── modals.html │ │ ├── sliders.html │ │ └── timeline.html │ ├── calendar.html │ ├── charts │ │ ├── chartjs.html │ │ ├── flot.html │ │ ├── inline.html │ │ └── morris.html │ ├── 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 ├── php │ ├── test.blade.php │ └── test.php ├── 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.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.3.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 │ │ │ ├── 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 ├── robots.txt ├── uploads │ ├── 33_-_Decorator_Design_pattern_-_Coming_Soon.txt │ ├── 66079.jpg │ ├── 66673.png │ ├── 83054.jpg │ ├── _1.jpg │ ├── ayoub.txt │ ├── css1.png │ ├── css2.png │ ├── dark_wall.png │ ├── javascript-cheat-sheet-v1.png │ ├── kamli.jpg │ ├── logo.jpg │ ├── saitama.jpg │ └── template_projekt.csv ├── vendor │ └── terminal │ │ ├── css │ │ └── bundle.css │ │ └── js │ │ └── bundle.js └── web.config ├── resources ├── assets │ └── sass │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── admin │ ├── AdminLTE-2.3.5 │ │ ├── .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.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.3.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 │ │ │ │ │ ├── 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 │ │ └── starter.html │ ├── dashboard.blade.php │ ├── index.blade.php │ └── users.blade.php │ ├── auth │ ├── emails │ │ └── password.blade.php │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ ├── calendar │ └── index.blade.php │ ├── errors │ ├── 503.blade.php │ └── login.blade.php │ ├── files │ └── upload.blade.php │ ├── index.blade.php │ ├── layouts │ ├── app.blade.php │ ├── forbidden.blade.php │ ├── master.blade.php │ ├── master2.blade.php │ └── master3.blade.php │ ├── messages │ ├── index.blade.php │ └── sent.blade.php │ ├── partials │ ├── error.blade.php │ ├── footer.blade.php │ └── form.blade.php │ ├── projects │ ├── _1.jpg │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ ├── show.blade.php │ └── test.blade.php │ ├── reports │ └── index.blade.php │ ├── search │ ├── index.blade.php │ └── list.blade.php │ ├── tasks │ ├── index.blade.php │ └── transmitted.blade.php │ ├── users │ ├── create.blade.php │ ├── edit.blade.php │ └── profile.blade.php │ └── vendor │ ├── .gitkeep │ ├── flash │ ├── message.blade.php │ └── modal.blade.php │ └── terminal │ ├── index.blade.php │ └── panel.blade.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore └── tests ├── ExampleTest.php └── TestCase.php /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/blade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/.idea/blade.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/libraries/pMS_node_modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/.idea/libraries/pMS_node_modules.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/pMS.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/.idea/pMS.iml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/README.md -------------------------------------------------------------------------------- /app/Collaboration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Collaboration.php -------------------------------------------------------------------------------- /app/Console/Commands/Inspire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Console/Commands/Inspire.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Cout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Cout.php -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Events/Event.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/File.php -------------------------------------------------------------------------------- /app/Historic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Historic.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/Auth/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/adminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/adminController.php -------------------------------------------------------------------------------- /app/Http/Controllers/applyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/applyController.php -------------------------------------------------------------------------------- /app/Http/Controllers/calendarController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/calendarController.php -------------------------------------------------------------------------------- /app/Http/Controllers/collaborationsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/collaborationsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/exportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/exportController.php -------------------------------------------------------------------------------- /app/Http/Controllers/messagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/messagesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/milestonesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/milestonesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/projectsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/projectsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/public/img/shit.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Http/Controllers/reportsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/reportsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/risksController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/risksController.php -------------------------------------------------------------------------------- /app/Http/Controllers/searchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/searchController.php -------------------------------------------------------------------------------- /app/Http/Controllers/tasksController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/tasksController.php -------------------------------------------------------------------------------- /app/Http/Controllers/usersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Controllers/usersController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfNotAnAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Middleware/RedirectIfNotAnAdmin.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfNotaLeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Middleware/RedirectIfNotaLeader.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Middleware/redirectIfOwner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Middleware/redirectIfOwner.php -------------------------------------------------------------------------------- /app/Http/Requests/CreateProjectRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Requests/CreateProjectRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/Requests/Request.php -------------------------------------------------------------------------------- /app/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Http/routes.php -------------------------------------------------------------------------------- /app/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Jobs/Job.php -------------------------------------------------------------------------------- /app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Message.php -------------------------------------------------------------------------------- /app/Milestone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Milestone.php -------------------------------------------------------------------------------- /app/Policies/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Project.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Risk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Risk.php -------------------------------------------------------------------------------- /app/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Role.php -------------------------------------------------------------------------------- /app/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Status.php -------------------------------------------------------------------------------- /app/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Task.php -------------------------------------------------------------------------------- /app/Todo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/Todo.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/compile.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/database.php -------------------------------------------------------------------------------- /config/dompdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/dompdf.php -------------------------------------------------------------------------------- /config/excel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/excel.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/javascript.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/messenger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/messenger.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/session.php -------------------------------------------------------------------------------- /config/terminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/terminal.php -------------------------------------------------------------------------------- /config/tracy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/tracy.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /demo/anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/demo/anim.gif -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /public/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /public/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /public/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /public/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/bootstrap/js/npm.js -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/alerts.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/buttons.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/clearfix.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/forms.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/gradients.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/grid.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/hide-text.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/image.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/labels.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/list-group.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/opacity.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/pagination.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/panels.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/reset-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/reset-text.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/resize.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/size.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/tab-focus.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/mixins/table-row.less -------------------------------------------------------------------------------- /public/build/bootstrap-less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/bootstrap-less/variables.less -------------------------------------------------------------------------------- /public/build/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/.csslintrc -------------------------------------------------------------------------------- /public/build/less/404_500_errors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/404_500_errors.less -------------------------------------------------------------------------------- /public/build/less/AdminLTE.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/AdminLTE.less -------------------------------------------------------------------------------- /public/build/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/alerts.less -------------------------------------------------------------------------------- /public/build/less/bootstrap-social.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/bootstrap-social.less -------------------------------------------------------------------------------- /public/build/less/boxes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/boxes.less -------------------------------------------------------------------------------- /public/build/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/buttons.less -------------------------------------------------------------------------------- /public/build/less/callout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/callout.less -------------------------------------------------------------------------------- /public/build/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/carousel.less -------------------------------------------------------------------------------- /public/build/less/control-sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/control-sidebar.less -------------------------------------------------------------------------------- /public/build/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/core.less -------------------------------------------------------------------------------- /public/build/less/direct-chat.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/direct-chat.less -------------------------------------------------------------------------------- /public/build/less/dropdown.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/dropdown.less -------------------------------------------------------------------------------- /public/build/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/forms.less -------------------------------------------------------------------------------- /public/build/less/fullcalendar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/fullcalendar.less -------------------------------------------------------------------------------- /public/build/less/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/header.less -------------------------------------------------------------------------------- /public/build/less/info-box.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/info-box.less -------------------------------------------------------------------------------- /public/build/less/invoice.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/invoice.less -------------------------------------------------------------------------------- /public/build/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/labels.less -------------------------------------------------------------------------------- /public/build/less/lockscreen.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/lockscreen.less -------------------------------------------------------------------------------- /public/build/less/login_and_register.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/login_and_register.less -------------------------------------------------------------------------------- /public/build/less/mailbox.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/mailbox.less -------------------------------------------------------------------------------- /public/build/less/miscellaneous.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/miscellaneous.less -------------------------------------------------------------------------------- /public/build/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/mixins.less -------------------------------------------------------------------------------- /public/build/less/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/modal.less -------------------------------------------------------------------------------- /public/build/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/navs.less -------------------------------------------------------------------------------- /public/build/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/print.less -------------------------------------------------------------------------------- /public/build/less/products.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/products.less -------------------------------------------------------------------------------- /public/build/less/profile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/profile.less -------------------------------------------------------------------------------- /public/build/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/progress-bars.less -------------------------------------------------------------------------------- /public/build/less/select2.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/select2.less -------------------------------------------------------------------------------- /public/build/less/sidebar-mini.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/sidebar-mini.less -------------------------------------------------------------------------------- /public/build/less/sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/sidebar.less -------------------------------------------------------------------------------- /public/build/less/skins/_all-skins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/skins/_all-skins.less -------------------------------------------------------------------------------- /public/build/less/skins/skin-black-light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/skins/skin-black-light.less -------------------------------------------------------------------------------- /public/build/less/skins/skin-black.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/skins/skin-black.less -------------------------------------------------------------------------------- /public/build/less/skins/skin-blue-light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/skins/skin-blue-light.less -------------------------------------------------------------------------------- /public/build/less/skins/skin-blue.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/skins/skin-blue.less -------------------------------------------------------------------------------- /public/build/less/skins/skin-green-light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/skins/skin-green-light.less -------------------------------------------------------------------------------- /public/build/less/skins/skin-green.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/skins/skin-green.less -------------------------------------------------------------------------------- /public/build/less/skins/skin-purple-light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/skins/skin-purple-light.less -------------------------------------------------------------------------------- /public/build/less/skins/skin-purple.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/skins/skin-purple.less -------------------------------------------------------------------------------- /public/build/less/skins/skin-red-light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/skins/skin-red-light.less -------------------------------------------------------------------------------- /public/build/less/skins/skin-red.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/skins/skin-red.less -------------------------------------------------------------------------------- /public/build/less/skins/skin-yellow-light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/skins/skin-yellow-light.less -------------------------------------------------------------------------------- /public/build/less/skins/skin-yellow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/skins/skin-yellow.less -------------------------------------------------------------------------------- /public/build/less/small-box.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/small-box.less -------------------------------------------------------------------------------- /public/build/less/social-widgets.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/social-widgets.less -------------------------------------------------------------------------------- /public/build/less/table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/table.less -------------------------------------------------------------------------------- /public/build/less/timeline.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/timeline.less -------------------------------------------------------------------------------- /public/build/less/users-list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/users-list.less -------------------------------------------------------------------------------- /public/build/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/build/less/variables.less -------------------------------------------------------------------------------- /public/css/cover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/css/cover.css -------------------------------------------------------------------------------- /public/css/fonts/FantasqueSansMono-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/css/fonts/FantasqueSansMono-Bold.woff -------------------------------------------------------------------------------- /public/css/fonts/FantasqueSansMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/css/fonts/FantasqueSansMono-Regular.woff2 -------------------------------------------------------------------------------- /public/css/libs/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/css/libs/animate.css -------------------------------------------------------------------------------- /public/css/libs/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/css/libs/bootstrap.min.css -------------------------------------------------------------------------------- /public/css/libs/dncalendar-skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/css/libs/dncalendar-skin.css -------------------------------------------------------------------------------- /public/css/libs/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/css/libs/font-awesome.min.css -------------------------------------------------------------------------------- /public/css/libs/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/css/libs/ionicons.min.css -------------------------------------------------------------------------------- /public/css/libs/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/css/libs/select2.min.css -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/css/style.css -------------------------------------------------------------------------------- /public/dist/css/AdminLTE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/AdminLTE.css -------------------------------------------------------------------------------- /public/dist/css/AdminLTE.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/AdminLTE.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/_all-skins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/_all-skins.css -------------------------------------------------------------------------------- /public/dist/css/skins/_all-skins.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/_all-skins.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-black-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-black-light.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-black-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-black-light.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-black.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-black.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-black.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-blue-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-blue-light.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-blue-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-blue-light.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-blue.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-blue.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-blue.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-green-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-green-light.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-green-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-green-light.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-green.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-green.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-green.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-purple-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-purple-light.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-purple-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-purple-light.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-purple.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-purple.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-purple.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-red-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-red-light.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-red-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-red-light.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-red.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-red.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-red.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-yellow-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-yellow-light.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-yellow-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-yellow-light.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-yellow.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-yellow.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/css/skins/skin-yellow.min.css -------------------------------------------------------------------------------- /public/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/avatar.png -------------------------------------------------------------------------------- /public/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/avatar04.png -------------------------------------------------------------------------------- /public/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/avatar2.png -------------------------------------------------------------------------------- /public/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/avatar3.png -------------------------------------------------------------------------------- /public/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/avatar5.png -------------------------------------------------------------------------------- /public/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /public/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /public/dist/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/credit/american-express.png -------------------------------------------------------------------------------- /public/dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /public/dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /public/dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /public/dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /public/dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /public/dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/credit/visa.png -------------------------------------------------------------------------------- /public/dist/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/default-50x50.gif -------------------------------------------------------------------------------- /public/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/icons.png -------------------------------------------------------------------------------- /public/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/photo1.png -------------------------------------------------------------------------------- /public/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/photo2.png -------------------------------------------------------------------------------- /public/dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/photo3.jpg -------------------------------------------------------------------------------- /public/dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/photo4.jpg -------------------------------------------------------------------------------- /public/dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /public/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /public/dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /public/dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /public/dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /public/dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /public/dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /public/dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /public/dist/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/js/app.js -------------------------------------------------------------------------------- /public/dist/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/js/app.min.js -------------------------------------------------------------------------------- /public/dist/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/js/demo.js -------------------------------------------------------------------------------- /public/dist/js/pages/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/js/pages/dashboard.js -------------------------------------------------------------------------------- /public/dist/js/pages/dashboard2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/dist/js/pages/dashboard2.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/_1.jpg -------------------------------------------------------------------------------- /public/img/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/admin.png -------------------------------------------------------------------------------- /public/img/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/arrow.png -------------------------------------------------------------------------------- /public/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/avatar04.png -------------------------------------------------------------------------------- /public/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/avatar2.png -------------------------------------------------------------------------------- /public/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/avatar3.png -------------------------------------------------------------------------------- /public/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/avatar5.png -------------------------------------------------------------------------------- /public/img/butn-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/butn-ok.png -------------------------------------------------------------------------------- /public/img/css1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/css1.png -------------------------------------------------------------------------------- /public/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/delete.png -------------------------------------------------------------------------------- /public/img/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/edit.png -------------------------------------------------------------------------------- /public/img/gotop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/gotop.png -------------------------------------------------------------------------------- /public/img/gotop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/gotop1.png -------------------------------------------------------------------------------- /public/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/logo.jpg -------------------------------------------------------------------------------- /public/img/modify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/modify.png -------------------------------------------------------------------------------- /public/img/pms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/pms.gif -------------------------------------------------------------------------------- /public/img/saitama.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/saitama.jpg -------------------------------------------------------------------------------- /public/img/slider-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/slider-2.jpg -------------------------------------------------------------------------------- /public/img/user-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/img/user-icon.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/libs/bootbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/js/libs/bootbox.min.js -------------------------------------------------------------------------------- /public/js/libs/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/js/libs/bootstrap.min.js -------------------------------------------------------------------------------- /public/js/libs/canvasjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/js/libs/canvasjs.min.js -------------------------------------------------------------------------------- /public/js/libs/dncalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/js/libs/dncalendar.min.js -------------------------------------------------------------------------------- /public/js/libs/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/js/libs/jquery-ui.min.js -------------------------------------------------------------------------------- /public/js/libs/jquery.canvasjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/js/libs/jquery.canvasjs.min.js -------------------------------------------------------------------------------- /public/js/libs/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/js/libs/jquery.js -------------------------------------------------------------------------------- /public/js/libs/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/js/libs/moment.min.js -------------------------------------------------------------------------------- /public/js/libs/raphael-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/js/libs/raphael-min.js -------------------------------------------------------------------------------- /public/js/libs/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/js/libs/select2.min.css -------------------------------------------------------------------------------- /public/js/libs/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/js/libs/select2.min.js -------------------------------------------------------------------------------- /public/pages/UI/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/UI/buttons.html -------------------------------------------------------------------------------- /public/pages/UI/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/UI/general.html -------------------------------------------------------------------------------- /public/pages/UI/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/UI/icons.html -------------------------------------------------------------------------------- /public/pages/UI/modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/UI/modals.html -------------------------------------------------------------------------------- /public/pages/UI/sliders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/UI/sliders.html -------------------------------------------------------------------------------- /public/pages/UI/timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/UI/timeline.html -------------------------------------------------------------------------------- /public/pages/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/calendar.html -------------------------------------------------------------------------------- /public/pages/charts/chartjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/charts/chartjs.html -------------------------------------------------------------------------------- /public/pages/charts/flot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/charts/flot.html -------------------------------------------------------------------------------- /public/pages/charts/inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/charts/inline.html -------------------------------------------------------------------------------- /public/pages/charts/morris.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/charts/morris.html -------------------------------------------------------------------------------- /public/pages/examples/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/examples/404.html -------------------------------------------------------------------------------- /public/pages/examples/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/examples/500.html -------------------------------------------------------------------------------- /public/pages/examples/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/examples/blank.html -------------------------------------------------------------------------------- /public/pages/examples/invoice-print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/examples/invoice-print.html -------------------------------------------------------------------------------- /public/pages/examples/invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/examples/invoice.html -------------------------------------------------------------------------------- /public/pages/examples/lockscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/examples/lockscreen.html -------------------------------------------------------------------------------- /public/pages/examples/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/examples/login.html -------------------------------------------------------------------------------- /public/pages/examples/pace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/examples/pace.html -------------------------------------------------------------------------------- /public/pages/examples/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/examples/profile.html -------------------------------------------------------------------------------- /public/pages/examples/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/examples/register.html -------------------------------------------------------------------------------- /public/pages/forms/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/forms/advanced.html -------------------------------------------------------------------------------- /public/pages/forms/editors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/forms/editors.html -------------------------------------------------------------------------------- /public/pages/forms/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/forms/general.html -------------------------------------------------------------------------------- /public/pages/layout/boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/layout/boxed.html -------------------------------------------------------------------------------- /public/pages/layout/collapsed-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/layout/collapsed-sidebar.html -------------------------------------------------------------------------------- /public/pages/layout/fixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/layout/fixed.html -------------------------------------------------------------------------------- /public/pages/layout/top-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/layout/top-nav.html -------------------------------------------------------------------------------- /public/pages/mailbox/compose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/mailbox/compose.html -------------------------------------------------------------------------------- /public/pages/mailbox/mailbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/mailbox/mailbox.html -------------------------------------------------------------------------------- /public/pages/mailbox/read-mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/mailbox/read-mail.html -------------------------------------------------------------------------------- /public/pages/tables/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/tables/data.html -------------------------------------------------------------------------------- /public/pages/tables/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/tables/simple.html -------------------------------------------------------------------------------- /public/pages/widgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/pages/widgets.html -------------------------------------------------------------------------------- /public/php/test.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/php/test.blade.php -------------------------------------------------------------------------------- /public/php/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/php/test.php -------------------------------------------------------------------------------- /public/plugins/bootstrap-slider/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/bootstrap-slider/slider.css -------------------------------------------------------------------------------- /public/plugins/chartjs/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/chartjs/Chart.js -------------------------------------------------------------------------------- /public/plugins/chartjs/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/chartjs/Chart.min.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /public/plugins/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /public/plugins/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/README.md -------------------------------------------------------------------------------- /public/plugins/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/build-config.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/config.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/contents.css -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/af.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/da.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/de-ch.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/de.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/el.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/en.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/es.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/et.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/he.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/id.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/is.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/it.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/km.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/no.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/si.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/th.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/tt.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /public/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /public/plugins/ckeditor/plugins/scayt/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/plugins/scayt/CHANGELOG.md -------------------------------------------------------------------------------- /public/plugins/ckeditor/plugins/scayt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/plugins/scayt/LICENSE.md -------------------------------------------------------------------------------- /public/plugins/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/plugins/scayt/README.md -------------------------------------------------------------------------------- /public/plugins/ckeditor/plugins/wsc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/plugins/wsc/LICENSE.md -------------------------------------------------------------------------------- /public/plugins/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/plugins/wsc/README.md -------------------------------------------------------------------------------- /public/plugins/ckeditor/plugins/wsc/dialogs/wsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/plugins/wsc/dialogs/wsc.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/css/samples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/css/samples.css -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/index.html -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/js/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/js/sample.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/js/sf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/js/sf.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/old/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/old/ajax.html -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/old/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/old/api.html -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/old/appendto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/old/appendto.html -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/old/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/old/index.html -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/old/inlineall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/old/inlineall.html -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/old/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/old/jquery.html -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/old/readonly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/old/readonly.html -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/old/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/old/sample.css -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/old/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/old/sample.js -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/old/tabindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/old/tabindex.html -------------------------------------------------------------------------------- /public/plugins/ckeditor/samples/old/uicolor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/samples/old/uicolor.html -------------------------------------------------------------------------------- /public/plugins/ckeditor/skins/moono/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/skins/moono/dialog.css -------------------------------------------------------------------------------- /public/plugins/ckeditor/skins/moono/dialog_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/skins/moono/dialog_ie.css -------------------------------------------------------------------------------- /public/plugins/ckeditor/skins/moono/dialog_ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/skins/moono/dialog_ie7.css -------------------------------------------------------------------------------- /public/plugins/ckeditor/skins/moono/dialog_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/skins/moono/dialog_ie8.css -------------------------------------------------------------------------------- /public/plugins/ckeditor/skins/moono/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/skins/moono/editor.css -------------------------------------------------------------------------------- /public/plugins/ckeditor/skins/moono/editor_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/skins/moono/editor_ie.css -------------------------------------------------------------------------------- /public/plugins/ckeditor/skins/moono/editor_ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/skins/moono/editor_ie7.css -------------------------------------------------------------------------------- /public/plugins/ckeditor/skins/moono/editor_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/skins/moono/editor_ie8.css -------------------------------------------------------------------------------- /public/plugins/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /public/plugins/ckeditor/skins/moono/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/skins/moono/readme.md -------------------------------------------------------------------------------- /public/plugins/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ckeditor/styles.js -------------------------------------------------------------------------------- /public/plugins/colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/colorpicker/img/alpha.png -------------------------------------------------------------------------------- /public/plugins/colorpicker/img/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/colorpicker/img/hue-horizontal.png -------------------------------------------------------------------------------- /public/plugins/colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/colorpicker/img/hue.png -------------------------------------------------------------------------------- /public/plugins/colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/colorpicker/img/saturation.png -------------------------------------------------------------------------------- /public/plugins/datatables/dataTables.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/datatables/dataTables.bootstrap.css -------------------------------------------------------------------------------- /public/plugins/datatables/dataTables.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/datatables/dataTables.bootstrap.js -------------------------------------------------------------------------------- /public/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/plugins/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /public/plugins/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/datatables/images/sort_both.png -------------------------------------------------------------------------------- /public/plugins/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /public/plugins/datatables/jquery.dataTables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/datatables/jquery.dataTables.css -------------------------------------------------------------------------------- /public/plugins/datatables/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/datatables/jquery.dataTables.js -------------------------------------------------------------------------------- /public/plugins/datatables/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/datatables/jquery.dataTables.min.js -------------------------------------------------------------------------------- /public/plugins/datepicker/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/datepicker/bootstrap-datepicker.js -------------------------------------------------------------------------------- /public/plugins/datepicker/datepicker3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/datepicker/datepicker3.css -------------------------------------------------------------------------------- /public/plugins/daterangepicker/daterangepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/daterangepicker/daterangepicker.css -------------------------------------------------------------------------------- /public/plugins/daterangepicker/daterangepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/daterangepicker/daterangepicker.js -------------------------------------------------------------------------------- /public/plugins/daterangepicker/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/daterangepicker/moment.js -------------------------------------------------------------------------------- /public/plugins/daterangepicker/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/daterangepicker/moment.min.js -------------------------------------------------------------------------------- /public/plugins/fastclick/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/fastclick/fastclick.js -------------------------------------------------------------------------------- /public/plugins/fastclick/fastclick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/fastclick/fastclick.min.js -------------------------------------------------------------------------------- /public/plugins/flot/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/excanvas.js -------------------------------------------------------------------------------- /public/plugins/flot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/excanvas.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.colorhelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.colorhelpers.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.colorhelpers.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.colorhelpers.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.canvas.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.canvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.canvas.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.categories.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.categories.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.categories.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.crosshair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.crosshair.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.crosshair.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.crosshair.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.errorbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.errorbars.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.errorbars.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.errorbars.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.fillbetween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.fillbetween.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.fillbetween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.fillbetween.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.image.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.image.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.image.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.navigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.navigate.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.navigate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.navigate.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.pie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.pie.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.resize.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.resize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.resize.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.selection.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.selection.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.selection.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.stack.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.stack.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.stack.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.symbol.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.symbol.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.symbol.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.threshold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.threshold.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.threshold.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.threshold.min.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.time.js -------------------------------------------------------------------------------- /public/plugins/flot/jquery.flot.time.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/flot/jquery.flot.time.min.js -------------------------------------------------------------------------------- /public/plugins/fullcalendar/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/fullcalendar/fullcalendar.css -------------------------------------------------------------------------------- /public/plugins/fullcalendar/fullcalendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/fullcalendar/fullcalendar.js -------------------------------------------------------------------------------- /public/plugins/fullcalendar/fullcalendar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/fullcalendar/fullcalendar.min.css -------------------------------------------------------------------------------- /public/plugins/fullcalendar/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/fullcalendar/fullcalendar.min.js -------------------------------------------------------------------------------- /public/plugins/fullcalendar/fullcalendar.print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/fullcalendar/fullcalendar.print.css -------------------------------------------------------------------------------- /public/plugins/iCheck/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/all.css -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/_all.css -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/aero.css -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/blue.css -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/flat.css -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/green.css -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/grey.css -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/orange.css -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/pink.css -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/purple.css -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/red.css -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/yellow.css -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /public/plugins/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/futurico/futurico.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/futurico/futurico.css -------------------------------------------------------------------------------- /public/plugins/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /public/plugins/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/icheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/icheck.js -------------------------------------------------------------------------------- /public/plugins/iCheck/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/icheck.min.js -------------------------------------------------------------------------------- /public/plugins/iCheck/line/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/line/_all.css -------------------------------------------------------------------------------- /public/plugins/iCheck/line/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/line/aero.css -------------------------------------------------------------------------------- /public/plugins/iCheck/line/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/line/blue.css -------------------------------------------------------------------------------- /public/plugins/iCheck/line/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/line/green.css -------------------------------------------------------------------------------- /public/plugins/iCheck/line/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/line/grey.css -------------------------------------------------------------------------------- /public/plugins/iCheck/line/line.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/line/line.css -------------------------------------------------------------------------------- /public/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /public/plugins/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/line/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/line/orange.css -------------------------------------------------------------------------------- /public/plugins/iCheck/line/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/line/pink.css -------------------------------------------------------------------------------- /public/plugins/iCheck/line/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/line/purple.css -------------------------------------------------------------------------------- /public/plugins/iCheck/line/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/line/red.css -------------------------------------------------------------------------------- /public/plugins/iCheck/line/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/line/yellow.css -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/_all.css -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/aero.css -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/blue.css -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/green.css -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/green.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/grey.css -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/minimal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/minimal.css -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/orange.css -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/pink.css -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/purple.css -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/red.css -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/yellow.css -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /public/plugins/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/polaris/polaris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/polaris/polaris.css -------------------------------------------------------------------------------- /public/plugins/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /public/plugins/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/_all.css -------------------------------------------------------------------------------- /public/plugins/iCheck/square/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/aero.css -------------------------------------------------------------------------------- /public/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/blue.css -------------------------------------------------------------------------------- /public/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/green.css -------------------------------------------------------------------------------- /public/plugins/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/green.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/grey.css -------------------------------------------------------------------------------- /public/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/orange.css -------------------------------------------------------------------------------- /public/plugins/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/orange.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/pink.css -------------------------------------------------------------------------------- /public/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/purple.css -------------------------------------------------------------------------------- /public/plugins/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/purple.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/red.css -------------------------------------------------------------------------------- /public/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/square.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/square.css -------------------------------------------------------------------------------- /public/plugins/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/square.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/yellow.css -------------------------------------------------------------------------------- /public/plugins/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/yellow.png -------------------------------------------------------------------------------- /public/plugins/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /public/plugins/input-mask/jquery.inputmask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/input-mask/jquery.inputmask.js -------------------------------------------------------------------------------- /public/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/input-mask/phone-codes/readme.txt -------------------------------------------------------------------------------- /public/plugins/ionslider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ionslider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /public/plugins/ionslider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ionslider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /public/plugins/ionslider/ion.rangeSlider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ionslider/ion.rangeSlider.css -------------------------------------------------------------------------------- /public/plugins/ionslider/ion.rangeSlider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/ionslider/ion.rangeSlider.min.js -------------------------------------------------------------------------------- /public/plugins/jQuery/jquery-2.2.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/jQuery/jquery-2.2.3.min.js -------------------------------------------------------------------------------- /public/plugins/jQueryUI/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/jQueryUI/jquery-ui.js -------------------------------------------------------------------------------- /public/plugins/jQueryUI/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/jQueryUI/jquery-ui.min.js -------------------------------------------------------------------------------- /public/plugins/knob/jquery.knob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/knob/jquery.knob.js -------------------------------------------------------------------------------- /public/plugins/morris/morris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/morris/morris.css -------------------------------------------------------------------------------- /public/plugins/morris/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/morris/morris.js -------------------------------------------------------------------------------- /public/plugins/morris/morris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/morris/morris.min.js -------------------------------------------------------------------------------- /public/plugins/pace/pace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/pace/pace.css -------------------------------------------------------------------------------- /public/plugins/pace/pace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/pace/pace.js -------------------------------------------------------------------------------- /public/plugins/pace/pace.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/pace/pace.min.css -------------------------------------------------------------------------------- /public/plugins/pace/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/pace/pace.min.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/ar.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/az.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/bg.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/ca.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/cs.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/da.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/de.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/el.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/en.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/es.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/et.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/eu.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/fa.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/fi.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/fr.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/gl.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/he.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/hi.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/hr.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/hu.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/id.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/is.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/it.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/ja.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/km.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/ko.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/lt.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/lv.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/mk.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/ms.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/nb.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/nl.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/pl.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/pt-BR.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/pt.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/ro.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/ru.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/sk.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/sr.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/sv.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/th.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/tr.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/uk.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/vi.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/zh-CN.js -------------------------------------------------------------------------------- /public/plugins/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/i18n/zh-TW.js -------------------------------------------------------------------------------- /public/plugins/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/select2.css -------------------------------------------------------------------------------- /public/plugins/select2/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/select2.full.js -------------------------------------------------------------------------------- /public/plugins/select2/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/select2.full.min.js -------------------------------------------------------------------------------- /public/plugins/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/select2.js -------------------------------------------------------------------------------- /public/plugins/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/select2.min.css -------------------------------------------------------------------------------- /public/plugins/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/select2/select2.min.js -------------------------------------------------------------------------------- /public/plugins/slimScroll/jquery.slimscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/slimScroll/jquery.slimscroll.js -------------------------------------------------------------------------------- /public/plugins/slimScroll/jquery.slimscroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/slimScroll/jquery.slimscroll.min.js -------------------------------------------------------------------------------- /public/plugins/sparkline/jquery.sparkline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/sparkline/jquery.sparkline.js -------------------------------------------------------------------------------- /public/plugins/sparkline/jquery.sparkline.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/sparkline/jquery.sparkline.min.js -------------------------------------------------------------------------------- /public/plugins/timepicker/bootstrap-timepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/timepicker/bootstrap-timepicker.css -------------------------------------------------------------------------------- /public/plugins/timepicker/bootstrap-timepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/plugins/timepicker/bootstrap-timepicker.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/uploads/66079.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/uploads/66079.jpg -------------------------------------------------------------------------------- /public/uploads/66673.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/uploads/66673.png -------------------------------------------------------------------------------- /public/uploads/83054.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/uploads/83054.jpg -------------------------------------------------------------------------------- /public/uploads/_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/uploads/_1.jpg -------------------------------------------------------------------------------- /public/uploads/ayoub.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/uploads/css1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/uploads/css1.png -------------------------------------------------------------------------------- /public/uploads/css2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/uploads/css2.png -------------------------------------------------------------------------------- /public/uploads/dark_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/uploads/dark_wall.png -------------------------------------------------------------------------------- /public/uploads/javascript-cheat-sheet-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/uploads/javascript-cheat-sheet-v1.png -------------------------------------------------------------------------------- /public/uploads/kamli.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/uploads/kamli.jpg -------------------------------------------------------------------------------- /public/uploads/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/uploads/logo.jpg -------------------------------------------------------------------------------- /public/uploads/saitama.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/uploads/saitama.jpg -------------------------------------------------------------------------------- /public/uploads/template_projekt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/uploads/template_projekt.csv -------------------------------------------------------------------------------- /public/vendor/terminal/css/bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/vendor/terminal/css/bundle.css -------------------------------------------------------------------------------- /public/vendor/terminal/js/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/vendor/terminal/js/bundle.js -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/admin/AdminLTE-2.3.5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/AdminLTE-2.3.5/.gitignore -------------------------------------------------------------------------------- /resources/views/admin/AdminLTE-2.3.5/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/AdminLTE-2.3.5/.jshintrc -------------------------------------------------------------------------------- /resources/views/admin/AdminLTE-2.3.5/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/AdminLTE-2.3.5/Gruntfile.js -------------------------------------------------------------------------------- /resources/views/admin/AdminLTE-2.3.5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/AdminLTE-2.3.5/LICENSE -------------------------------------------------------------------------------- /resources/views/admin/AdminLTE-2.3.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/AdminLTE-2.3.5/README.md -------------------------------------------------------------------------------- /resources/views/admin/AdminLTE-2.3.5/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/AdminLTE-2.3.5/bower.json -------------------------------------------------------------------------------- /resources/views/admin/AdminLTE-2.3.5/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/AdminLTE-2.3.5/changelog -------------------------------------------------------------------------------- /resources/views/admin/AdminLTE-2.3.5/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/AdminLTE-2.3.5/composer.json -------------------------------------------------------------------------------- /resources/views/admin/AdminLTE-2.3.5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/AdminLTE-2.3.5/index.html -------------------------------------------------------------------------------- /resources/views/admin/AdminLTE-2.3.5/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/AdminLTE-2.3.5/index2.html -------------------------------------------------------------------------------- /resources/views/admin/AdminLTE-2.3.5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/AdminLTE-2.3.5/package.json -------------------------------------------------------------------------------- /resources/views/admin/AdminLTE-2.3.5/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/admin/AdminLTE-2.3.5/starter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/AdminLTE-2.3.5/starter.html -------------------------------------------------------------------------------- /resources/views/admin/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/admin/users.blade.php -------------------------------------------------------------------------------- /resources/views/auth/emails/password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/auth/emails/password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/calendar/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/calendar/index.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/errors/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/errors/login.blade.php -------------------------------------------------------------------------------- /resources/views/files/upload.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/files/upload.blade.php -------------------------------------------------------------------------------- /resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/index.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/forbidden.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/layouts/forbidden.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/layouts/master.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/master2.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/layouts/master2.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/master3.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/layouts/master3.blade.php -------------------------------------------------------------------------------- /resources/views/messages/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/messages/index.blade.php -------------------------------------------------------------------------------- /resources/views/messages/sent.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/messages/sent.blade.php -------------------------------------------------------------------------------- /resources/views/partials/error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/partials/error.blade.php -------------------------------------------------------------------------------- /resources/views/partials/footer.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/partials/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/partials/form.blade.php -------------------------------------------------------------------------------- /resources/views/projects/_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/projects/_1.jpg -------------------------------------------------------------------------------- /resources/views/projects/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/projects/create.blade.php -------------------------------------------------------------------------------- /resources/views/projects/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/projects/edit.blade.php -------------------------------------------------------------------------------- /resources/views/projects/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/projects/index.blade.php -------------------------------------------------------------------------------- /resources/views/projects/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/projects/show.blade.php -------------------------------------------------------------------------------- /resources/views/projects/test.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/projects/test.blade.php -------------------------------------------------------------------------------- /resources/views/reports/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/reports/index.blade.php -------------------------------------------------------------------------------- /resources/views/search/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/search/index.blade.php -------------------------------------------------------------------------------- /resources/views/search/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/search/list.blade.php -------------------------------------------------------------------------------- /resources/views/tasks/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/tasks/index.blade.php -------------------------------------------------------------------------------- /resources/views/tasks/transmitted.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/tasks/transmitted.blade.php -------------------------------------------------------------------------------- /resources/views/users/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/users/create.blade.php -------------------------------------------------------------------------------- /resources/views/users/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/users/edit.blade.php -------------------------------------------------------------------------------- /resources/views/users/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/users/profile.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/vendor/flash/message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/vendor/flash/message.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/flash/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/vendor/flash/modal.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/terminal/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/vendor/terminal/index.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/terminal/panel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/resources/views/vendor/terminal/panel.blade.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/tests/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubeddafali/project-management-system-laravel/HEAD/tests/TestCase.php --------------------------------------------------------------------------------