├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app ├── Admin.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Helpers │ └── ItemsHelper.php ├── Http │ ├── Controllers │ │ ├── AdminController.php │ │ ├── Auth │ │ │ ├── AdminLoginController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── Controller.php │ │ ├── FrontendController.php │ │ ├── HomeController.php │ │ ├── ItemsController.php │ │ ├── SearchController.php │ │ └── UserController.php │ ├── Kernel.php │ └── Middleware │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ └── VerifyCsrfToken.php ├── Item.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── User.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2017_09_11_205002_create_admins_table.php │ └── 2017_09_11_211121_create_items_table.php └── seeds │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── assets │ ├── css │ │ ├── bootstrap.min.css │ │ ├── elegant-icons.min.css │ │ ├── flexslider.min.css │ │ ├── lightbox.min.css │ │ ├── line-icons.min.css │ │ ├── theme-aquatica.css │ │ ├── theme-aspirin.css │ │ ├── theme-blues.css │ │ ├── theme-buddha.css │ │ ├── theme-cobalt.css │ │ ├── theme-rocklobster.css │ │ ├── theme-tronic.css │ │ └── theme.css │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── fonts │ │ ├── ElegantIcons.eot │ │ ├── ElegantIcons.svg │ │ ├── ElegantIcons.ttf │ │ ├── ElegantIcons.woff │ │ ├── ElegantIconsd41d.eot │ │ ├── et-line.eot │ │ ├── et-line.svg │ │ ├── et-line.ttf │ │ ├── et-line.woff │ │ ├── et-lined41d.eot │ │ ├── glyphicons-halflings-regular-2.html │ │ ├── glyphicons-halflings-regular-3.html │ │ ├── glyphicons-halflings-regular-4.html │ │ ├── glyphicons-halflings-regular.html │ │ └── glyphicons-halflings-regulard41d.html │ ├── img │ │ ├── blog-masonry-1.jpg │ │ ├── blog-masonry-2.jpg │ │ ├── board-4.jpeg │ │ ├── bottom1.jpg │ │ ├── grey-bg.jpg │ │ ├── header2.jpg │ │ ├── hero10.jpg │ │ ├── hero20.jpg │ │ ├── hero23.jpg │ │ ├── hero3.jpg │ │ ├── hero6.jpg │ │ ├── lightbox │ │ │ ├── close.png │ │ │ ├── loading.gif │ │ │ ├── next.png │ │ │ └── prev.png │ │ ├── logo-big.jpg │ │ ├── logo-dark.png │ │ ├── logo-light.png │ │ ├── logo-small.jpg │ │ ├── oaunoticeboard.jpg │ │ ├── project4.jpg │ │ └── team-small-1.png │ └── js │ │ ├── bootstrap.min.js │ │ ├── isotope.min.js │ │ ├── jquery.countdown.min.js │ │ ├── jquery.flexslider-min.js │ │ ├── jquery.min.js │ │ ├── jquery.plugin.min.js │ │ ├── lightbox.min.js │ │ ├── modernizr-2.6.2-respond-1.1.0.min.js │ │ ├── scripts.js │ │ ├── scrollReveal.min.js │ │ ├── skrollr.min.js │ │ ├── smooth-scroll.min.js │ │ ├── spectragram.min.js │ │ └── twitterFetcher_v10_min.js ├── css │ └── app.css ├── dashboard │ ├── assets │ │ ├── css │ │ │ └── site.min3f0d.css │ │ ├── examples │ │ │ ├── css │ │ │ │ ├── advanced │ │ │ │ │ ├── alertify.min3f0d.css │ │ │ │ │ ├── animation.min3f0d.css │ │ │ │ │ ├── highlight.min3f0d.css │ │ │ │ │ ├── lightbox.min3f0d.css │ │ │ │ │ ├── masonry.min3f0d.css │ │ │ │ │ ├── rating.min3f0d.css │ │ │ │ │ ├── scrollable.min3f0d.css │ │ │ │ │ └── toastr.min3f0d.css │ │ │ │ ├── apps │ │ │ │ │ ├── calendar.min3f0d.css │ │ │ │ │ ├── contacts.min3f0d.css │ │ │ │ │ ├── documents.min3f0d.css │ │ │ │ │ ├── forum.min3f0d.css │ │ │ │ │ ├── location.min3f0d.css │ │ │ │ │ ├── mailbox.min3f0d.css │ │ │ │ │ ├── media.min3f0d.css │ │ │ │ │ ├── message.min3f0d.css │ │ │ │ │ ├── notebook.min3f0d.css │ │ │ │ │ ├── projects.min3f0d.css │ │ │ │ │ ├── taskboard.min3f0d.css │ │ │ │ │ └── work.min3f0d.css │ │ │ │ ├── charts │ │ │ │ │ ├── chartist.min3f0d.css │ │ │ │ │ ├── chartjs.min3f0d.css │ │ │ │ │ ├── flot.min3f0d.css │ │ │ │ │ ├── pie-progress.min3f0d.css │ │ │ │ │ └── sparkline.min3f0d.css │ │ │ │ ├── dashboard │ │ │ │ │ ├── analytics.min3f0d.css │ │ │ │ │ ├── ecommerce.min3f0d.css │ │ │ │ │ ├── team.min3f0d.css │ │ │ │ │ ├── v1.min3f0d.css │ │ │ │ │ └── v2.min3f0d.css │ │ │ │ ├── forms │ │ │ │ │ ├── advanced.min3f0d.css │ │ │ │ │ ├── image-cropping.min3f0d.css │ │ │ │ │ ├── layouts.min3f0d.css │ │ │ │ │ ├── masks.min3f0d.css │ │ │ │ │ └── validation.min3f0d.css │ │ │ │ ├── layouts │ │ │ │ │ ├── headers.min3f0d.css │ │ │ │ │ └── panel-transition.min3f0d.css │ │ │ │ ├── pages │ │ │ │ │ ├── code-editor.min3f0d.css │ │ │ │ │ ├── email.min3f0d.css │ │ │ │ │ ├── errors.min3f0d.css │ │ │ │ │ ├── forgot-password.min3f0d.css │ │ │ │ │ ├── gallery-grid.min3f0d.css │ │ │ │ │ ├── gallery.min3f0d.css │ │ │ │ │ ├── invoice.min3f0d.css │ │ │ │ │ ├── lockscreen.min3f0d.css │ │ │ │ │ ├── login-v2.min3f0d.css │ │ │ │ │ ├── login-v3.min3f0d.css │ │ │ │ │ ├── login.min3f0d.css │ │ │ │ │ ├── maintenance.min3f0d.css │ │ │ │ │ ├── map.min3f0d.css │ │ │ │ │ ├── profile.min3f0d.css │ │ │ │ │ ├── register-v2.min3f0d.css │ │ │ │ │ ├── register-v3.min3f0d.css │ │ │ │ │ ├── register.min3f0d.css │ │ │ │ │ ├── search-result.min3f0d.css │ │ │ │ │ ├── site-map.min3f0d.css │ │ │ │ │ └── user.min3f0d.css │ │ │ │ ├── structure │ │ │ │ │ ├── alerts.min3f0d.css │ │ │ │ │ ├── breadcrumbs.min3f0d.css │ │ │ │ │ ├── chat.min3f0d.css │ │ │ │ │ ├── navbars.min3f0d.css │ │ │ │ │ ├── pagination.min3f0d.css │ │ │ │ │ ├── ribbon.min3f0d.css │ │ │ │ │ ├── testimonials.min3f0d.css │ │ │ │ │ └── timeline.min3f0d.css │ │ │ │ ├── tables │ │ │ │ │ ├── datatable.min3f0d.css │ │ │ │ │ └── jsgrid.min3f0d.css │ │ │ │ ├── uikit │ │ │ │ │ ├── badges-labels.min3f0d.css │ │ │ │ │ ├── buttons.min3f0d.css │ │ │ │ │ ├── carousel.min3f0d.css │ │ │ │ │ ├── colors.min3f0d.css │ │ │ │ │ ├── dropdowns.min3f0d.css │ │ │ │ │ ├── icon.min3f0d.css │ │ │ │ │ ├── icons.min3f0d.css │ │ │ │ │ ├── modals.min3f0d.css │ │ │ │ │ ├── panel-portlets.min3f0d.css │ │ │ │ │ ├── progress-bars.min3f0d.css │ │ │ │ │ └── utilities.min3f0d.css │ │ │ │ └── widgets │ │ │ │ │ ├── chart.min3f0d.css │ │ │ │ │ ├── data.min3f0d.css │ │ │ │ │ ├── social.min3f0d.css │ │ │ │ │ ├── statistics.min3f0d.css │ │ │ │ │ └── weather.min3f0d.css │ │ │ ├── images │ │ │ │ ├── browser │ │ │ │ │ ├── chrome-logo.png │ │ │ │ │ ├── firefox-logo.png │ │ │ │ │ ├── internet-logo.png │ │ │ │ │ ├── opera-logo.png │ │ │ │ │ └── safari-logo.png │ │ │ │ ├── country │ │ │ │ │ ├── australia-icon.png │ │ │ │ │ ├── canada-icon.png │ │ │ │ │ ├── china-icon.png │ │ │ │ │ ├── germany-icon.png │ │ │ │ │ ├── uk-icon.png │ │ │ │ │ └── usa-icon.png │ │ │ │ ├── navbar │ │ │ │ │ ├── fixed-to-bottom.png │ │ │ │ │ └── fixed-to-top.png │ │ │ │ └── products │ │ │ │ │ ├── applewatch.png │ │ │ │ │ ├── imac.png │ │ │ │ │ ├── iphone.png │ │ │ │ │ └── macmouse.png │ │ │ └── js │ │ │ │ ├── advanced │ │ │ │ ├── animation.min.js │ │ │ │ ├── bootbox-sweetalert.min.js │ │ │ │ ├── context-menu.min.js │ │ │ │ ├── highlight.min.js │ │ │ │ ├── lightbox.min.js │ │ │ │ ├── maps-google.min.js │ │ │ │ ├── scrollable.min.js │ │ │ │ └── treeview.min.js │ │ │ │ ├── apps │ │ │ │ ├── calendar.min.js │ │ │ │ ├── contacts.min.js │ │ │ │ ├── documents.min.js │ │ │ │ ├── forum.min.js │ │ │ │ ├── location.min.js │ │ │ │ ├── mailbox.min.js │ │ │ │ ├── media.min.js │ │ │ │ ├── message.min.js │ │ │ │ ├── notebook.min.js │ │ │ │ ├── projects.min.js │ │ │ │ ├── taskboard.min.js │ │ │ │ └── work.min.js │ │ │ │ ├── charts │ │ │ │ ├── c3.min.js │ │ │ │ ├── chartist.min.js │ │ │ │ ├── chartjs.min.js │ │ │ │ ├── flot.min.js │ │ │ │ ├── gauges.min.js │ │ │ │ ├── morris.min.js │ │ │ │ ├── peity.min.js │ │ │ │ ├── pie-progress.min.js │ │ │ │ ├── rickshaw.min.js │ │ │ │ └── sparkline.min.js │ │ │ │ ├── dashboard │ │ │ │ ├── analytics.min.js │ │ │ │ ├── ecommerce.min.js │ │ │ │ ├── team.min.js │ │ │ │ ├── v1.min.js │ │ │ │ └── v2.min.js │ │ │ │ ├── forms │ │ │ │ ├── advanced.min.js │ │ │ │ ├── editable.min.js │ │ │ │ ├── editor-summernote.min.js │ │ │ │ ├── image-cropping.min.js │ │ │ │ ├── uploads.min.js │ │ │ │ ├── validation.min.js │ │ │ │ └── wizard.min.js │ │ │ │ ├── layouts │ │ │ │ └── panel-transition.min.js │ │ │ │ ├── pages │ │ │ │ ├── code-editor.min.js │ │ │ │ ├── faq.min.js │ │ │ │ ├── gallery.min.js │ │ │ │ ├── map-google.min.js │ │ │ │ └── map-vector.min.js │ │ │ │ ├── structure │ │ │ │ └── timeline.min.js │ │ │ │ ├── tables │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── datatable.min.js │ │ │ │ ├── editable.min.js │ │ │ │ ├── footable.min.js │ │ │ │ ├── jsgrid-db.min.js │ │ │ │ └── jsgrid.min.js │ │ │ │ ├── uikit │ │ │ │ ├── carousel.min.js │ │ │ │ ├── icon.min.js │ │ │ │ ├── panel-actions.min.js │ │ │ │ ├── panel-structure.min.js │ │ │ │ ├── progress-bars.min.js │ │ │ │ └── tooltip-popover.min.js │ │ │ │ └── widgets │ │ │ │ ├── chart.min.js │ │ │ │ └── weather.min.js │ │ ├── images │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon.ico │ │ │ ├── logo-blue.png │ │ │ ├── logo-blue@2x.png │ │ │ ├── logo.png │ │ │ └── logo@2x.png │ │ └── js │ │ │ ├── app.min.js │ │ │ ├── configs │ │ │ └── config-tour.min.js │ │ │ ├── sections │ │ │ ├── gridmenu.min.js │ │ │ ├── menu.min.js │ │ │ ├── menubar.min.js │ │ │ ├── sidebar.min.js │ │ │ └── skintools.min.js │ │ │ └── site.min.js │ ├── css │ │ ├── bootstrap-extend.min3f0d.css │ │ ├── bootstrap.min3f0d.css │ │ └── skintools.min3f0d.css │ ├── fonts │ │ ├── 7-stroke │ │ │ ├── 7-stroke.min3f0d.css │ │ │ ├── Pe-icon-7-strokebb1d.eot │ │ │ ├── Pe-icon-7-strokebb1d.svg │ │ │ ├── Pe-icon-7-strokebb1d.ttf │ │ │ ├── Pe-icon-7-strokebb1d.woff │ │ │ └── Pe-icon-7-stroked41d.eot │ │ ├── brand-icons │ │ │ ├── brand-icons.min3f0d.css │ │ │ ├── brand-iconsa29e.eot │ │ │ ├── brand-iconsa29e.svg │ │ │ ├── brand-iconsa29e.ttf │ │ │ ├── brand-iconsa29e.woff │ │ │ ├── brand-iconsa29e.woff2 │ │ │ └── brand-iconsd41d.eot │ │ ├── font-awesome │ │ │ ├── font-awesome.min3f0d.css │ │ │ ├── fontawesome-webfont914c.eot │ │ │ ├── fontawesome-webfont914c.svg │ │ │ ├── fontawesome-webfont914c.ttf │ │ │ ├── fontawesome-webfont914c.woff │ │ │ ├── fontawesome-webfont914c.woff2 │ │ │ └── fontawesome-webfontd41d.eot │ │ ├── glyphicons │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ ├── glyphicons-halflings-regular.woff2 │ │ │ ├── glyphicons-halflings-regulard41d.eot │ │ │ └── glyphicons.min3f0d.css │ │ ├── ionicons │ │ │ ├── ionicons.min3f0d.css │ │ │ ├── ionicons790f.eot │ │ │ ├── ionicons790f.svg │ │ │ ├── ionicons790f.ttf │ │ │ └── ionicons790f.woff │ │ ├── material-design │ │ │ ├── Material-Design-Iconic-Fontd1f1.ttf │ │ │ ├── Material-Design-Iconic-Fontd1f1.woff │ │ │ ├── Material-Design-Iconic-Fontd1f1.woff2 │ │ │ └── material-design.min3f0d.css │ │ ├── mfglabs │ │ │ ├── mfglabs.min3f0d.css │ │ │ ├── mfglabsiconset-webfont.eot │ │ │ ├── mfglabsiconset-webfont.svg │ │ │ ├── mfglabsiconset-webfont.ttf │ │ │ ├── mfglabsiconset-webfont.woff │ │ │ └── mfglabsiconset-webfontd41d.eot │ │ ├── octicons │ │ │ ├── octicons.min3f0d.css │ │ │ ├── octicons9f24.eot │ │ │ ├── octicons9f24.svg │ │ │ ├── octicons9f24.ttf │ │ │ ├── octicons9f24.woff │ │ │ └── octiconsd41d.eot │ │ ├── open-iconic │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.min3f0d.css │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ ├── open-iconic.woff │ │ │ └── open-iconicd41d.eot │ │ ├── themify │ │ │ ├── themify.min3f0d.css │ │ │ ├── themify9f24.eot │ │ │ ├── themify9f24.svg │ │ │ ├── themify9f24.ttf │ │ │ ├── themify9f24.woff │ │ │ └── themifyd41d.eot │ │ ├── weather-icons │ │ │ ├── weather-icons.min3f0d.css │ │ │ ├── weathericons-regular-webfont.eot │ │ │ ├── weathericons-regular-webfont.svg │ │ │ ├── weathericons-regular-webfont.ttf │ │ │ ├── weathericons-regular-webfont.woff │ │ │ └── weathericons-regular-webfontd41d.eot │ │ └── web-icons │ │ │ ├── web-icons.min3f0d.css │ │ │ ├── web-iconsd41d.eot │ │ │ ├── web-iconsd622.eot │ │ │ ├── web-iconsd622.svg │ │ │ ├── web-iconsd622.ttf │ │ │ ├── web-iconsd622.woff │ │ │ └── web-iconsd622.woff2 │ └── js │ │ ├── components │ │ ├── ace.min.js │ │ ├── alertify-js.min.js │ │ ├── animate-list.min.js │ │ ├── animsition.min.js │ │ ├── asbreadcrumbs.min.js │ │ ├── ascolorpicker.min.js │ │ ├── aspaginator.min.js │ │ ├── aspieprogress.min.js │ │ ├── asprogress.min.js │ │ ├── asrange.min.js │ │ ├── asscrollable.min.js │ │ ├── asspinner.min.js │ │ ├── bootbox.min.js │ │ ├── bootstrap-datepicker.min.js │ │ ├── bootstrap-maxlength.min.js │ │ ├── bootstrap-select.min.js │ │ ├── bootstrap-sweetalert.min.js │ │ ├── bootstrap-tagsinput.min.js │ │ ├── bootstrap-tokenfield.min.js │ │ ├── bootstrap-touchspin.min.js │ │ ├── bootstrap-treeview.min.js │ │ ├── buttons.min.js │ │ ├── card.min.js │ │ ├── clockpicker.min.js │ │ ├── datatables.min.js │ │ ├── datepair-js.min.js │ │ ├── dropify.min.js │ │ ├── editable-table.min.js │ │ ├── filterable.min.js │ │ ├── formatter-js.min.js │ │ ├── gauge-js.min.js │ │ ├── gmaps.min.js │ │ ├── gridstack.min.js │ │ ├── highlight-js.min.js │ │ ├── html5sortable.min.js │ │ ├── icheck.min.js │ │ ├── input-group-file.min.js │ │ ├── jquery-appear.min.js │ │ ├── jquery-floatthead.min.js │ │ ├── jquery-knob.min.js │ │ ├── jquery-labelauty.min.js │ │ ├── jquery-placeholder.min.js │ │ ├── jquery-strength.min.js │ │ ├── jquery-wizard.min.js │ │ ├── jt-timepicker.min.js │ │ ├── jvectormap.min.js │ │ ├── ladda-bootstrap.min.js │ │ ├── magnific-popup.min.js │ │ ├── masonry.min.js │ │ ├── matchheight.min.js │ │ ├── material.min.js │ │ ├── multi-select.min.js │ │ ├── nestable.min.js │ │ ├── nprogress.min.js │ │ ├── owl-carousel.min.js │ │ ├── panel.min.js │ │ ├── peity.min.js │ │ ├── plyr.min.js │ │ ├── raty.min.js │ │ ├── select2.min.js │ │ ├── selectable.min.js │ │ ├── slidepanel.min.js │ │ ├── summernote.min.js │ │ ├── switchery.min.js │ │ ├── table.min.js │ │ ├── tabs.min.js │ │ ├── tasklist.min.js │ │ ├── toastr.min.js │ │ ├── toolbar.min.js │ │ └── webui-popover.min.js │ │ ├── configs │ │ └── config-colors.min.js │ │ ├── core.min.js │ │ └── plugins │ │ ├── action-btn.min.js │ │ ├── closeable-tabs.min.js │ │ ├── responsive-tabs.min.js │ │ ├── selectable.min.js │ │ └── sticky-header.min.js ├── data │ └── country-by-name.json ├── favicon.ico ├── index.php ├── js │ ├── app.js │ ├── lnf.js │ └── tinymce │ │ ├── jquery.tinymce.min.js │ │ ├── langs │ │ └── readme.md │ │ ├── license.txt │ │ ├── plugins │ │ ├── advlist │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ └── plugin.min.js │ │ ├── code │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ ├── css │ │ │ │ └── prism.css │ │ │ └── plugin.min.js │ │ ├── colorpicker │ │ │ └── plugin.min.js │ │ ├── contextmenu │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ └── plugin.min.js │ │ ├── help │ │ │ ├── img │ │ │ │ └── logo.png │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ └── plugin.min.js │ │ ├── image │ │ │ └── plugin.min.js │ │ ├── imagetools │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ └── plugin.min.js │ │ ├── link │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ └── plugin.min.js │ │ ├── media │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ └── plugin.min.js │ │ ├── print │ │ │ └── plugin.min.js │ │ ├── save │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ └── plugin.min.js │ │ ├── table │ │ │ └── plugin.min.js │ │ ├── template │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ └── plugin.min.js │ │ ├── textpattern │ │ │ └── plugin.min.js │ │ ├── toc │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ └── visualblocks.css │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ └── plugin.min.js │ │ ├── skins │ │ └── lightgray │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── fonts │ │ │ ├── tinymce-small.eot │ │ │ ├── tinymce-small.svg │ │ │ ├── tinymce-small.ttf │ │ │ ├── tinymce-small.woff │ │ │ ├── tinymce.eot │ │ │ ├── tinymce.svg │ │ │ ├── tinymce.ttf │ │ │ └── tinymce.woff │ │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── loader.gif │ │ │ ├── object.gif │ │ │ └── trans.gif │ │ │ └── skin.min.css │ │ ├── themes │ │ ├── inlite │ │ │ └── theme.min.js │ │ └── modern │ │ │ └── theme.min.js │ │ └── tinymce.min.js ├── robots.txt └── web.config ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── Example.vue │ └── sass │ │ ├── _variables.scss │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ ├── home.blade.php │ ├── itemdetails.blade.php │ ├── layouts │ ├── app.blade.php │ └── user.blade.php │ ├── partials │ ├── message-block.blade.php │ └── search.blade.php │ ├── searchresults.blade.php │ ├── user │ ├── items │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── new.blade.php │ └── profile │ │ ├── edit.blade.php │ │ └── index.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.env.example: -------------------------------------------------------------------------------- 1 | APP_NAME=Laravel 2 | APP_ENV=local 3 | APP_KEY= 4 | APP_DEBUG=true 5 | APP_LOG_LEVEL=debug 6 | APP_URL=http://localhost 7 | 8 | DB_CONNECTION=mysql 9 | DB_HOST=127.0.0.1 10 | DB_PORT=3306 11 | DB_DATABASE=homestead 12 | DB_USERNAME=homestead 13 | DB_PASSWORD=secret 14 | 15 | BROADCAST_DRIVER=log 16 | CACHE_DRIVER=file 17 | SESSION_DRIVER=file 18 | QUEUE_DRIVER=sync 19 | 20 | REDIS_HOST=127.0.0.1 21 | REDIS_PASSWORD=null 22 | REDIS_PORT=6379 23 | 24 | MAIL_DRIVER=smtp 25 | MAIL_HOST=smtp.mailtrap.io 26 | MAIL_PORT=2525 27 | MAIL_USERNAME=null 28 | MAIL_PASSWORD=null 29 | MAIL_ENCRYPTION=null 30 | 31 | PUSHER_APP_ID= 32 | PUSHER_APP_KEY= 33 | PUSHER_APP_SECRET= 34 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | node_modules/ 3 | npm-debug.log 4 | 5 | # Laravel 4 specific 6 | bootstrap/compiled.php 7 | app/storage/ 8 | 9 | # Laravel 5 & Lumen specific 10 | public/storage 11 | public/hot 12 | storage/*.key 13 | .env.*.php 14 | .env.php 15 | .env 16 | Homestead.yaml 17 | Homestead.json 18 | 19 | # Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer 20 | .rocketeer/ 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # lost-and-found -------------------------------------------------------------------------------- /app/Admin.php: -------------------------------------------------------------------------------- 1 | hasMany(Item::class); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- 1 | command('inspire') 28 | // ->hourly(); 29 | } 30 | 31 | /** 32 | * Register the Closure based commands for the application. 33 | * 34 | * @return void 35 | */ 36 | protected function commands() 37 | { 38 | require base_path('routes/console.php'); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /app/Helpers/ItemsHelper.php: -------------------------------------------------------------------------------- 1 | where('user_id', $userID); 14 | 15 | return $lostItems->count(); 16 | } 17 | 18 | public static function getFoundItems($userID) 19 | { 20 | $foundItems = Item::where('category', 'found') 21 | ->where('user_id', $userID); 22 | 23 | return $foundItems->count(); 24 | } 25 | 26 | public static function getAllPostedItems() 27 | { 28 | $postedItems = Item::take(12)->inRandomOrder()->get(); 29 | return $postedItems; 30 | } 31 | 32 | public static function getItemDetails($itemID) 33 | { 34 | $item = Item::find($itemID); 35 | return $item; 36 | } 37 | 38 | public static function itemToEdit($itemID) 39 | { 40 | $item = Item::find($itemID); 41 | return $item; 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AdminLoginController.php: -------------------------------------------------------------------------------- 1 | middleware('guest:admin')->except('logout'); 14 | } 15 | 16 | public function showLoginForm() 17 | { 18 | // 19 | } 20 | 21 | public function login(Request $request) 22 | { 23 | // 24 | } 25 | 26 | public function logout() 27 | { 28 | Auth::guard('admin')->logout(); 29 | return redirect('/'); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- 1 | middleware('guest'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- 1 | middleware('guest')->except('logout'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- 1 | middleware('guest'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | user; 21 | 22 | return view('itemdetails', compact('item', 'author')); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- 1 | middleware('auth'); 20 | } 21 | 22 | /** 23 | * Show the application dashboard. 24 | * 25 | * @return \Illuminate\Http\Response 26 | */ 27 | public function index() 28 | { 29 | return view('home'); 30 | } 31 | 32 | public function showProfile() 33 | { 34 | $user = Auth::user(); 35 | $lostItems = ItemsHelper::getLostItems(Auth::id()); 36 | $foundItems = ItemsHelper::getFoundItems(Auth::id()); 37 | 38 | return view('user.profile.index', compact('user', 'lostItems', 'foundItems')); 39 | } 40 | 41 | public function editProfile() 42 | { 43 | $user = Auth::user(); 44 | 45 | return view('user.profile.edit', compact('user')); 46 | } 47 | 48 | public function processEditProfile(Request $request, $userID) 49 | { 50 | $userID = Auth::id(); 51 | $user = User::find($userID); 52 | 53 | $user->name = $request->name; 54 | $user->location = $request->location; 55 | $user->phone = $request->phone; 56 | if ($user->update()) { 57 | return redirect()->route('profile')->with('success', 'Profile updated Successfully!'); 58 | } 59 | return redirect()->back()->with('err', 'Oops! An error occured while updating your profile.'); 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /app/Http/Controllers/SearchController.php: -------------------------------------------------------------------------------- 1 | input('query'); 13 | $items = $item->searchItems($query); 14 | 15 | return view('searchresults', compact('items')); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | check()) { 21 | return redirect('/home'); 22 | } 23 | 24 | return $next($request); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | belongsTo(Admin::class); 12 | } 13 | 14 | public function user() 15 | { 16 | return $this->belongsTo(User::class); 17 | } 18 | 19 | public function searchItems($query) 20 | { 21 | return $this->where('title', 'like', "%$query%") 22 | ->orWhere('description', 'like', "%$query%") 23 | ->orWhere('category', 'like', "%$query%") 24 | ->orWhere('country', 'like', "%$query%") 25 | ->orWhere('location', 'like', "%$query%") 26 | ->paginate(30); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- 1 | 'App\Policies\ModelPolicy', 17 | ]; 18 | 19 | /** 20 | * Register any authentication / authorization services. 21 | * 22 | * @return void 23 | */ 24 | public function boot() 25 | { 26 | $this->registerPolicies(); 27 | 28 | // 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | [ 17 | 'App\Listeners\EventListener', 18 | ], 19 | ]; 20 | 21 | /** 22 | * Register any events for your application. 23 | * 24 | * @return void 25 | */ 26 | public function boot() 27 | { 28 | parent::boot(); 29 | 30 | // 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- 1 | hasMany(Item::class); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- 1 | =5.6.4", 9 | "laravel/framework": "5.4.*", 10 | "laravel/tinker": "~1.0" 11 | }, 12 | "require-dev": { 13 | "fzaninotto/faker": "~1.4", 14 | "mockery/mockery": "0.9.*", 15 | "phpunit/phpunit": "~5.7" 16 | }, 17 | "autoload": { 18 | "classmap": [ 19 | "database" 20 | ], 21 | "psr-4": { 22 | "App\\": "app/" 23 | } 24 | }, 25 | "autoload-dev": { 26 | "psr-4": { 27 | "Tests\\": "tests/" 28 | } 29 | }, 30 | "scripts": { 31 | "post-root-package-install": [ 32 | "php -r \"file_exists('.env') || copy('.env.example', '.env');\"" 33 | ], 34 | "post-create-project-cmd": [ 35 | "php artisan key:generate" 36 | ], 37 | "post-install-cmd": [ 38 | "Illuminate\\Foundation\\ComposerScripts::postInstall", 39 | "php artisan optimize" 40 | ], 41 | "post-update-cmd": [ 42 | "Illuminate\\Foundation\\ComposerScripts::postUpdate", 43 | "php artisan optimize" 44 | ] 45 | }, 46 | "config": { 47 | "preferred-install": "dist", 48 | "sort-packages": true, 49 | "optimize-autoloader": true 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- 1 | [ 18 | 'domain' => env('MAILGUN_DOMAIN'), 19 | 'secret' => env('MAILGUN_SECRET'), 20 | ], 21 | 22 | 'ses' => [ 23 | 'key' => env('SES_KEY'), 24 | 'secret' => env('SES_SECRET'), 25 | 'region' => 'us-east-1', 26 | ], 27 | 28 | 'sparkpost' => [ 29 | 'secret' => env('SPARKPOST_SECRET'), 30 | ], 31 | 32 | 'stripe' => [ 33 | 'model' => App\User::class, 34 | 'key' => env('STRIPE_KEY'), 35 | 'secret' => env('STRIPE_SECRET'), 36 | ], 37 | 38 | ]; 39 | -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- 1 | [ 17 | resource_path('views'), 18 | ], 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Compiled View Path 23 | |-------------------------------------------------------------------------- 24 | | 25 | | This option determines where all the compiled Blade templates will be 26 | | stored for your application. Typically, this is within the storage 27 | | directory. However, as usual, you are free to change this value. 28 | | 29 | */ 30 | 31 | 'compiled' => realpath(storage_path('framework/views')), 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- 1 | define(App\User::class, function (Faker\Generator $faker) { 16 | static $password; 17 | 18 | return [ 19 | 'name' => $faker->name, 20 | 'email' => $faker->unique()->safeEmail, 21 | 'password' => $password ?: $password = bcrypt('secret'), 22 | 'remember_token' => str_random(10), 23 | ]; 24 | }); 25 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- 1 | increments('id'); 18 | $table->string('name'); 19 | $table->string('username'); 20 | $table->string('email')->unique(); 21 | $table->string('profilepic')->nullable(); 22 | $table->string('password'); 23 | $table->string('phone'); 24 | $table->string('location'); 25 | $table->rememberToken(); 26 | $table->timestamps(); 27 | }); 28 | } 29 | 30 | /** 31 | * Reverse the migrations. 32 | * 33 | * @return void 34 | */ 35 | public function down() 36 | { 37 | Schema::dropIfExists('users'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- 1 | string('email')->index(); 18 | $table->string('token'); 19 | $table->timestamp('created_at')->nullable(); 20 | }); 21 | } 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::dropIfExists('password_resets'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2017_09_11_205002_create_admins_table.php: -------------------------------------------------------------------------------- 1 | increments('id'); 18 | $table->string('name'); 19 | $table->string('email')->unique(); 20 | $table->string('password'); 21 | $table->string('authkey'); 22 | $table->timestamps(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('admins'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /database/migrations/2017_09_11_211121_create_items_table.php: -------------------------------------------------------------------------------- 1 | increments('id'); 18 | $table->string('title'); 19 | $table->text('description'); 20 | $table->string('image'); 21 | $table->enum('category', ['lost', 'found'])->default('lost'); 22 | $table->string('country')->default('Nigeria'); 23 | $table->string('location')->default('Osun'); 24 | $table->integer('user_id')->unsigned(); 25 | $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); 26 | $table->timestamps(); 27 | }); 28 | } 29 | 30 | /** 31 | * Reverse the migrations. 32 | * 33 | * @return void 34 | */ 35 | public function down() 36 | { 37 | Schema::dropIfExists('items'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call(UsersTableSeeder::class); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "npm run development", 5 | "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", 6 | "watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", 7 | "watch-poll": "npm run watch -- --watch-poll", 8 | "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", 9 | "prod": "npm run production", 10 | "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" 11 | }, 12 | "devDependencies": { 13 | "axios": "^0.19.0", 14 | "bootstrap-sass": "^3.3.7", 15 | "cross-env": "^5.0.1", 16 | "jquery": "^3.1.1", 17 | "laravel-mix": "^1.0", 18 | "lodash": "^4.17.4", 19 | "vue": "^2.1.10" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | ./tests/Feature 14 | 15 | 16 | 17 | ./tests/Unit 18 | 19 | 20 | 21 | 22 | ./app 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Redirect Trailing Slashes If Not A Folder... 9 | RewriteCond %{REQUEST_FILENAME} !-d 10 | RewriteRule ^(.*)/$ /$1 [L,R=301] 11 | 12 | # Handle Front Controller... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_FILENAME} !-f 15 | RewriteRule ^ index.php [L] 16 | 17 | # Handle Authorization Header 18 | RewriteCond %{HTTP:Authorization} . 19 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 20 | 21 | -------------------------------------------------------------------------------- /public/assets/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/assets/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/assets/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/assets/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/assets/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/ElegantIcons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/fonts/ElegantIcons.eot -------------------------------------------------------------------------------- /public/assets/fonts/ElegantIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/fonts/ElegantIcons.ttf -------------------------------------------------------------------------------- /public/assets/fonts/ElegantIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/fonts/ElegantIcons.woff -------------------------------------------------------------------------------- /public/assets/fonts/ElegantIconsd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/fonts/ElegantIconsd41d.eot -------------------------------------------------------------------------------- /public/assets/fonts/et-line.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/fonts/et-line.eot -------------------------------------------------------------------------------- /public/assets/fonts/et-line.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/fonts/et-line.ttf -------------------------------------------------------------------------------- /public/assets/fonts/et-line.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/fonts/et-line.woff -------------------------------------------------------------------------------- /public/assets/fonts/et-lined41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/fonts/et-lined41d.eot -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular-2.html: -------------------------------------------------------------------------------- 1 |

Not Found

The resource could not be found.

-------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular-3.html: -------------------------------------------------------------------------------- 1 |

Not Found

The resource could not be found.

-------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular-4.html: -------------------------------------------------------------------------------- 1 |

Not Found

The resource could not be found.

-------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.html: -------------------------------------------------------------------------------- 1 |

Not Found

The resource could not be found.

-------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regulard41d.html: -------------------------------------------------------------------------------- 1 |

Not Found

The resource could not be found.

-------------------------------------------------------------------------------- /public/assets/img/blog-masonry-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/blog-masonry-1.jpg -------------------------------------------------------------------------------- /public/assets/img/blog-masonry-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/blog-masonry-2.jpg -------------------------------------------------------------------------------- /public/assets/img/board-4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/board-4.jpeg -------------------------------------------------------------------------------- /public/assets/img/bottom1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/bottom1.jpg -------------------------------------------------------------------------------- /public/assets/img/grey-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/grey-bg.jpg -------------------------------------------------------------------------------- /public/assets/img/header2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/header2.jpg -------------------------------------------------------------------------------- /public/assets/img/hero10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/hero10.jpg -------------------------------------------------------------------------------- /public/assets/img/hero20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/hero20.jpg -------------------------------------------------------------------------------- /public/assets/img/hero23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/hero23.jpg -------------------------------------------------------------------------------- /public/assets/img/hero3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/hero3.jpg -------------------------------------------------------------------------------- /public/assets/img/hero6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/hero6.jpg -------------------------------------------------------------------------------- /public/assets/img/lightbox/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/lightbox/close.png -------------------------------------------------------------------------------- /public/assets/img/lightbox/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/lightbox/loading.gif -------------------------------------------------------------------------------- /public/assets/img/lightbox/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/lightbox/next.png -------------------------------------------------------------------------------- /public/assets/img/lightbox/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/lightbox/prev.png -------------------------------------------------------------------------------- /public/assets/img/logo-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/logo-big.jpg -------------------------------------------------------------------------------- /public/assets/img/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/logo-dark.png -------------------------------------------------------------------------------- /public/assets/img/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/logo-light.png -------------------------------------------------------------------------------- /public/assets/img/logo-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/logo-small.jpg -------------------------------------------------------------------------------- /public/assets/img/oaunoticeboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/oaunoticeboard.jpg -------------------------------------------------------------------------------- /public/assets/img/project4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/project4.jpg -------------------------------------------------------------------------------- /public/assets/img/team-small-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/team-small-1.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/alertify.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .toast-example{position:static!important;margin:10px 0 30px}.toast-example.padding-0{margin-bottom:30px}.toast-example>div{width:auto;padding-top:10px;padding-bottom:10px;margin-bottom:0}.position-example{position:relative;height:330px;margin-bottom:20px}.position-example>div{position:absolute;width:100%;padding:20px}.position-example>.btn-block+.btn-block{margin-top:215px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/animation.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example .animation-example{display:inline-block;cursor:pointer}.animation-delay-example button{-webkit-animation-name:fade-scale-02;-o-animation-name:fade-scale-02;animation-name:fade-scale-02;-webkit-animation-duration:.5s;-o-animation-duration:.5s;animation-duration:.5s;-webkit-animation-timing-function:ease-out;-o-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.animation-delay-example:not(:hover) button,.touch .animation-delay-example:not(.hover) button{-webkit-animation-name:none;-o-animation-name:none;animation-name:none} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/highlight.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example{margin:0} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/lightbox.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .lightbox-block{max-width:600px;padding:15px 20px;margin:40px auto;overflow:auto;background:#fff;border-radius:3px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/masonry.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-content .blocks>li{margin-bottom:30px}.page-content .blocks>li>.widget{margin-bottom:0} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/rating.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .rating-hint{display:inline;margin-left:10px;vertical-align:sub} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/scrollable.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example{position:relative;padding:10px;border:1px solid #e4eaec}.example .scrollable-horizontal .scrollable-content{width:1400px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/toastr.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .toast-example{position:static!important;margin:10px 0 30px}.toast-example.padding-0{margin-bottom:30px}.toast-example>div{width:auto;max-width:300px;margin-bottom:0}.position-example{position:relative;height:330px;margin-bottom:20px}.position-example>div{position:absolute;width:100%;padding:20px}.position-example>.btn-block+.btn-block{margin-top:215px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/apps/projects.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .app-projects .projects-sort-label{margin-right:3px;cursor:default}.app-projects .dropdown-toggle{cursor:pointer}.app-projects .projects-wrap{padding-top:30px}.app-projects .panel{padding:10px;margin-bottom:0}.app-projects .blocks>li{margin-bottom:30px}.app-projects .overlay{margin-bottom:12px;border-radius:4px;overflow:visible}.app-projects .overlay .btn-group{position:absolute;top:5px;right:5px}.app-projects .overlay .btn-icon{color:#bdbdbd}.app-projects .overlay .btn-icon:hover{color:#fff}.app-projects .overlay .project-button{color:#fff}.app-projects .overlay .project-button:hover{background-color:#fff;color:#526069}.app-projects .overlay .dropdown .dropdown-menu>li>a{padding:6px 8px}.app-projects .overlay .dropdown:hover .dropdown-toggle{color:#fff}.app-projects .overlay .dropdown:hover .dropdown-menu{display:block}.app-projects .overlay .dropdown-menu{color:#76838f;margin-top:0;min-width:110px}.app-projects .overlay .dropdown-menu a{text-decoration:none}.app-projects .overlay-panel{background:rgba(38,50,56,.8)} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/charts/chartjs.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .max-width{max-width:400px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/charts/flot.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | #exampleFlotCurve,#exampleFlotFullBg,#exampleFlotHorizontalBar,#exampleFlotMix,#exampleFlotPie,#exampleFlotRealtime,#exampleFlotStackBar,#exampleFlotVisitors{height:300px}#exampleFlotVisitorsOverview{height:120px}.legend td{padding:3px}@media (max-width:586px){.example-responsive{padding-bottom:10px}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/charts/pie-progress.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | #examplePie{max-width:350px}.pie-progress{max-width:150px;margin:0 auto}.pie-progress svg{width:100%}.pie-progress-xs{max-width:50px}.pie-progress-sm{max-width:100px}.pie-progress-lg{max-width:200px}.example.inline-block{margin-right:30px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/charts/sparkline.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .table>tbody>tr>td{vertical-align:middle} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/dashboard/v2.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .dashboard .page-header{background-image:url(../../images/dashboard2-header.jpg);-webkit-background-size:cover;background-size:cover}.dashboard .panel,.dashboard .widget{height:-webkit-calc(100% - 30px);height:calc(100% - 30px)}.dashboard .widget-content{height:100%}#widgetLinearea .ct-chart .ct-label.ct-horizontal,#widgetLinearea .ct-chart .ct-label.ct-vertical{font-size:14px}#widgetLinearea .ct-chart .ct-area{fill-opacity:1}#widgetLinearea .ct-chart .ct-series.ct-series-a .ct-area{fill:#d5e4f1}#widgetLinearea .ct-chart .ct-series.ct-series-b .ct-area{fill:#cdf4f1}#widgetLinearea ul .icon{vertical-align:text-bottom}#widgetGmap{overflow:hidden}#widgetGmap .map{border:none;padding:0} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/forms/advanced.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .bootstrap-select{width:100%!important}.datepair-wrap{position:relative;overflow:hidden}.input-daterange-wrap{float:left}.input-daterange-to{float:left;width:40px;height:40px;line-height:40px;text-align:center}@media (max-width:1360px){.input-daterange-to,.input-daterange-wrap{display:block;float:none}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/forms/image-cropping.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:0}.cropper-preview{overflow:hidden}.img-preview{float:left;margin:0 10px 10px 0;overflow:hidden}.img-preview>img{max-width:100%}.preview-lg{width:263px;height:148px}.preview-md{width:139px;height:78px}.preview-sm{width:69px;height:39px}.preview-xs{width:35px;height:20px;margin-right:0}.cropper,.cropper-toolbar{margin-bottom:30px}@media (min-width:1200px){.cropper{max-height:600px}}@media (min-width:769px){.cropper{max-height:400px}}@media (max-width:768px){.cropper{max-height:300px}}@media (max-width:480px){.cropper{max-height:246px}}@media (max-width:586px){.btn-group .btn{padding:6px 8px}.cropper{max-height:246px}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/forms/layouts.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | @media (min-width:768px) and (max-width:992px){.form-inline .control-label{display:block}.form-inline .form-group{margin-bottom:20px;vertical-align:baseline}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/forms/masks.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | @import url(http://fonts.googleapis.com/css?family=Roboto+Mono);[data-plugin=formatter]{font-family:'Roboto Mono',Menlo,Monaco,Consolas,"Courier New",monospace} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/forms/validation.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .has-feedback .form-control-feedback{right:15px}.summary-errors p{color:inherit}.summary-errors ul li a{color:inherit}.summary-errors ul li a:hover{text-decoration:none}@media (min-width:768px){#exampleFullForm .form-horizontal .control-label{text-align:inherit}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/layouts/headers.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example-well .page-header{padding:30px 20px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/layouts/panel-transition.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-header{z-index:100}@media screen and (max-width:480px){.page-content .blocks li,.page-content [class*=blocks-] li{width:100%}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/code-editor.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-code-editor .page{height:-webkit-calc(56%);height:calc(56%)}.page-code-editor .page-content,.page-code-editor .page-main{padding:0;height:100%}.page-code-editor .page-aside-inner{height:100%}.page-code-editor .treeview .list-group-item.node-selected{background-color:#f3f7f9}.page-code-editor .treeview .list-group-item.node-selected,.page-code-editor .treeview .list-group-item.node-selected .node-icon{color:#62a8ea}.page-code-editor .CodeMirror{height:100%} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/email.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-email .page-content .panel{max-width:660px;margin:0 auto}.page-email .page-content .widget{padding:20px 0;margin:0}.page-email .page-content .widget-header{margin-bottom:35px}.page-email .page-content .widget-body h3{margin-bottom:20px}.page-email .page-content .widget-body-footer{margin-top:25px}.page-email .email-title{padding:15px 0 5px;text-align:center}.page-email .email-more{margin-top:40px;padding:35px 0 10px;text-align:center;border-top:1px solid #e4eaec}.page-email .email-more-title{font-size:20px}.page-email .email-more-content{padding:47px 0 54px}.page-email .email-more-social{padding:20px 0}.page-email .email-more-social a{margin:0 7px;padding:5px;text-decoration:none}.page-email .email-more-social .icon{color:rgba(55,71,79,.4);font-size:16px}.page-email .email-more-social .icon:focus,.page-email .email-more-social .icon:hover{color:rgba(55,71,79,.6)}.page-email .email-more-social .icon.active,.page-email .email-more-social .icon:active{color:#37474f}.page-email .email-unsubscribe{text-decoration:underline} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/errors.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-error .error-mark{margin-bottom:33px}.page-error header h1{font-size:10em;font-weight:400}.page-error header p{margin-bottom:30px;font-size:30px;text-transform:uppercase}.page-error h2{margin-bottom:30px}.page-error .error-advise{margin-bottom:25px;color:#A9AFB5} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/forgot-password.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-forgot-password{background-color:#f3f7f9}.page-forgot-password p{color:#a3afb7}.page-forgot-password form{width:250px;margin:30px auto} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/gallery-grid.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-gallery-grid .widget{margin-bottom:0}.page-gallery-grid .cover,.page-gallery-grid .cover-image,.page-gallery-grid .widget{height:100%;border-radius:0} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/gallery.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | @media (max-width:479px){.page-header-tabs .nav-tabs-line>li>a{padding:5px 12px}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/invoice.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-invoice-table{margin-top:40px;margin-bottom:20px}.page-invoice-table tbody{border-bottom:1px solid #e4eaec}.page-invoice-table .table>tbody>tr>td,.page-invoice-table .table>tbody>tr>th,.page-invoice-table .table>tfoot>tr>td,.page-invoice-table .table>tfoot>tr>th,.page-invoice-table .table>thead>tr>td,.page-invoice-table .table>thead>tr>th{padding:15px 8px}.page-invoice-amount{margin-bottom:40px;padding-top:10px;font-size:20px;border-top:1px solid #e4eaec}@media (max-width:767px){.page-invoice .page-content .btn-animate{margin-bottom:10px}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/lockscreen.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-locked:before{background-image:url(../../images/lockscreen.jpg)}.page-locked .avatar{margin-bottom:15px}.page-locked .locked-user{margin-bottom:35px}.page-locked form{width:300px;margin:22px auto} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/login.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-login:before{background-image:url(../../images/login.jpg)}.page-login form{width:340px;margin:30px 0}.page-login form a{margin-left:20px}@media (max-width:767px){.page-login form{width:auto}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/maintenance.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-maintenance-icon.icon{font-size:64px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/map.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-map-full #world-map,.page-map-full .gmap,.page-map-full .page{height:100%} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/profile.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-profile .widget-header{padding:40px 15px;background-color:#fff}.page-profile .widget-footer{padding:10px;background-color:#f6f9fd}.page-profile .widget .avatar{width:130px;margin-bottom:10px}.page-profile .profile-user{margin-bottom:10px;color:#263238}.page-profile .profile-job{margin-bottom:20px;color:#a3afb7}.page-profile .profile-social{margin:25px 0}.page-profile .profile-social .icon{margin:0 10px;color:rgba(55,71,79,.4)}.page-profile .profile-stat-count{display:block;margin-bottom:3px;color:#526069;font-size:20px;font-weight:100}.page-profile .profile-stat-count+span{color:#a3afb7}.page-profile .page-content .list-group-item{padding:25px 15px;border-top-color:#e4eaec}.page-profile .page-content .list-group-item:first-child{border-top:transparent}.page-profile .page-content .list-group-item:last-child{border-bottom-color:#e4eaec}.page-profile .page-content .list-group-item .media .avatar{width:50px}.page-profile .page-content .list-group-item .media small{color:#a3afb7}.page-profile .page-content .list-group-item .media-heading{font-size:16px}.page-profile .page-content .list-group-item .media-heading span{margin-left:5px;color:#76838f;font-size:14px}.page-profile .page-content .list-group-item .media .media:first-child{border-top:none}.page-profile .profile-readMore{margin:40px 0}.page-profile .profile-brief{margin-top:20px}.page-profile .profile-uploaded{max-width:220px;width:100%;max-height:150px;padding-right:20px;margin-bottom:5px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/register.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-register:before{background-image:url(../../images/login.jpg)}.page-register form{width:340px;margin:22px auto}@media (max-width:480px){.page-register form{width:auto}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/search-result.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-search-form{margin-bottom:35px}.page-search-title{font-size:26px}.page-search .list-group-item{padding-top:10px;padding-bottom:10px}.page-search .list-group-item>h4{margin-bottom:5px}.page-search .list-group-item>h4 a{color:#526069;text-decoration:none}.page-search .list-group-item>h4 a:hover{color:#37474f;text-decoration:none}.page-search .list-group-item>p:last-child{margin-bottom:0} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/user.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-user .page-content form{margin-bottom:40px}.page-user .page-content .list-group-item{padding:25px 0;border-top-color:#e4eaec}.page-user .page-content .list-group-item:first-child{border-top-color:transparent}.page-user .page-content .list-group-item:last-child{border-bottom-color:#e4eaec}.page-user .page-content .list-group-item .media-heading>small{margin-left:10px}.page-user .page-content .list-group-item p{margin-bottom:5px}.page-user .page-content .list-group-item .media-right{vertical-align:middle}.page-user .page-content .nav-tabs-horizontal{position:relative}.page-user .page-content .page-user-sortlist{position:absolute;right:0;top:5px;z-index:2}@media (max-width:991px){.page-user .page-content .page-user-sortlist{top:-15px}}@media (max-width:767px){.page-user .page-content .list-group-item .media-right{display:block;margin-top:15px;text-align:center}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/alerts.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .alert .btn-default{background-color:transparent;border-color:transparent} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/breadcrumbs.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .breadcrumb-left .breadcrumb-ellipsis{padding-left:5px}.breadcrumb-left .dropdown{display:inline-block}.breadcrumb-left .breadcrumb-dropdown li.active{padding:3px 20px}.breadcrumb-right .breadcrumb-ellipsis{padding-right:5px}.breadcrumb-right .dropdown{display:inline-block}.breadcrumb-right .breadcrumb-dropdown li.active{padding:3px 20px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/chat.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .alert .btn-default{background-color:transparent;border-color:transparent} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/navbars.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-content .navbar-fixed-bottom,.page-content .navbar-fixed-top{position:relative}.scrollspy-example{position:relative;height:200px;padding:0 20px;overflow:auto;-webkit-box-shadow:0 2px 4px rgba(0,0,0,.08);box-shadow:0 2px 4px rgba(0,0,0,.08)}.example-fixed{height:400px;line-height:400px;text-align:center}.example-grid .example-col{margin-bottom:10px;word-break:break-all} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/pagination.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .pagination{margin:0} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/ribbon.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example{position:relative;padding:50px 15px 15px 50px;background-color:#f3f7fa;border:1px solid #eee}.example-reverse{padding:50px 50px 15px 15px}.example-bottom{padding:15px 15px 50px 50px}.example-bottom-reverse{padding:15px 50px 50px 15px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/testimonials.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-content .testimonial{margin:0} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/timeline.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .tooltip-inner{white-space:nowrap} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/tables/datatable.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | @media (max-width:480px){.panel-actions .dataTables_length{display:none}}@media (max-width:320px){.panel-actions .dataTables_filter{display:none}}@media (max-width:767px){.dataTables_length{float:left}#exampleAddRow_wrapper .col-sm-12{overflow-x:auto}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/tables/jsgrid.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}@media (max-width:991px){#custom_view .panel-actions{position:relative;right:0;top:0;float:right;padding:0 30px 10px;-webkit-transform:none;-ms-transform:none;-o-transform:none;transform:none}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/badges-labels.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example>span{margin-right:16px}.example .label{line-height:30px}.example-2>span{margin-right:35px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/buttons.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .color-box{width:20px;height:40px;border-radius:4px}.btn.btn-direction{width:174px}.btn-pill-left,.btn-pill-right{width:120px}.active>.auto .text,.active>.text,.text-active{display:none!important}.active>.auto .text-active,.active>.text-active{display:inline-block!important}.active .icon{line-height:1}@media screen and (max-width:768px){.btn-group-justified .btn{min-height:50px}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/carousel.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .items{width:100%}.owl-carousel-shortcode .item{text-align:center}.slider{margin:0 25px 30px;text-align:center}.slider img{width:100%;border:5px solid #fff}.slider h3{position:relative;padding:10px;margin:0 10px;font-size:36px;line-height:100px;background:#f3f7f9}#exampleCenter h3{opacity:.5;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;-webkit-transform:scale(.95);-ms-transform:scale(.95);-o-transform:scale(.95);transform:scale(.95)}#exampleCenter .slick-center h3{color:#f2a654;opacity:1;-webkit-transform:scale(1.08);-ms-transform:scale(1.08);-o-transform:scale(1.08);transform:scale(1.08)} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/colors.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .color-primaries{padding:20px 0;margin-bottom:0}.color-primaries>div{display:inline-block;width:120px;height:120px;margin-right:40px;margin-bottom:20px;line-height:120px;color:#fff;text-align:center;border-radius:100%}.color-primaries>.bg-blue-grey-200{color:#868a8d}.color-palette{margin-bottom:25px}.color-palette h5{margin-bottom:27px}.color-palette .list-group{color:#fff}.color-palette .list-group-item{padding:15px 20px;border:none}.color-palette .list-group-item span+span{text-transform:uppercase}.color-box{width:100%;height:50px;padding-top:5px;padding-left:10px;margin-bottom:20px;color:#fff}.text-color-box{width:100%;height:200px;margin-bottom:15px}.example-alpha{width:100%;height:50px;margin-bottom:20px;line-height:50px;color:#fff;text-align:center}.example-divider{background-color:rgba(38,50,56,.1)!important}.example-border{max-width:300px;height:120px;margin-bottom:20px;border:1px solid #e4eaec}.example-border>div{float:left;width:50%;height:100%;padding-top:15px;padding-left:15px}.opacity-example span{display:inline-block;width:55px;white-space:nowrap}.opacity-four{color:rgba(55,71,79,.4)!important}.opacity-six{color:rgba(55,71,79,.6)!important}.opacity-eight{color:rgba(55,71,79,.8)!important}.blue-grey-700 i,.opacity-eight i,.opacity-four i,.opacity-six i{margin-right:5px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/dropdowns.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-content .dropdown-menu{width:240px}.blocks-dropdowns>li{margin-bottom:50px}.blocks-dropdowns .dropdown-menu{width:100%}@media (min-width:992px){.blocks-dropdowns>li{max-width:300px}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/icon.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-content .input-search{max-width:450px;margin:35px auto 32px}.asRange{display:inline-block;width:120px;margin:3px 10px}.rangeUi-bar{background-color:rgba(67,77,83,.15)}.rangeUi-pointer,.rangeUi-selected{background-color:#37474f}.rangeUi-pointer{top:-5px;width:14px;height:14px}.panel-body .row{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.icondemo-wrap{position:relative;height:100px;margin:18px 0;text-align:center}.icondemo-wrap:hover{color:#fff;background-color:#62a8ea}.icondemo .icon{font-size:24px}.icon-title{margin-top:2px;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.is-hide{display:none} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/icons.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .title-desc{max-width:550px;margin:20px auto 35px;color:#a3afb7}.page-content .panel-body .example{padding:15px 30px;margin-top:0;margin-bottom:50px}.example .icondemo{height:40px;margin:15px auto;font-size:16px;line-height:40px;text-align:center} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/modals.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example-modal{display:block;width:100%;padding:35px 15px;background-color:#f3f7f9}.example-modal .modal{position:relative;top:auto;right:auto;bottom:auto;left:auto;z-index:1;display:block}.example-modal .modal .modal-dialog{width:auto;max-width:600px;margin:15px auto}.example-modal-top .center{top:0;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);-o-transform:translate(-50%,0);transform:translate(-50%,0)}.example-modal-bottom .center{top:auto;bottom:0;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);-o-transform:translate(-50%,0);transform:translate(-50%,0)}.example-modal-sidebar .center{top:0;right:5px;left:auto;-webkit-transform:none;-ms-transform:none;-o-transform:none;transform:none}.color-selector>li{margin-right:20px}@media (max-width:479px){#examplePositionSidebar .modal-sidebar{min-width:260px}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/panel-portlets.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .grid-stack-item-content{font-size:20px;color:#526069;text-align:center;background:#fff}.grid-stack-item-content .fa{display:block;margin:20px 0 10px;font-size:64px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/progress-bars.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example-wrap .contextual-progress{margin:7px 0 36px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/utilities.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .visiblity-utilities th small{display:block;color:#999}.visiblity-utilities .is-visible{color:#468847;text-align:center;background-color:#dff0d8!important}.visiblity-utilities .is-hidden{color:#ccc;text-align:center;background-color:#f9f9f9!important} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/widgets/data.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .fixed-table-body{height:100%;overflow:auto}#daily-feed .name{font-weight:500;color:#526069;cursor:pointer;text-decoration:none}#daily-feed .content{margin-top:10px;margin-bottom:0}#tickets .hightlight{color:#526069;font-weight:500;cursor:pointer;text-decoration:none}#projects .table>tbody>tr>td,#projects .table>thead>tr>th{vertical-align:middle} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/widgets/social.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .widget{margin-bottom:30px;height:-webkit-calc(100% - 30px);height:calc(100% - 30px)}@media (max-width:480px){.background-bottom .col-xs-6{width:100%}.background-bottom .col-xs-6+.col-xs-6{margin-top:20px}.avatar-group .counter-icon{display:block}.avatar-group .counter-icon>i{margin:0!important}}@media (min-width:1200px) and (max-width:1366px){.col-lg-3{width:50%}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/widgets/statistics.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/widgets/weather.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .weather-location input{background-color:rgba(0,0,0,.5);border:1px solid rgba(255,255,255,.5)}.weather-location input:focus{border:1px solid rgba(255,255,255,.7)}.weather-day{height:150px;border-left:1px solid rgba(0,0,0,.05)}.weather-day.is-today{border-left:none} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/browser/chrome-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/browser/chrome-logo.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/browser/firefox-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/browser/firefox-logo.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/browser/internet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/browser/internet-logo.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/browser/opera-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/browser/opera-logo.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/browser/safari-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/browser/safari-logo.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/country/australia-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/country/australia-icon.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/country/canada-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/country/canada-icon.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/country/china-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/country/china-icon.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/country/germany-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/country/germany-icon.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/country/uk-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/country/uk-icon.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/country/usa-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/country/usa-icon.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/navbar/fixed-to-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/navbar/fixed-to-bottom.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/navbar/fixed-to-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/navbar/fixed-to-top.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/products/applewatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/products/applewatch.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/products/imac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/products/imac.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/products/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/products/iphone.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/products/macmouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/products/macmouse.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/advanced/context-menu.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run()}),function(){$("#exampleContext").contextmenu({target:"#exampleContextMenu",before:function(e){return e.preventDefault(),"SPAN"==e.target.tagName?(e.preventDefault(),this.closemenu(),!1):(this.getMenu().find("li").eq(4).find("a").html("This was dynamically changed"),!0)}})}(),function(){$("#exampleContext2").contextmenu({target:"#exampleContextMenu",onItem:function(context,e){alert($.trim($(e.target).text()))}}),$("#exampleContextMenu").on("show.bs.context",function(e){}),$("#exampleContextMenu").on("shown.bs.context",function(e){}),$("#exampleContextMenu").on("hide.bs.context",function(e){}),$("#exampleContextMenu").on("hidden.bs.context",function(e){})}()}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/advanced/highlight.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run()}),hljs.initHighlightingOnLoad()}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/apps/documents.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";window.AppDocuments=App.extend({affixHandle:function(){$("#articleAffix").affix({offset:{top:210}})},scrollHandle:function(){$("body").scrollspy({target:"#articleAffix"})},run:function(next){this.scrollHandle(),this.affixHandle(),next()}}),$(document).ready(function(){AppDocuments.run()})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/apps/forum.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";window.AppForum=App.extend({run:function(next){next()}}),$(document).ready(function(){AppForum.run()})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/apps/message.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";window.AppMessage=App.extend({scrollChatsToBottom:function(){var $chatsWrap=$(".app-message-chats"),chatsWrapH=$chatsWrap.height(),chatsH=$(".chats",$chatsWrap).outerHeight(),historyBtnH=$("#historyBtn").outerHeight();$chatsWrap.scrollTop(chatsH+historyBtnH-chatsWrapH)},handleResize:function(){var self=this;$(window).on("resize",function(){self.scrollChatsToBottom()})},handleTalking:function(){var self=this,$chatsWrap=$(".app-message-chats"),$textarea=$(".message-input textarea"),$textareaWrap=$(".app-message-input");autosize($(".message-input textarea")),$textarea.on("autosize:resized",function(){var height=$textareaWrap.outerHeight();$chatsWrap.css("height","calc(100% - "+height+"px)"),self.scrollChatsToBottom()}),$(".message-input-btn>button").on("click",function(){var talkContents=$(".message-input>.form-control").val(),$newMsg=$("

"+talkContents+"

");talkContents.length>0?($(".chat").last().find(".chat-body").append($newMsg),$(".message-input>.form-control").attr("placeholder",""),$(".message-input>.form-control").val("")):$(".message-input>.form-control").attr("placeholder","type text here..."),$(".message-input>.form-control").focus(),self.scrollChatsToBottom()})},run:function(next){this.scrollChatsToBottom(),this.handleResize(),this.handleTalking()}}),$(document).ready(function($){AppMessage.run()})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/apps/notebook.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";window.AppNoteBook=App.extend({handleAction:function(){var $actionBtn=$(".site-action").actionBtn({toggleSelector:".list-group-item",listSelector:".site-action-buttons"}).data("actionBtn"),$noteList=$(".list-group-item");$(".site-action-toggle").on("click",function(e){$noteList.hasClass("active")||($("#addNewNote").modal("show"),e.stopPropagation())}),$noteList.on("click",function(){$(this).siblings().removeClass("active"),$(this).addClass("active"),$(this).hasClass("active")&&($actionBtn.show(),$(".site-action-toggle").on("click",function(){$(".list-group-item").removeClass("active"),$actionBtn.hide()}))})},handleEdit:function(){$("#mdEdit").markdown({autofocus:!1,savable:!1})},handleResize:function(){var self=this;$(window).on("resize",function(){self.handleEdit()})},run:function(next){this.handleAction(),this.handleEdit()}}),$(document).ready(function($){AppNoteBook.run()})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/charts/gauges.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run()}),$(document).ready(function($){var dynamicGauge=$("#exampleDynamicGauge").data("gauge");setInterval(function(){var random=Math.round(1e3*Math.random()),options={strokeColor:$.colors("primary",500)};random>700?options.strokeColor=$.colors("pink",500):300>random&&(options.strokeColor=$.colors("green",500)),dynamicGauge.setOptions(options).set(random)},1500)}),$(document).ready(function($){var dynamicDonut=$("#exampleDynamicDonut").data("donut");setInterval(function(){var random=Math.round(1e3*Math.random()),options={strokeColor:$.colors("primary",500)};random>700?options.strokeColor=$.colors("pink",500):300>random&&(options.strokeColor=$.colors("green",500)),dynamicDonut.setOptions(options).set(random)},1500)})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/charts/peity.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run()}),function(){var dynamicChart=$("#examplePeityDynamic").peity("line",{width:64,fill:[$.colors("primary",200)],stroke:$.colors("primary",500),height:22});setInterval(function(){var random=Math.round(10*Math.random()),values=dynamicChart.text().split(",");values.shift(),values.push(random),dynamicChart.text(values.join(",")).change()},1e3)}(),function(){var dynamicRedChart=$("#examplePeityDynamicRed").peity("line",{width:64,fill:[$.colors("red",200)],stroke:$.colors("red",500),height:22});setInterval(function(){var random=Math.round(10*Math.random()),values=dynamicRedChart.text().split(",");values.shift(),values.push(random),dynamicRedChart.text(values.join(",")).change()},1e3)}(),function(){var dynamicGreenChart=$("#examplePeityDynamicGreen").peity("line",{width:64,fill:[$.colors("green",200)],stroke:$.colors("green",500),height:22});setInterval(function(){var random=Math.round(10*Math.random()),values=dynamicGreenChart.text().split(",");values.shift(),values.push(random),dynamicGreenChart.text(values.join(",")).change()},1e3)}(),function(){var dynamicOrangeChart=$("#examplePeityDynamicOrange").peity("line",{width:64,fill:[$.colors("orange",200)],stroke:$.colors("orange",500),height:22});setInterval(function(){var random=Math.round(10*Math.random()),values=dynamicOrangeChart.text().split(",");values.shift(),values.push(random),dynamicOrangeChart.text(values.join(",")).change()},1e3)}()}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/charts/pie-progress.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run()}),function(){var $example=$("#examplePieApi");$(".pie-api-start").on("click",function(){$example.asPieProgress("start")}),$(".pie-api-finish").on("click",function(){$example.asPieProgress("finish")}),$(".pie-api-go").on("click",function(){$example.asPieProgress("go",200)}),$(".pie-api-go_percentage").on("click",function(){$example.asPieProgress("go","50%")}),$(".pie-api-stop").on("click",function(){$example.asPieProgress("stop")}),$(".pie-api-reset").on("click",function(){$example.asPieProgress("reset")})}()}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/dashboard/v2.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $(document).ready(function($){Site.run(),function(){new Chartist.Line("#widgetLinearea .ct-chart",{labels:["SUN","MON","TUE","WED","THU","FRI","SAT"],series:[[0,2.5,2,2.8,2.6,3.8,0],[0,1.4,.5,2,1.2,.9,0]]},{low:0,showArea:!0,showPoint:!1,showLine:!1,fullWidth:!0,chartPadding:{top:0,right:10,bottom:0,left:0},axisX:{showGrid:!1,labelOffset:{x:-14,y:0}},axisY:{labelOffset:{x:-10,y:0},labelInterpolationFnc:function(num){return num%1===0?num:!1}}})}(),function(){var map=new GMaps({el:"#gmap",lat:-12.043333,lng:-77.028333,zoomControl:!0,zoomControlOpt:{style:"SMALL",position:"TOP_LEFT"},panControl:!0,streetViewControl:!1,mapTypeControl:!1,overviewMapControl:!1});map.addStyle({styledMapName:"Styled Map",styles:$.components.get("gmaps","styles"),mapTypeId:"map_style"}),map.setStyle("map_style")}()}); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/forms/editor-summernote.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run()}),window.edit=function(){$(".click2edit").summernote()},window.save=function(){$(".click2edit").destroy()}}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/layouts/panel-transition.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run();var $example=$("#exampleTransition");$(document).on("click.panel.transition","[data-type]",function(){var type=$(this).data("type");$example.data("animateList").run(type)}),$(document).on("close.uikit.panel","[class*=blocks-] > li > .panel",function(){$(this).parent().hide()})})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/pages/faq.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){$(document).ready(function(){Site.run(),$('.list-group[data-plugin="nav-tabs"]').length&&$('a[data-toggle="tab"]').on("shown.bs.tab",function(e){$(e.target).addClass("active").siblings().removeClass("active")})})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/pages/gallery.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run(),$(".wb-search").magnificPopup({type:"image",closeOnContentClick:!0,mainClass:"mfp-fade",gallery:{enabled:!0,navigateByImgClick:!0,preload:[0,1]}})})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/pages/map-google.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function(){Site.run();var map=new GMaps({el:"#gmap",lat:-12.043333,lng:-77.028333,zoomControl:!0,zoomControlOpt:{style:"SMALL",position:"TOP_LEFT"},panControl:!0,streetViewControl:!1,mapTypeControl:!1,overviewMapControl:!1});map.drawOverlay({lat:-12.043333,lng:-77.028333,content:''}),map.drawOverlay({lat:-12.05449279282314,lng:-77.04333,content:''}),map.addStyle({styledMapName:"Styled Map",styles:$.components.get("gmaps","styles"),mapTypeId:"map_style"}),map.setStyle("map_style");var path=[[-12.044012922866312,-77.02470665341184],[-12.05449279282314,-77.03024273281858],[-12.055122327623378,-77.03039293652341],[-12.075917129727586,-77.02764635449216],[-12.07635776902266,-77.02792530422971],[-12.076819390363665,-77.02893381481931],[-12.088527520066453,-77.0241058385925],[-12.090814532191756,-77.02271108990476]];map.drawPolyline({path:path,strokeColor:"#131540",strokeOpacity:.6,strokeWeight:6})})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/pages/map-vector.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function(){Site.run();var defaults=$.components.getDefaults("vectorMap"),options=$.extend({},defaults,{markers:[{latLng:[1.3,103.8],name:"940 Visits"},{latLng:[51.511214,-.119824],name:"530 Visits"},{latLng:[40.714353,-74.005973],name:"340 Visits"},{latLng:[-22.913395,-43.20071],name:"1,800 Visits"}]},!0);$("#world-map").vectorMap(options)})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/structure/timeline.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run(),$(".timeline-item").appear(),$(".timeline-item").not(":appeared").each(function(){var $item=$(this);$item.addClass("timeline-invisible"),$item.find(".timeline-dot").addClass("invisible"),$item.find(".timeline-info").addClass("invisible"),$item.find(".timeline-content").addClass("invisible")}),$(document).on("appear",".timeline-item.timeline-invisible",function(e){var $item=$(this);$item.removeClass("timeline-invisible"),$item.find(".timeline-dot").removeClass("invisible").addClass("animation-scale-up"),$item.hasClass("timeline-reverse")||"none"===$item.css("float")?($item.find(".timeline-info").removeClass("invisible").addClass("animation-slide-right"),$item.find(".timeline-content").removeClass("invisible").addClass("animation-slide-right")):($item.find(".timeline-info").removeClass("invisible").addClass("animation-slide-left"),$item.find(".timeline-content").removeClass("invisible").addClass("animation-slide-left"))})})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/tables/editable.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run()}),$("#editableTable").editableTableWidget().numericInputExample().find("td:first").focus()}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/uikit/icon.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.extend({run:function(){$("#icon_change").asRange({tip:!1,scale:!1,onChange:function(value){$("#icon_size").text(value+"px"),$(".panel .icon").css("font-size",value)}}),$(".input-search input[type=text]").on("keyup",function(){var val=$(this).val();""!==val?($("[data-name]").addClass("is-hide"),$("[data-name*="+val+"]").removeClass("is-hide")):$("[data-name]").removeClass("is-hide"),$(".icon-group").each(function(){var $group=$(this);0===$group.find("[data-name]:not(.is-hide)").length?$group.hide():$group.show()})})}}).run()})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/uikit/panel-structure.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run()}),function(){$("#exampleButtonRandom").on("click",function(e){e.preventDefault(),$('[data-plugin="progress"]').each(function(){var number=Math.round(100*Math.random(1))+"%";$(this).asProgress("go",number)})})}(),window.customRefreshCallback=function(done){var $panel=$(this);setTimeout(function(){done(),$panel.find(".panel-body").html("Lorem ipsum In nostrud Excepteur velit reprehenderit quis consequat veniam officia nisi labore in est.")},1e3)}}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/uikit/progress-bars.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run()}),function(){$("#exampleButtonStart").on("click",function(){$('[data-plugin="progress"]').asProgress("start")}),$("#exampleButtonFinish").on("click",function(){$('[data-plugin="progress"]').asProgress("finish")}),$("#exampleButtonGoto").on("click",function(){$('[data-plugin="progress"]').asProgress("go",50)}),$("#exampleButtonGotoPercentage").on("click",function(){$('[data-plugin="progress"]').asProgress("go","50%")}),$("#exampleButtonStop").on("click",function(){$('[data-plugin="progress"]').asProgress("stop")}),$("#exampleButtonReset").on("click",function(){$('[data-plugin="progress"]').asProgress("reset")}),$("#exampleButtonRandom").on("click",function(e){e.preventDefault(),$('[data-plugin="progress"]').each(function(){var number=Math.round(100*Math.random(1))+"%";$(this).asProgress("go",number)})})}()}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/uikit/tooltip-popover.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run()});var defaults=$.components.getDefaults("webuiPopover");!function(){var tableContent=$("#examplePopoverTable").html(),tableSettings={title:"WebUI Popover",content:tableContent,width:500};$("#examplePopWithTable").webuiPopover($.extend({},defaults,tableSettings))}(),function(){var listContent=$("#examplePopoverList").html(),listSettings={content:listContent,title:"",padding:!1};$("#examplePopWithList").webuiPopover($.extend({},defaults,listSettings))}(),function(){var largeContent=$("#examplePopoverLargeContent").html(),largeSettings={title:"WebUI Popover",content:largeContent,width:400,height:350,closeable:!0};$("#examplePopWithLargeContent").webuiPopover($.extend({},defaults,largeSettings))}()}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/widgets/weather.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function(){Site.run();var ex1_sunny=new Skycons({color:"white"});ex1_sunny.set(document.getElementById("ex4-rain"),"rain"),ex1_sunny.play();var ex5_i,ex5=new Skycons({color:"white"}),ex5_list=["ex5-partly-cloudy","ex5-sunny","ex5-cloudy","ex5-rain"],ex5_type=["partly-cloudy-day","clear-day","cloudy","rain"];for(ex5_i=ex5_list.length;ex5_i--;)ex5.set(ex5_list[ex5_i],ex5_type[ex5_i]);ex5.play();var ex6_snow=new Skycons({color:"white"});ex6_snow.set(document.getElementById("ex6-snow"),"snow"),ex6_snow.play();var ex7_sleet=new Skycons({color:"#212121"});ex7_sleet.set(document.getElementById("ex7-sleet"),"sleet"),ex7_sleet.play()})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/images/apple-touch-icon.png -------------------------------------------------------------------------------- /public/dashboard/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/images/favicon.ico -------------------------------------------------------------------------------- /public/dashboard/assets/images/logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/images/logo-blue.png -------------------------------------------------------------------------------- /public/dashboard/assets/images/logo-blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/images/logo-blue@2x.png -------------------------------------------------------------------------------- /public/dashboard/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/images/logo.png -------------------------------------------------------------------------------- /public/dashboard/assets/images/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/images/logo@2x.png -------------------------------------------------------------------------------- /public/dashboard/assets/js/configs/config-tour.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(window,document,$){"use strict";$.configs.set("tour",{steps:[{element:"#toggleMenubar",position:"right",intro:"Offcanvas Menu

It is nice custom navigation for desktop users and a seek off-canvas menu for tablet and mobile users

"},{element:"#toggleFullscreen",intro:"Full Screen

Click this button you can view the admin template in full screen

"},{element:"#toggleChat",position:"left",intro:"Quick Conversations

This is a sidebar dialog box for user conversations list, you can even create a quick conversation with other users

"}],skipLabel:"",doneLabel:"",nextLabel:"Next ",prevLabel:"Prev",showBullets:!1})}(window,document,$); -------------------------------------------------------------------------------- /public/dashboard/assets/js/sections/sidebar.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(window,document,$){"use strict";$.site.sidebar={init:function(){"undefined"!=typeof $.slidePanel&&($(document).on("click",'[data-toggle="site-sidebar"]',function(){var $this=$(this),direction="right";$("body").hasClass("site-menubar-flipped")&&(direction="left");var defaults=$.components.getDefaults("slidePanel"),options=$.extend({},defaults,{direction:direction,skin:"site-sidebar",dragTolerance:80,template:function(options){return'
'},afterLoad:function(){var self=this;this.$panel.find(".tab-pane").asScrollable({namespace:"scrollable",contentSelector:"> div",containerSelector:"> div"}),$.components.init("switchery",self.$panel),this.$panel.on("shown.bs.tab",function(){self.$panel.find(".tab-pane.active").asScrollable("update")})},beforeShow:function(){$this.hasClass("active")||$this.addClass("active")},afterHide:function(){$this.hasClass("active")&&$this.removeClass("active")}});if($this.hasClass("active"))$.slidePanel.hide();else{var url=$this.data("url");url||(url=$this.attr("href"),url=url&&url.replace(/.*(?=#[^\s]*$)/,"")),$.slidePanel.show({url:url},options)}}),$(document).on("click",'[data-toggle="show-chat"]',function(){$("#conversation").addClass("active")}),$(document).on("click",'[data-toggle="close-chat"]',function(){$("#conversation").removeClass("active")}))}}}(window,document,jQuery); -------------------------------------------------------------------------------- /public/dashboard/fonts/7-stroke/Pe-icon-7-strokebb1d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/7-stroke/Pe-icon-7-strokebb1d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/7-stroke/Pe-icon-7-strokebb1d.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/7-stroke/Pe-icon-7-strokebb1d.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/7-stroke/Pe-icon-7-strokebb1d.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/7-stroke/Pe-icon-7-strokebb1d.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/7-stroke/Pe-icon-7-stroked41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/7-stroke/Pe-icon-7-stroked41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/brand-icons/brand-iconsa29e.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/brand-icons/brand-iconsa29e.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/brand-icons/brand-iconsa29e.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/brand-icons/brand-iconsa29e.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/brand-icons/brand-iconsa29e.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/brand-icons/brand-iconsa29e.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/brand-icons/brand-iconsa29e.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/brand-icons/brand-iconsa29e.woff2 -------------------------------------------------------------------------------- /public/dashboard/fonts/brand-icons/brand-iconsd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/brand-icons/brand-iconsd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/font-awesome/fontawesome-webfont914c.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/font-awesome/fontawesome-webfont914c.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/font-awesome/fontawesome-webfont914c.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/font-awesome/fontawesome-webfont914c.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/font-awesome/fontawesome-webfont914c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/font-awesome/fontawesome-webfont914c.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/font-awesome/fontawesome-webfont914c.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/font-awesome/fontawesome-webfont914c.woff2 -------------------------------------------------------------------------------- /public/dashboard/fonts/font-awesome/fontawesome-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/font-awesome/fontawesome-webfontd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/dashboard/fonts/glyphicons/glyphicons-halflings-regulard41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/glyphicons/glyphicons-halflings-regulard41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/ionicons/ionicons790f.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/ionicons/ionicons790f.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/ionicons/ionicons790f.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/ionicons/ionicons790f.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/ionicons/ionicons790f.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/ionicons/ionicons790f.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/material-design/Material-Design-Iconic-Fontd1f1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/material-design/Material-Design-Iconic-Fontd1f1.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/material-design/Material-Design-Iconic-Fontd1f1.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/material-design/Material-Design-Iconic-Fontd1f1.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/material-design/Material-Design-Iconic-Fontd1f1.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/material-design/Material-Design-Iconic-Fontd1f1.woff2 -------------------------------------------------------------------------------- /public/dashboard/fonts/mfglabs/mfglabsiconset-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/mfglabs/mfglabsiconset-webfont.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/mfglabs/mfglabsiconset-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/mfglabs/mfglabsiconset-webfont.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/mfglabs/mfglabsiconset-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/mfglabs/mfglabsiconset-webfont.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/mfglabs/mfglabsiconset-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/mfglabs/mfglabsiconset-webfontd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/octicons/octicons9f24.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/octicons/octicons9f24.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/octicons/octicons9f24.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/octicons/octicons9f24.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/octicons/octicons9f24.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/octicons/octicons9f24.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/octicons/octiconsd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/octicons/octiconsd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/open-iconic/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/open-iconic/open-iconic.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/open-iconic/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/open-iconic/open-iconic.otf -------------------------------------------------------------------------------- /public/dashboard/fonts/open-iconic/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/open-iconic/open-iconic.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/open-iconic/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/open-iconic/open-iconic.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/open-iconic/open-iconicd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/open-iconic/open-iconicd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/themify/themify9f24.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/themify/themify9f24.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/themify/themify9f24.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/themify/themify9f24.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/themify/themify9f24.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/themify/themify9f24.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/themify/themifyd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/themify/themifyd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/weather-icons/weathericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/weather-icons/weathericons-regular-webfont.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/weather-icons/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/weather-icons/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/weather-icons/weathericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/weather-icons/weathericons-regular-webfont.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/weather-icons/weathericons-regular-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/weather-icons/weathericons-regular-webfontd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/web-icons/web-iconsd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/web-icons/web-iconsd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/web-icons/web-iconsd622.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/web-icons/web-iconsd622.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/web-icons/web-iconsd622.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/web-icons/web-iconsd622.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/web-icons/web-iconsd622.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/web-icons/web-iconsd622.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/web-icons/web-iconsd622.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/web-icons/web-iconsd622.woff2 -------------------------------------------------------------------------------- /public/dashboard/js/components/ace.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("ace",{mode:"init",defaults:{},init:function(context){"undefined"!=typeof ace&&(ace.config.loadModule("ace/ext/language_tools"),$('[data-plugin="ace"]',context).each(function(){var id=$(this).attr("id"),mode=$(this).data("mode"),theme=$(this).data("theme"),editor=ace.edit(id);editor.container.style.opacity="",mode&&editor.session.setMode("ace/mode/"+mode),theme&&editor.setTheme("ace/theme/"+theme),editor.setOption("maxLines",40),editor.setAutoScrollEditorIntoView(!0),ace.config.loadModule("ace/ext/language_tools",function(){editor.setOptions({enableSnippets:!0,enableBasicAutocompletion:!0})})}))}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/animate-list.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("animate-list",{mode:"init",defaults:{child:".panel",duration:250,delay:50,animate:"scale-up",fill:"backwards"},init:function(){var self=this;$("[data-plugin=animateList]").each(function(){var $this=$(this),options=$.extend({},self.defaults,$this.data(),!0),animatedBox=function($el,opts){this.options=opts,this.$children=$el.find(opts.child),this.$children.addClass("animation-"+opts.animate),this.$children.css("animation-fill-mode",opts.fill),this.$children.css("animation-duration",opts.duration+"ms");var delay=0,self=this;this.$children.each(function(){$(this).css("animation-delay",delay+"ms"),delay+=self.options.delay})};animatedBox.prototype={run:function(type){var self=this;this.$children.removeClass("animation-"+this.options.animate),"undefined"!=typeof type&&(this.options.animate=type),setTimeout(function(){self.$children.addClass("animation-"+self.options.animate)},0)}},$this.data("animateList",new animatedBox($this,options))})}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/animsition.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("animsition",{mode:"manual",defaults:{inClass:"fade-in",outClass:"fade-out",inDuration:800,outDuration:500,linkElement:".animsition-link",loading:!0,loadingParentElement:"body",loadingClass:"loader",loadingType:"default",timeout:!1,timeoutCountdown:5e3,onLoadEvent:!0,browser:["animation-duration","-webkit-animation-duration"],overlay:!1,overlayClass:"animsition-overlay-slide",overlayParentElement:"body",inDefaults:["fade-in","fade-in-up-sm","fade-in-up","fade-in-up-lg","fade-in-down-sm","fade-in-down","fade-in-down-lg","fade-in-left-sm","fade-in-left","fade-in-left-lg","fade-in-right-sm","fade-in-right","fade-in-right-lg","zoom-in-sm","zoom-in","zoom-in-lg"],outDefaults:["fade-out","fade-out-up-sm","fade-out-up","fade-out-up-lg","fade-out-down-sm","fade-out-down","fade-out-down-lg","fade-out-left-sm","fade-out-left","fade-out-left-lg","fade-out-right-sm","fade-out-right","fade-out-right-lg","zoom-out-sm","zoom-out","zoom-out-lg"]},init:function(context,callback){var options=$.components.getDefaults("animsition");if(options.random){var li=options.inDefaults.length,lo=options.outDefaults.length,ni=parseInt(li*Math.random(),0),no=parseInt(lo*Math.random(),0);options.inClass=options.inDefaults[ni],options.outClass=options.outDefaults[no]}var $this=$(".animsition",context);return $this.animsition(options),$("."+options.loadingClass).addClass("loader-"+options.loadingType),$this.animsition("supportCheck",options)?($.isFunction(callback)&&$this.one("animsition.end",function(){callback.call()}),!0):($.isFunction(callback)&&callback.call(),!1)}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/asbreadcrumbs.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("breadcrumb",{mode:"init",defaults:{namespace:"breadcrumb",dropdown:function(){return''},dropdownContent:function(value){return'
  • '+value+"
  • "}},init:function(context){if($.fn.asBreadcrumbs){var defaults=$.components.getDefaults("breadcrumb");$('[data-plugin="breadcrumb"]',context).each(function(){var options=$.extend({},defaults,$(this).data());$(this).asBreadcrumbs(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/ascolorpicker.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("asColorPicker",{defaults:{namespace:"colorInputUi"},mode:"default"}); -------------------------------------------------------------------------------- /public/dashboard/js/components/aspaginator.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("paginator",{mode:"init",defaults:{namespace:"pagination",currentPage:1,itemsPerPage:10,disabledClass:"disabled",activeClass:"active",visibleNum:{0:3,480:5},tpl:function(){return"{{prev}}{{lists}}{{next}}"},components:{prev:{tpl:function(){return'
  • '}},next:{tpl:function(){return'
  • '}},lists:{tpl:function(){var lists="",remainder=this.currentPage>=this.visible?this.currentPage%this.visible:this.currentPage;remainder=0===remainder?this.visible:remainder;for(var k=1;remainder>k;k++)lists+='
  • '+(this.currentPage-remainder+k)+"
  • ";lists+='
  • '+this.currentPage+"
  • ";for(var i=this.currentPage+1,limit=i+this.visible-remainder-1>this.totalPages?this.totalPages:i+this.visible-remainder-1;limit>=i;i++)lists+='
  • '+i+"
  • ";return lists}}}},init:function(context){if($.fn.asPaginator){var defaults=$.components.getDefaults("paginator");$('[data-plugin="paginator"]',context).each(function(){var $this=$(this),options=$this.data(),total=$this.data("total");options=$.extend({},defaults,options),$this.asPaginator(total,options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/aspieprogress.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("pieProgress",{mode:"init",defaults:{namespace:"pie-progress",speed:30,classes:{svg:"pie-progress-svg",element:"pie-progress",number:"pie-progress-number",content:"pie-progress-content"}},init:function(context){if($.fn.asPieProgress){var defaults=$.components.getDefaults("pieProgress");$('[data-plugin="pieProgress"]',context).each(function(){var $this=$(this),options=$this.data();options=$.extend(!0,{},defaults,options),$this.asPieProgress(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/asprogress.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("progress",{mode:"init",defaults:{bootstrap:!0,onUpdate:function(n){var per=(n-this.min)/(this.max-this.min);.5>per?this.$target.addClass("progress-bar-success").removeClass("progress-bar-warning progress-bar-danger"):per>=.5&&.8>per?this.$target.addClass("progress-bar-warning").removeClass("progress-bar-success progress-bar-danger"):this.$target.addClass("progress-bar-danger").removeClass("progress-bar-success progress-bar-warning")},labelCallback:function(n){var label,labelType=this.$element.data("labeltype");if("percentage"===labelType){var percentage=this.getPercentage(n);label=percentage+"%"}else if("steps"===labelType){var total=this.$element.data("totalsteps");total||(total=10);var step=Math.round(total*(n-this.min)/(this.max-this.min));label=step+" / "+total}else label=n;return this.$element.parent().hasClass("contextual-progress")&&this.$element.parent().find(".progress-label").html(label),label}},init:function(context){if($.fn.asProgress){var defaults=$.components.getDefaults("progress");$('[data-plugin="progress"]',context).each(function(){var $this=$(this),options=$this.data();options=$.extend({},defaults,options),$this.asProgress(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/asrange.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("asRange",{mode:"default",defaults:{tip:!1,scale:!1}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/asscrollable.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("scrollable",{mode:"init",defaults:{namespace:"scrollable",contentSelector:"> [data-role='content']",containerSelector:"> [data-role='container']"},init:function(context){if($.fn.asScrollable){var defaults=$.components.getDefaults("scrollable");$('[data-plugin="scrollable"]',context).each(function(){var options=$.extend({},defaults,$(this).data());$(this).asScrollable(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/asspinner.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("asSpinner",{mode:"default",defaults:{namespace:"spinnerUi",skin:null,min:"-10",max:100,mousewheel:!0}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/bootbox.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("bootbox",{mode:"api",defaults:{message:""},api:function(){if("undefined"!=typeof bootbox){var defaults=$.components.getDefaults("bootbox");$(document).on("click.site.bootbox",'[data-plugin="bootbox"]',function(){var $btn=$(this),options=$btn.data();if(options=$.extend(!0,{},defaults,options),options.classname&&(options.className=options.classname),"string"==typeof options.callback&&$.isFunction(window[options.callback])&&(options.callback=window[options.callback]),options.type)switch(options.type){case"alert":bootbox.alert(options);break;case"confirm":bootbox.confirm(options);break;case"prompt":bootbox.prompt(options);break;default:bootbox.dialog(options)}else bootbox.dialog(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/bootstrap-datepicker.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("datepicker",{mode:"default",defaults:{autoclose:!0}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/bootstrap-maxlength.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("maxlength",{mode:"default",defaults:{}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/bootstrap-select.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("selectpicker",{mode:"default",defaults:{style:"btn-select",iconBase:"icon",tickIcon:"wb-check"}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/bootstrap-sweetalert.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("sweetalert",{mode:"api",api:function(){if("undefined"!=typeof swal){var defaults=$.components.getDefaults("sweetalert");$(document).on("click.site.sweetalert",'[data-plugin="sweetalert"]',function(){var options=$.extend(!0,{},defaults,$(this).data());swal(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/bootstrap-tagsinput.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("tagsinput",{defaults:{tagClass:"label label-default"},mode:"default"}); -------------------------------------------------------------------------------- /public/dashboard/js/components/bootstrap-tokenfield.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("tokenfield",{mode:"default",defaults:{}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/bootstrap-touchspin.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("TouchSpin",{mode:"default",defaults:{verticalupclass:"wb-plus",verticaldownclass:"wb-minus",buttondown_class:"btn btn-outline btn-default",buttonup_class:"btn btn-outline btn-default"}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/bootstrap-treeview.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("treeview",{mode:"init",defaults:{injectStyle:!1,expandIcon:"icon wb-plus",collapseIcon:"icon wb-minus",emptyIcon:"icon",nodeIcon:"icon wb-folder",showBorder:!1,borderColor:$.colors("blue-grey",200),onhoverColor:$.colors("blue-grey",100),selectedColor:"#ffffff",selectedBackColor:$.colors("primary",600),searchResultColor:$.colors("primary",600),searchResultBackColor:"#ffffff"},init:function(context){if($.fn.treeview){var defaults=$.components.getDefaults("treeview");$('[data-plugin="treeview"]',context).each(function(){var $this=$(this),options=$this.data();"string"==typeof options.source&&$.isFunction(window[options.source])?(options.data=window[options.source](),delete options.source):$.isFunction(options.souce)&&(options.data=options.source(),delete options.source),options=$.extend(!0,{},defaults,options),$this.treeview(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/buttons.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("buttons",{mode:"api",defaults:{},api:function(){$(document).on("click.site.loading","[data-loading-text]",function(){var $btn=$(this),text=$btn.text(),i=20,loadingText=$btn.data("loadingText");$btn.text(loadingText+"("+i+")").css("opacity",".6");var timeout=setInterval(function(){$btn.text(loadingText+"("+--i+")"),0===i&&(clearInterval(timeout),$btn.text(text).css("opacity","1"))},1e3)}),$(document).on("click.site.morebutton","[data-more]",function(){var $target=$($(this).data("more"));$target.toggleClass("show")})}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/card.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("card",{mode:"init",defaults:{},init:function(context){if($.fn.card){var defaults=$.components.getDefaults("card");$('[data-plugin="card"]',context).each(function(){var options=$.extend({},defaults,$(this).data());options.target&&(options.container=$(options.target)),$(this).card(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/clockpicker.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("clockpicker",{mode:"default",defaults:{donetext:"Done"}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/datatables.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("dataTable",{defaults:{responsive:!0,language:{sSearchPlaceholder:"Search..",lengthMenu:"_MENU_",search:"_INPUT_",paginate:{previous:'',next:''}}},api:function(){$.fn.dataTable&&$.fn.dataTable.TableTools&&$.extend(!0,$.fn.dataTable.TableTools.classes,{container:"DTTT btn-group btn-group pull-left",buttons:{normal:"btn btn-outline btn-default",disabled:"disabled"},print:{body:"site-print DTTT_Print"}})},init:function(context){if($.fn.dataTable){var defaults=$.components.getDefaults("dataTable");$('[data-plugin="dataTable"]',context).each(function(){var options=$.extend(!0,{},defaults,$(this).data());$(this).dataTable(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/datepair-js.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("datepair",{mode:"default",defaults:{startClass:"datepair-start",endClass:"datepair-end",timeClass:"datepair-time",dateClass:"datepair-date"}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/dropify.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("dropify",{mode:"default",defaults:{}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/editable-table.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("editableTable",{mode:"init",init:function(context){if($.fn.editableTableWidget){var defaults=$.components.getDefaults("editableTable");$('[data-plugin="editableTable"]',context).each(function(){var options=$.extend(!0,{},defaults,$(this).data());$(this).editableTableWidget(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/filterable.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("filterable",{mode:"init",defaults:{animationOptions:{duration:750,easing:"linear",queue:!1}},init:function(context){if("undefined"!=typeof $.fn.isotope){var defaults=$.components.getDefaults("filterable"),callback=function(){$("[data-filterable]",context).each(function(){var $this=$(this),options=$.extend(!0,{},defaults,$this.data(),{filter:"*"});$this.isotope(options)}),$("[data-filter]",context).click(function(e){var $this=$(this),target=$this.data("target"),$li=$this.parent("li");target||(target=$this.attr("href"),target=target&&target.replace(/.*(?=#[^\s]*$)/,"")),$li.siblings(".active").each(function(){$(this).find("a").attr("aria-expanded",!1),$(this).removeClass("active")}),$li.addClass("active"),$this.attr("aria-expanded",!0);var $list=$(target,context),filter=$this.attr("data-filter");"*"!==filter&&(filter='[data-type="'+filter+'"]'),$list.isotope({filter:filter}),e.preventDefault()})};context!==document?callback():$(window).on("load",function(){callback()})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/formatter-js.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("formatter",{mode:"init",defaults:{persistent:!0},init:function(context){if($.fn.formatter){var ieOptions,defaults=$.components.getDefaults("formatter"),browserName=navigator.userAgent.toLowerCase();ieOptions=/msie/i.test(browserName)&&!/opera/.test(browserName)?{persistent:!1}:{},$('[data-plugin="formatter"]',context).each(function(){var options=$.extend({},defaults,ieOptions,$(this).data());options.pattern&&(options.pattern=options.pattern.replace(/\[\[/g,"{{").replace(/\]\]/g,"}}")),$(this).formatter(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/gauge-js.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("gauge",{mode:"init",defaults:{lines:12,angle:.12,lineWidth:.4,pointer:{length:.68,strokeWidth:.03,color:$.colors("blue-grey",400)},limitMax:!0,colorStart:$.colors("blue-grey",200),colorStop:$.colors("blue-grey",200),strokeColor:$.colors("primary",500),generateGradient:!0},init:function(context){if(Gauge){var defaults=$.components.getDefaults("gauge");$('[data-plugin="gauge"]',context).each(function(){var $this=$(this),options=$this.data(),$text=$this.find(".gauge-label"),$canvas=$this.find("canvas");if(options=$.extend(!0,{},defaults,options),0!==$canvas.length){var gauge=new Gauge($canvas[0]).setOptions(options);$this.data("gauge",gauge),gauge.animationSpeed=50,gauge.maxValue=$this.data("max-value"),gauge.set($this.data("value")),$text.length>0&&gauge.setTextField($text[0])}})}}}),$.components.register("donut",{mode:"init",defaults:{lines:12,angle:.3,lineWidth:.08,pointer:{length:.9,strokeWidth:.035,color:$.colors("blue-grey",400)},limitMax:!1,colorStart:$.colors("blue-grey",200),colorStop:$.colors("blue-grey",200),strokeColor:$.colors("primary",500),generateGradient:!0},init:function(context){if(Gauge){var defaults=$.components.getDefaults("donut");$('[data-plugin="donut"]',context).each(function(){var $this=$(this),options=$this.data(),$text=$this.find(".donut-label"),$canvas=$this.find("canvas");if(options=$.extend(!0,{},defaults,options),0!==$canvas.length){var donut=new Donut($canvas[0]).setOptions(options);$this.data("donut",donut),donut.animationSpeed=50,donut.maxValue=$this.data("max-value"),donut.set($this.data("value")),$text.length>0&&donut.setTextField($text[0])}})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/gridstack.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("gridstack",{mode:"init",defaults:{cell_height:80,vertical_margin:20},init:function(context){if($.fn.gridstack){var defaults=$.components.getDefaults("gridstack");$('[data-plugin="gridstack"]',context).each(function(){var options=$.extend(!0,{},defaults,$(this).data());$(this).gridstack(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/highlight-js.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("highlight",{mode:"init",defaults:{},init:function(context){if("undefined"!=typeof $.fn.hightlight){$.components.getDefaults("highlight");$('[data-plugin="highlight"]',context).each(function(i,block){hljs.highlightBlock(block)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/html5sortable.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("sortable",{defaults:{},mode:"default"}); -------------------------------------------------------------------------------- /public/dashboard/js/components/icheck.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("iCheck",{mode:"default",defaults:{}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/input-group-file.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("input-group-file",{api:function(){$(document).on("change",".input-group-file [type=file]",function(){var $this=$(this),$text=$(this).parents(".input-group-file").find(".form-control"),value="";$.each($this[0].files,function(i,file){value+=file.name+", "}),value=value.substring(0,value.length-2),$text.val(value)})}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/jquery-appear.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("appear",{defaults:{},api:function(context){$.fn.appear&&($(document).on("appear",'[data-plugin="appear"]',function(){var $item=$(this),animate=$item.data("animate");$item.hasClass("appear-no-repeat")||($item.removeClass("invisible").addClass("animation-"+animate),$item.data("repeat")===!1&&$item.addClass("appear-no-repeat"))}),$(document).on("disappear",'[data-plugin="appear"]',function(){var $item=$(this),animate=$item.data("animate");$item.hasClass("appear-no-repeat")||$item.addClass("invisible").removeClass("animation-"+animate)}))},init:function(context){if($.fn.appear){var defaults=$.components.getDefaults("appear");$('[data-plugin="appear"]',context).appear(defaults),$('[data-plugin="appear"]',context).not(":appeared").addClass("invisible")}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/jquery-floatthead.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("floatThead",{mode:"default",defaults:{top:function(){return $(".site-navbar").outerHeight()},position:"absolute"}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/jquery-knob.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("knob",{mode:"default",defaults:{min:-50,max:50,width:120,height:120,thickness:".1"}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/jquery-labelauty.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("labelauty",{mode:"default",defaults:{same_width:!0}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/jquery-placeholder.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("placeholder",{mode:"init",init:function(context){$.fn.placeholder&&$("input, textarea",context).placeholder()}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/jquery-strength.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("strength",{mode:"default",defaults:{showMeter:!0,showToggle:!1,templates:{toggle:'
    ',meter:'
    {score}
    ',score:'
    ',main:'
    {input}{meter}{toggle}
    '},classes:{container:"strength-container",status:"strength-{status}",input:"strength-input",toggle:"strength-toggle",meter:"strength-meter",score:"strength-score"},scoreLables:{invalid:"Invalid",weak:"Weak",good:"Good",strong:"Strong"},scoreClasses:{invalid:"strength-invalid",weak:"strength-weak",good:"strength-good",strong:"strength-strong"}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/jquery-wizard.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("wizard",{mode:"default",defaults:{step:".steps .step, .pearls .pearl",templates:{buttons:function(){var options=this.options;return'
    '+options.buttonLabels.back+''+options.buttonLabels.next+''+options.buttonLabels.finish+"
    "}}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/jt-timepicker.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("timepicker",{mode:"default",defaults:{}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/jvectormap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("vectorMap",{mode:"default",defaults:{map:"world_mill_en",backgroundColor:"#fff",zoomAnimate:!0,regionStyle:{initial:{fill:$.colors("primary",600)},hover:{fill:$.colors("primary",500)},selected:{fill:$.colors("primary",800)},selectedHover:{fill:$.colors("primary",500)}},markerStyle:{initial:{r:8,fill:$.colors("red",600),"stroke-width":0},hover:{r:12,stroke:$.colors("red",600),"stroke-width":0}}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/ladda-bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("ladda",{mode:"init",defaults:{timeout:2e3},init:function(){if("undefined"!=typeof Ladda){var defaults=$.components.getDefaults("ladda");Ladda.bind('[data-plugin="ladda"]',defaults)}}}),$.components.register("laddaProgress",{mode:"init",defaults:{init:function(instance){var progress=0,interval=setInterval(function(){progress=Math.min(progress+.1*Math.random(),1),instance.setProgress(progress),1===progress&&(instance.stop(),clearInterval(interval))},200)}},init:function(){if("undefined"!=typeof Ladda){var defaults=$.components.getDefaults("laddaProgress");Ladda.bind('[data-plugin="laddaProgress"]',defaults)}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/magnific-popup.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("magnificPopup",{mode:"default",defaults:{type:"image",closeOnContentClick:!0,image:{verticalFit:!0}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/masonry.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("masonry",{mode:"init",defaults:{itemSelector:".masonry-item"},init:function(context){if("undefined"!=typeof $.fn.masonry){var defaults=$.components.getDefaults("masonry"),callback=function(){$('[data-plugin="masonry"]',context).each(function(){var $this=$(this),options=$.extend(!0,{},defaults,$this.data());$this.masonry(options)})};context!==document?callback():$(window).on("load",function(){callback()})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/matchheight.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("matchHeight",{mode:"init",defaults:{},init:function(context){if("undefined"!=typeof $.fn.matchHeight){var defaults=$.components.getDefaults("matchHeight");$('[data-plugin="matchHeight"]',context).each(function(){var $this=$(this),options=$.extend(!0,{},defaults,$this.data()),matchSelector=$this.data("matchSelector");matchSelector?$this.find(matchSelector).matchHeight(options):$this.children().matchHeight(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/multi-select.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("multiSelect",{mode:"default",defaults:{}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/nestable.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("nestable",{mode:"default"}); -------------------------------------------------------------------------------- /public/dashboard/js/components/nprogress.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("nprogress",{mode:"init",defaults:{minimum:.15,trickleRate:.07,trickleSpeed:360,showSpinner:!1,template:'
    '},init:function(){if("undefined"!=typeof NProgress){var defaults=$.components.getDefaults("nprogress");NProgress.configure(defaults)}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/owl-carousel.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("owlCarousel",{mode:"default",defaults:{loop:!0,nav:!0,dots:!1,dotsClass:"owl-dots owl-dots-fall",responsive:{0:{items:1},600:{items:3}}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/plyr.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("plyr",{mode:"init",init:function(){"undefined"!=typeof plyr&&(!function(d,u){var a=new XMLHttpRequest,b=d.body;"withCredentials"in a&&(a.open("GET",u,!0),a.send(),a.onload=function(){var c=d.createElement("div");c.style.display="none",c.innerHTML=a.responseText,b.insertBefore(c,b.childNodes[0])})}(document,"https://cdn.plyr.io/1.1.5/sprite.svg"),plyr.setup())}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/raty.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("rating",{mode:"init",defaults:{targetKeep:!0,icon:"font",starType:"i",starOff:"icon wb-star",starOn:"icon wb-star orange-600",cancelOff:"icon wb-minus-circle",cancelOn:"icon wb-minus-circle orange-600",starHalf:"icon wb-star-half orange-500"},init:function(context){if($.fn.raty){var defaults=$.components.getDefaults("rating");$('[data-plugin="rating"]',context).each(function(){var $this=$(this),options=$.extend(!0,{},defaults,$this.data());options.hints&&(options.hints=options.hints.split(",")),$this.raty(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/select2.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("select2",{mode:"default",defaults:{width:"style"}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/selectable.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("selectable",{mode:"init",defaults:{allSelector:".selectable-all",itemSelector:".selectable-item",rowSelector:"tr",rowSelectable:!1,rowActiveClass:"active",onChange:null},init:function(context){if($.fn.asSelectable){var defaults=$.components.getDefaults("selectable");$('[data-plugin="selectable"], [data-selectable="selectable"]',context).each(function(){var options=$.extend({},defaults,$(this).data());$(this).asSelectable(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/slidepanel.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("slidePanel",{mode:"manual",defaults:{closeSelector:".slidePanel-close",mouseDragHandler:".slidePanel-handler",loading:{template:function(options){return'
    '},showCallback:function(options){this.$el.addClass(options.classes.loading+"-show")},hideCallback:function(options){this.$el.removeClass(options.classes.loading+"-show")}}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/summernote.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("summernote",{mode:"default",defaults:{height:300}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/switchery.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("switchery",{mode:"init",defaults:{color:$.colors("primary",600)},init:function(context){if("undefined"!=typeof Switchery){var defaults=$.components.getDefaults("switchery");$('[data-plugin="switchery"]',context).each(function(){var options=$.extend({},defaults,$(this).data());new Switchery(this,options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/table.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("table",{mode:"api",api:function(context){function run(e){"checkbox"===e.target.type||"button"===e.target.type||"a"===e.target.tagName.toLowerCase()||$(e.target).parent("div.checkbox-custom").length||($(this).hasClass("active")?$(this).removeClass("active"):($(this).siblings(".table-section").removeClass("active"),$(this).addClass("active")))}var touch="undefined"!=typeof document.ontouchstart,type="click";touch&&(type="touchstart"),$(document).on(type,".table-section",function(e){run.call(this,e)})}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/tabs.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("verticalTab",{mode:"init",init:function(context){$.fn.matchHeight&&$(".nav-tabs-vertical",context).each(function(){$(this).children().matchHeight()})}}),$.components.register("horizontalTab",{mode:"init",init:function(context){$.fn.responsiveHorizontalTabs&&$(".nav-tabs-horizontal",context).responsiveHorizontalTabs()}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/tasklist.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("taskList",{mode:"api",api:function(){$(document).on("change.site.task",'[data-role="task"]',function(){var $list=$(this),$checkbox=$list.find('[type="checkbox"]');$checkbox.is(":checked")?$list.addClass("task-done"):$list.removeClass("task-done")}),$('[data-role="task"]').trigger("change.site.task")}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/toastr.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("toastr",{mode:"api",api:function(){if("undefined"!=typeof toastr){var defaults=$.components.getDefaults("toastr");$(document).on("click.site.toastr",'[data-plugin="toastr"]',function(e){e.preventDefault();var $this=$(this),options=$.extend(!0,{},defaults,$this.data()),message=options.message||"",type=options.type||"info",title=options.title||void 0;switch(type){case"success":toastr.success(message,title,options);break;case"warning":toastr.warning(message,title,options);break;case"error":toastr.error(message,title,options);break;case"info":toastr.info(message,title,options);break;default:toastr.info(message,title,options)}})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/toolbar.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("toolbar",{mode:"init",init:function(context){if($.fn.toolbar){var defaults=$.components.getDefaults("toolbar");$('[data-plugin="toolbar"]',context).each(function(){var $this=$(this),content=$this.data("toolbar"),options=$.extend(!0,{},defaults);content&&(options.content=content),$this.toolbar(options)})}}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/webui-popover.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("webuiPopover",{mode:"default",defaults:{trigger:"click",width:320,multi:!0,cloaseable:!1,style:"",delay:300,padding:!0}}); -------------------------------------------------------------------------------- /public/dashboard/js/plugins/closeable-tabs.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | +function($){"use strict";function Plugin(option){return this.each(function(){var $this=$(this),data=$this.data("bs.tab.close");data||$this.data("bs.tab.close",data=new TabClose(this)),"string"==typeof option&&data[option].call($this)})}var dismiss='[data-close="tab"]',TabClose=function(el){$(el).on("click",dismiss,this.close)};TabClose.TRANSITION_DURATION=150,TabClose.prototype.close=function(e){function removeElement(){$parent.detach().trigger("closed.bs.tab").remove(),$li.detach().remove()}var $this=$(this),$toggle=$this.closest('[data-toggle="tab"]'),selector=$toggle.data("target"),$li=$toggle.parent("li");if(selector||(selector=$toggle.attr("href"),selector=selector&&selector.replace(/.*(?=#[^\s]*$)/,"")),$li.hasClass("active")){var $next=$li.siblings().eq(0).children('[data-toggle="tab"]');if($next.length>0){var api=$next.tab().data("bs.tab");api.show()}}var $parent=$(selector);e&&e.preventDefault(),$parent.trigger(e=$.Event("close.bs.tab")),e.isDefaultPrevented()||($parent.removeClass("in"),$.support.transition&&$parent.hasClass("fade")?$parent.one("bsTransitionEnd",removeElement).emulateTransitionEnd(TabClose.TRANSITION_DURATION):removeElement())};var old=$.fn.tabClose;$.fn.tabClose=Plugin,$.fn.tabClose.Constructor=TabClose,$.fn.tabClose.noConflict=function(){return $.fn.tabClose=old,this},$(document).on("click.bs.tab-close.data-api",dismiss,TabClose.prototype.close)}(jQuery); -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/favicon.ico -------------------------------------------------------------------------------- /public/js/lnf.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $('a#deleteItem').on('click', function(event) { 3 | var result = confirm('Are you sure you want to delete this item?'); 4 | if (result) { 5 | return true; 6 | } 7 | return false; 8 | }); 9 | 10 | $('#country').on('change', function(){ 11 | $('#location').focus(); 12 | }); 13 | }); 14 | -------------------------------------------------------------------------------- /public/js/tinymce/langs/readme.md: -------------------------------------------------------------------------------- 1 | This is where language files should be placed. 2 | 3 | Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ 4 | -------------------------------------------------------------------------------- /public/js/tinymce/plugins/code/plugin.min.js: -------------------------------------------------------------------------------- 1 | !function(){var a={},b=function(b){for(var c=a[b],e=c.deps,f=c.defn,g=e.length,h=new Array(g),i=0;i")}),a.addButton("hr",{icon:"hr",tooltip:"Horizontal line",cmd:"InsertHorizontalRule"}),a.addMenuItem("hr",{icon:"hr",text:"Horizontal line",cmd:"InsertHorizontalRule",context:"insert"})}),function(){}}),d("0")()}(); -------------------------------------------------------------------------------- /public/js/tinymce/plugins/nonbreaking/plugin.min.js: -------------------------------------------------------------------------------- 1 | !function(){var a={},b=function(b){for(var c=a[b],e=c.deps,f=c.defn,g=e.length,h=new Array(g),i=0;i ':" ";a.insertContent(c(d,b)),a.dom.setAttrib(a.dom.select("span.mce-nbsp"),"data-mce-bogus","1")};if(a.addCommand("mceNonBreaking",function(){d(1)}),a.addButton("nonbreaking",{title:"Nonbreaking space",cmd:"mceNonBreaking"}),a.addMenuItem("nonbreaking",{text:"Nonbreaking space",cmd:"mceNonBreaking",context:"insert"}),b){var e=+b>1?+b:3;a.on("keydown",function(a){if(9==a.keyCode){if(a.shiftKey)return;a.preventDefault(),d(e)}})}}),function(){}}),d("0")()}(); -------------------------------------------------------------------------------- /public/js/tinymce/plugins/print/plugin.min.js: -------------------------------------------------------------------------------- 1 | !function(){var a={},b=function(b){for(var c=a[b],e=c.deps,f=c.defn,g=e.length,h=new Array(g),i=0;i 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * First we will load all of this project's JavaScript dependencies which 4 | * includes Vue and other libraries. It is a great starting point when 5 | * building robust, powerful web applications using Vue and Laravel. 6 | */ 7 | 8 | require('./bootstrap'); 9 | 10 | window.Vue = require('vue'); 11 | 12 | /** 13 | * Next, we will create a fresh Vue application instance and attach it to 14 | * the page. Then, you may begin adding components to this application 15 | * or customize the JavaScript scaffolding to fit your unique needs. 16 | */ 17 | 18 | Vue.component('example', require('./components/Example.vue')); 19 | 20 | const app = new Vue({ 21 | el: '#app' 22 | }); 23 | -------------------------------------------------------------------------------- /resources/assets/js/components/Example.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 24 | -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | 2 | // Body 3 | $body-bg: #f5f8fa; 4 | 5 | // Borders 6 | $laravel-border-color: darken($body-bg, 10%); 7 | $list-group-border: $laravel-border-color; 8 | $navbar-default-border: $laravel-border-color; 9 | $panel-default-border: $laravel-border-color; 10 | $panel-inner-border: $laravel-border-color; 11 | 12 | // Brands 13 | $brand-primary: #3097D1; 14 | $brand-info: #8eb4cb; 15 | $brand-success: #2ab27b; 16 | $brand-warning: #cbb956; 17 | $brand-danger: #bf5329; 18 | 19 | // Typography 20 | $icon-font-path: "~bootstrap-sass/assets/fonts/bootstrap/"; 21 | $font-family-sans-serif: "Raleway", sans-serif; 22 | $font-size-base: 14px; 23 | $line-height-base: 1.6; 24 | $text-color: #636b6f; 25 | 26 | // Navbar 27 | $navbar-default-bg: #fff; 28 | 29 | // Buttons 30 | $btn-default-color: $text-color; 31 | 32 | // Inputs 33 | $input-border: lighten($text-color, 40%); 34 | $input-border-focus: lighten($brand-primary, 25%); 35 | $input-color-placeholder: lighten($text-color, 30%); 36 | 37 | // Panels 38 | $panel-default-heading-bg: #fff; 39 | -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | 2 | // Fonts 3 | @import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600"); 4 | 5 | // Variables 6 | @import "variables"; 7 | 8 | // Bootstrap 9 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap"; 10 | -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 17 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- 1 | 'Passwords must be at least six characters and match the confirmation.', 17 | 'reset' => 'Your password has been reset!', 18 | 'sent' => 'We have e-mailed your password reset link!', 19 | 'token' => 'This password reset token is invalid.', 20 | 'user' => "We can't find a user with that e-mail address.", 21 | 22 | ]; 23 | -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('title') 4 | Login 5 | @endsection 6 | 7 | @section('body') 8 | 9 | 34 | 35 | @endsection 36 | -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.user') 2 | 3 | @section('title') 4 | Dashboard 5 | @endsection 6 | 7 | @section('body') 8 | 9 |
    10 |
    11 |
    12 | @include('partials.message-block') 13 |

    Dashboard

    14 |
    15 |
    16 |
    17 |
    18 | 19 | @endsection 20 | -------------------------------------------------------------------------------- /resources/views/partials/message-block.blade.php: -------------------------------------------------------------------------------- 1 | @if(count($errors) > 0) 2 | @foreach($errors->all() as $error) 3 |
    4 | × 5 | {{ ucfirst($error) }} 6 |
    7 | @endforeach 8 | @endif 9 | 10 | @if(Session::has('success')) 11 |
    12 | × 13 | {{ Session::get('success') }} 14 |
    15 | @endif 16 | 17 | @if (Session::has('err')) 18 |
    19 | × 20 | {{ Session::get('err') }} 21 |
    22 | @endif 23 | -------------------------------------------------------------------------------- /resources/views/partials/search.blade.php: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 | 5 | 6 | 7 | 8 |
    9 |
    10 |
    11 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 17 | return $request->user(); 18 | }); 19 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 16 | }); 17 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 18 | })->describe('Display an inspiring quote'); 19 | -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- 1 | name('userLogin'); 19 | Route::post('registerUser', 'UserController@userRegistration'); 20 | Route::get('logout', 'UserController@userLogout'); 21 | 22 | Route::get('items/{id}/details', 'FrontendController@showItemDetails'); 23 | 24 | Route::get('search', 'SearchController@search')->name('search_items'); 25 | 26 | // User dashboard routes 27 | Route::get('home', 'HomeController@index')->name('home'); 28 | Route::get('items', 'ItemsController@showPostedItems')->name('posteditems'); 29 | Route::get('items/new', 'ItemsController@newItem')->name('newitem'); 30 | Route::post('items/new', 'ItemsController@postNewItem')->name('postnewitem'); 31 | Route::get('items/{id}/edit', 'ItemsController@editItem')->name('edititem'); 32 | Route::post('items/{id}/edit', 'ItemsController@postEditItem')->name('post_edit_item'); 33 | Route::get('items/{id}/delete', 'ItemsController@deleteItem')->name('delete_item'); 34 | Route::get('profile', 'HomeController@showProfile')->name('profile'); 35 | Route::get('profile/edit', 'HomeController@editProfile')->name('edit_profile'); 36 | Route::post('profile/{id}/edit', 'HomeController@processEditProfile')->name('process_edit_profile'); 37 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | schedule-* 4 | compiled.php 5 | services.json 6 | events.scanned.php 7 | routes.scanned.php 8 | down 9 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 20 | 21 | $response->assertStatus(200); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- 1 | let mix = require('laravel-mix'); 2 | 3 | /* 4 | |-------------------------------------------------------------------------- 5 | | Mix Asset Management 6 | |-------------------------------------------------------------------------- 7 | | 8 | | Mix provides a clean, fluent API for defining some Webpack build steps 9 | | for your Laravel application. By default, we are compiling the Sass 10 | | file for the application as well as bundling up all the JS files. 11 | | 12 | */ 13 | 14 | mix.js('resources/assets/js/app.js', 'public/js') 15 | .sass('resources/assets/sass/app.scss', 'public/css'); 16 | --------------------------------------------------------------------------------