├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Helper │ ├── GeneralHelper.php │ └── MySlugHelper.php ├── Http │ ├── Controllers │ │ ├── Backend │ │ │ ├── AdminController.php │ │ │ ├── Api │ │ │ │ └── ApiController.php │ │ │ ├── Auth │ │ │ │ ├── ConfirmPasswordController.php │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ ├── ResetPasswordController.php │ │ │ │ └── VerificationController.php │ │ │ ├── ContactUsController.php │ │ │ ├── NotificationsController.php │ │ │ ├── PagesController.php │ │ │ ├── PostCategoriesController.php │ │ │ ├── PostCommentsController.php │ │ │ ├── PostsController.php │ │ │ ├── SettingsController.php │ │ │ ├── SupervisorsController.php │ │ │ └── UsersController.php │ │ ├── Controller.php │ │ ├── Frontend │ │ │ ├── Auth │ │ │ │ ├── ConfirmPasswordController.php │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ ├── ResetPasswordController.php │ │ │ │ └── VerificationController.php │ │ │ ├── IndexController.php │ │ │ ├── NotificationsController.php │ │ │ └── UsersController.php │ │ └── HomeController.php │ ├── Kernel.php │ ├── Livewire │ │ └── Backend │ │ │ ├── LastPostComments.php │ │ │ └── Statistics.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── CheckRole.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Models │ ├── Category.php │ ├── Comment.php │ ├── Contact.php │ ├── Page.php │ ├── Permission.php │ ├── Post.php │ ├── PostMedia.php │ ├── Role.php │ ├── Setting.php │ ├── User.php │ └── UserPermission.php ├── Notifications │ ├── NewCommentForAdminNotify.php │ └── NewCommentForPostOwnerNotify.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── RouteServiceProvider.php │ └── ViewServiceProvider.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── debugbar.php ├── entrust.php ├── filesystems.php ├── flare.php ├── hashing.php ├── ignition.php ├── image.php ├── imagecache.php ├── livewire.php ├── logging.php ├── mail.php ├── purify.php ├── queue.php ├── services.php ├── session.php ├── settings.json ├── sluggable.php ├── tinker.php ├── trustedproxy.php ├── view.php └── websockets.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 0000_00_00_000000_create_websockets_statistics_entries_table.php │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2020_08_12_213153_entrust_setup_tables.php │ ├── 2020_08_12_215229_create_categories_table.php │ ├── 2020_08_12_215305_create_posts_table.php │ ├── 2020_08_12_215334_create_post_media_table.php │ ├── 2020_08_12_215402_create_comments_table.php │ ├── 2020_08_22_202102_create_contacts_table.php │ ├── 2020_09_03_215517_create_notifications_table.php │ └── 2020_09_20_203144_create_settings_table.php └── seeds │ ├── CategoriesTableSeeder.php │ ├── CommentsTableSeeder.php │ ├── DatabaseSeeder.php │ ├── PagesTableSeeder.php │ ├── PermissionTableSeeder.php │ ├── PostsTableSeeder.php │ ├── RolesTableSeeder.php │ └── SettingsTableSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── assets │ ├── posts │ │ ├── default.jpg │ │ ├── default_small.jpg │ │ ├── first-post-form-admin-1600034292-1.jpeg │ │ ├── first-post-form-admin-1600034292-2.png │ │ ├── first-post-form-admin-1600034292-3.jpg │ │ └── first-post-form-admin-1600034292-4.jpg │ └── users │ │ ├── default.png │ │ ├── editor.jpeg │ │ ├── mansour.png │ │ ├── mansour123.jpeg │ │ └── sami.jpg ├── backend │ ├── css │ │ ├── sb-admin-2.css │ │ └── sb-admin-2.min.css │ ├── img │ │ ├── 01.jpg │ │ ├── 02.jpg │ │ ├── 03.jpg │ │ ├── logo.png │ │ └── undraw_posting_photo.svg │ ├── js │ │ ├── custom.js │ │ ├── demo │ │ │ ├── chart-area-demo.js │ │ │ ├── chart-bar-demo.js │ │ │ ├── chart-pie-demo.js │ │ │ └── datatables-demo.js │ │ ├── sb-admin-2.js │ │ └── sb-admin-2.min.js │ └── vendor │ │ ├── bootstrap-fileinput │ │ ├── css │ │ │ ├── fileinput-rtl.css │ │ │ ├── fileinput-rtl.min.css │ │ │ ├── fileinput.css │ │ │ └── fileinput.min.css │ │ ├── img │ │ │ ├── loading-sm.gif │ │ │ └── loading.gif │ │ ├── js │ │ │ ├── fileinput.js │ │ │ ├── fileinput.min.js │ │ │ ├── locales │ │ │ │ ├── LANG.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cr.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── kr.js │ │ │ │ ├── kz.js │ │ │ │ ├── lt.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-TW.js │ │ │ │ └── zh.js │ │ │ └── plugins │ │ │ │ ├── piexif.js │ │ │ │ ├── piexif.min.js │ │ │ │ ├── purify.js │ │ │ │ ├── purify.min.js │ │ │ │ ├── sortable.js │ │ │ │ └── sortable.min.js │ │ └── themes │ │ │ ├── explorer-fa │ │ │ ├── theme.css │ │ │ ├── theme.js │ │ │ ├── theme.min.css │ │ │ └── theme.min.js │ │ │ ├── explorer-fas │ │ │ ├── theme.css │ │ │ ├── theme.js │ │ │ ├── theme.min.css │ │ │ └── theme.min.js │ │ │ ├── explorer │ │ │ ├── theme.css │ │ │ ├── theme.js │ │ │ ├── theme.min.css │ │ │ └── theme.min.js │ │ │ ├── fa │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ │ ├── fas │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ │ └── gly │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ ├── bootstrap │ │ ├── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ └── scss │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _spinners.scss │ │ │ ├── _tables.scss │ │ │ ├── _toasts.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _deprecate.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ └── _visibility.scss │ │ │ ├── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _embed.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _interactions.scss │ │ │ ├── _overflow.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _stretched-link.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ │ └── vendor │ │ │ └── _rfs.scss │ │ ├── chart.js │ │ ├── Chart.bundle.js │ │ ├── Chart.bundle.min.js │ │ ├── Chart.js │ │ └── Chart.min.js │ │ ├── datatables │ │ ├── dataTables.bootstrap4.css │ │ ├── dataTables.bootstrap4.js │ │ ├── dataTables.bootstrap4.min.css │ │ ├── dataTables.bootstrap4.min.js │ │ ├── jquery.dataTables.js │ │ └── jquery.dataTables.min.js │ │ ├── fontawesome-free │ │ ├── LICENSE.txt │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ ├── js │ │ │ ├── all.js │ │ │ ├── all.min.js │ │ │ ├── brands.js │ │ │ ├── brands.min.js │ │ │ ├── conflict-detection.js │ │ │ ├── conflict-detection.min.js │ │ │ ├── fontawesome.js │ │ │ ├── fontawesome.min.js │ │ │ ├── regular.js │ │ │ ├── regular.min.js │ │ │ ├── solid.js │ │ │ ├── solid.min.js │ │ │ ├── v4-shims.js │ │ │ └── v4-shims.min.js │ │ ├── less │ │ │ ├── _animated.less │ │ │ ├── _bordered-pulled.less │ │ │ ├── _core.less │ │ │ ├── _fixed-width.less │ │ │ ├── _icons.less │ │ │ ├── _larger.less │ │ │ ├── _list.less │ │ │ ├── _mixins.less │ │ │ ├── _rotated-flipped.less │ │ │ ├── _screen-reader.less │ │ │ ├── _shims.less │ │ │ ├── _stacked.less │ │ │ ├── _variables.less │ │ │ ├── brands.less │ │ │ ├── fontawesome.less │ │ │ ├── regular.less │ │ │ ├── solid.less │ │ │ └── v4-shims.less │ │ ├── metadata │ │ │ ├── categories.yml │ │ │ ├── icons.yml │ │ │ ├── shims.yml │ │ │ └── sponsors.yml │ │ ├── package.json │ │ ├── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _shims.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ ├── brands.scss │ │ │ ├── fontawesome.scss │ │ │ ├── regular.scss │ │ │ ├── solid.scss │ │ │ └── v4-shims.scss │ │ ├── sprites │ │ │ ├── brands.svg │ │ │ ├── regular.svg │ │ │ └── solid.svg │ │ ├── svgs │ │ │ ├── brands │ │ │ │ ├── 500px.svg │ │ │ │ ├── accessible-icon.svg │ │ │ │ ├── accusoft.svg │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adobe.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── airbnb.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── atlassian.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── battle-net.svg │ │ │ │ ├── behance-square.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── bimobject.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── bity.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── blackberry.svg │ │ │ │ ├── blogger-b.svg │ │ │ │ ├── blogger.svg │ │ │ │ ├── bluetooth-b.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buffer.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buy-n-large.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ ├── cc-amex.svg │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ ├── cc-diners-club.svg │ │ │ │ ├── cc-discover.svg │ │ │ │ ├── cc-jcb.svg │ │ │ │ ├── cc-mastercard.svg │ │ │ │ ├── cc-paypal.svg │ │ │ │ ├── cc-stripe.svg │ │ │ │ ├── cc-visa.svg │ │ │ │ ├── centercode.svg │ │ │ │ ├── centos.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── chromecast.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── confluence.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cotton-bureau.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── critical-role.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dailymotion.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── deezer.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── dev.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── dhl.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble-square.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge-legacy.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── firefox-browser.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── fly.svg │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── fonticons-fi.svg │ │ │ │ ├── fonticons.svg │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ ├── fort-awesome.svg │ │ │ │ ├── forumbee.svg │ │ │ │ ├── foursquare.svg │ │ │ │ ├── free-code-camp.svg │ │ │ │ ├── freebsd.svg │ │ │ │ ├── fulcrum.svg │ │ │ │ ├── galactic-republic.svg │ │ │ │ ├── galactic-senate.svg │ │ │ │ ├── get-pocket.svg │ │ │ │ ├── gg-circle.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── git-alt.svg │ │ │ │ ├── git-square.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github-alt.svg │ │ │ │ ├── github-square.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitkraken.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── glide-g.svg │ │ │ │ ├── glide.svg │ │ │ │ ├── gofore.svg │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-pay.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus-square.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news-square.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── ideal.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── instagram-square.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-square.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm-square.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── mdb.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── microblog.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mixer.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── orcid.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── penny-arcade.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper-square.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest-square.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── raspberry-pi.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── reacteurope.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit-square.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── redhat.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── rust.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopify.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── sketch.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack-hash.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ ├── snapchat-square.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── sourcetree.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── speaker-deck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stackpath.svg │ │ │ │ ├── staylinked.svg │ │ │ │ ├── steam-square.svg │ │ │ │ ├── steam-symbol.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── sticker-mule.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe-s.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── studiovinari.svg │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ ├── stumbleupon.svg │ │ │ │ ├── superpowers.svg │ │ │ │ ├── supple.svg │ │ │ │ ├── suse.svg │ │ │ │ ├── swift.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── tiktok.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tripadvisor.svg │ │ │ │ ├── tumblr-square.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-square.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── umbraco.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── unity.svg │ │ │ │ ├── unsplash.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo-square.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-square.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── waze.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube-square.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── building.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── map.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── save.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ └── window-restore.svg │ │ │ └── solid │ │ │ │ ├── ad.svg │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── adjust.svg │ │ │ │ ├── air-freshener.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── allergies.svg │ │ │ │ ├── ambulance.svg │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── angle-double-down.svg │ │ │ │ ├── angle-double-left.svg │ │ │ │ ├── angle-double-right.svg │ │ │ │ ├── angle-double-up.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── ankh.svg │ │ │ │ ├── apple-alt.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── archway.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ ├── arrows-alt.svg │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── atlas.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audio-description.svg │ │ │ │ ├── award.svg │ │ │ │ ├── baby-carriage.svg │ │ │ │ ├── baby.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── bacteria.svg │ │ │ │ ├── bacterium.svg │ │ │ │ ├── bahai.svg │ │ │ │ ├── balance-scale-left.svg │ │ │ │ ├── balance-scale-right.svg │ │ │ │ ├── balance-scale.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── band-aid.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── bars.svg │ │ │ │ ├── baseball-ball.svg │ │ │ │ ├── basketball-ball.svg │ │ │ │ ├── bath.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier-curve.svg │ │ │ │ ├── bible.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── biking.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── biohazard.svg │ │ │ │ ├── birthday-cake.svg │ │ │ │ ├── blender-phone.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blind.svg │ │ │ │ ├── blog.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-dead.svg │ │ │ │ ├── book-medical.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-reader.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-none.svg │ │ │ │ ├── border-style.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box-tissue.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── briefcase-medical.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── broadcast-tower.svg │ │ │ │ ├── broom.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── building.svg │ │ │ │ ├── bullhorn.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── burn.svg │ │ │ │ ├── bus-alt.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-time.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-day.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── campground.svg │ │ │ │ ├── candy-cane.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-alt.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-crash.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car.svg │ │ │ │ ├── caravan.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── carrot.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── cash-register.svg │ │ │ │ ├── cat.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chair.svg │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── charging-station.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chart-line.svg │ │ │ │ ├── chart-pie.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-double.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── check.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-board.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── chess.svg │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── child.svg │ │ │ │ ├── church.svg │ │ │ │ ├── circle-notch.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── city.svg │ │ │ │ ├── clinic-medical.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ ├── cloud-meatball.svg │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cocktail.svg │ │ │ │ ├── code-branch.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── cogs.svg │ │ │ │ ├── coins.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dollar.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment-medical.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress-alt.svg │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ ├── compress.svg │ │ │ │ ├── concierge-bell.svg │ │ │ │ ├── cookie-bite.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── couch.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop-alt.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── crow.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── crutch.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── database.svg │ │ │ │ ├── deaf.svg │ │ │ │ ├── democrat.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagnoses.svg │ │ │ │ ├── dice-d20.svg │ │ │ │ ├── dice-d6.svg │ │ │ │ ├── dice-five.svg │ │ │ │ ├── dice-four.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── dice-six.svg │ │ │ │ ├── dice-three.svg │ │ │ │ ├── dice-two.svg │ │ │ │ ├── dice.svg │ │ │ │ ├── digital-tachograph.svg │ │ │ │ ├── directions.svg │ │ │ │ ├── disease.svg │ │ │ │ ├── divide.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dog.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ ├── dolly.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── dove.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drafting-compass.svg │ │ │ │ ├── dragon.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── drumstick-bite.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── dumpster-fire.svg │ │ │ │ ├── dumpster.svg │ │ │ │ ├── dungeon.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── ellipsis-h.svg │ │ │ │ ├── ellipsis-v.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-square.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exchange-alt.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand-alt.svg │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external-link-alt.svg │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── fast-backward.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── faucet.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── feather-alt.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── female.svg │ │ │ │ ├── fighter-jet.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-contract.svg │ │ │ │ ├── file-csv.svg │ │ │ │ ├── file-download.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-export.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-import.svg │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ ├── file-invoice.svg │ │ │ │ ├── file-medical-alt.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-prescription.svg │ │ │ │ ├── file-signature.svg │ │ │ │ ├── file-upload.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── fill-drip.svg │ │ │ │ ├── fill.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire-alt.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── first-aid.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── fist-raised.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag-usa.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font.svg │ │ │ │ ├── football-ball.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── frog.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── funnel-dollar.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── ghost.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── glass-cheers.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── glass-whiskey.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-africa.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia.svg │ │ │ │ ├── globe-europe.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-ball.svg │ │ │ │ ├── gopuram.svg │ │ │ │ ├── graduation-cap.svg │ │ │ │ ├── greater-than-equal.svg │ │ │ │ ├── greater-than.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── grip-horizontal.svg │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ ├── grip-lines.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── guitar.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hamburger.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-medical.svg │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ ├── hand-holding-water.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-sparkles.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands-wash.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake-alt-slash.svg │ │ │ │ ├── handshake-slash.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-hat.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ ├── hat-cowboy.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ ├── head-side-cough.svg │ │ │ │ ├── head-side-mask.svg │ │ │ │ ├── head-side-virus.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbeat.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── hiking.svg │ │ │ │ ├── hippo.svg │ │ │ │ ├── history.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── holly-berry.svg │ │ │ │ ├── home.svg │ │ │ │ ├── horse-head.svg │ │ │ │ ├── horse.svg │ │ │ │ ├── hospital-alt.svg │ │ │ │ ├── hospital-symbol.svg │ │ │ │ ├── hospital-user.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-damage.svg │ │ │ │ ├── house-user.svg │ │ │ │ ├── hryvnia.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── icons.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-alt.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── igloo.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── jedi.svg │ │ │ │ ├── joint.svg │ │ │ │ ├── journal-whills.svg │ │ │ │ ├── kaaba.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── khanda.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── kiwi-bird.svg │ │ │ │ ├── landmark.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-code.svg │ │ │ │ ├── laptop-house.svg │ │ │ │ ├── laptop-medical.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── layer-group.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── less-than-equal.svg │ │ │ │ ├── less-than.svg │ │ │ │ ├── level-down-alt.svg │ │ │ │ ├── level-up-alt.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lira-sign.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ ├── low-vision.svg │ │ │ │ ├── luggage-cart.svg │ │ │ │ ├── lungs-virus.svg │ │ │ │ ├── lungs.svg │ │ │ │ ├── magic.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mail-bulk.svg │ │ │ │ ├── male.svg │ │ │ │ ├── map-marked-alt.svg │ │ │ │ ├── map-marked.svg │ │ │ │ ├── map-marker-alt.svg │ │ │ │ ├── map-marker.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map-signs.svg │ │ │ │ ├── map.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── mars-double.svg │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ ├── mars-stroke.svg │ │ │ │ ├── mars.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── meteor.svg │ │ │ │ ├── microchip.svg │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ ├── microphone-alt.svg │ │ │ │ ├── microphone-slash.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mitten.svg │ │ │ │ ├── mobile-alt.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ ├── money-bill-wave.svg │ │ │ │ ├── money-bill.svg │ │ │ │ ├── money-check-alt.svg │ │ │ │ ├── money-check.svg │ │ │ │ ├── monument.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortar-pestle.svg │ │ │ │ ├── mosque.svg │ │ │ │ ├── motorcycle.svg │ │ │ │ ├── mountain.svg │ │ │ │ ├── mouse-pointer.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── mug-hot.svg │ │ │ │ ├── music.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── om.svg │ │ │ │ ├── otter.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── pager.svg │ │ │ │ ├── paint-brush.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pallet.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── parachute-box.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── parking.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── pastafarianism.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── peace.svg │ │ │ │ ├── pen-alt.svg │ │ │ │ ├── pen-fancy.svg │ │ │ │ ├── pen-nib.svg │ │ │ │ ├── pen-square.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil-alt.svg │ │ │ │ ├── pencil-ruler.svg │ │ │ │ ├── people-arrows.svg │ │ │ │ ├── people-carry.svg │ │ │ │ ├── pepper-hot.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── percentage.svg │ │ │ │ ├── person-booth.svg │ │ │ │ ├── phone-alt.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-square-alt.svg │ │ │ │ ├── phone-square.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── photo-video.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── pizza-slice.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane-slash.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── poll-h.svg │ │ │ │ ├── poll.svg │ │ │ │ ├── poo-storm.svg │ │ │ │ ├── poo.svg │ │ │ │ ├── poop.svg │ │ │ │ ├── portrait.svg │ │ │ │ ├── pound-sign.svg │ │ │ │ ├── power-off.svg │ │ │ │ ├── pray.svg │ │ │ │ ├── praying-hands.svg │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ ├── prescription-bottle.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── print.svg │ │ │ │ ├── procedures.svg │ │ │ │ ├── project-diagram.svg │ │ │ │ ├── pump-medical.svg │ │ │ │ ├── pump-soap.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quidditch.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── quran.svg │ │ │ │ ├── radiation-alt.svg │ │ │ │ ├── radiation.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── random.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── record-vinyl.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── redo-alt.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── remove-format.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── republican.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── road.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── route.svg │ │ │ │ ├── rss-square.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruble-sign.svg │ │ │ │ ├── ruler-combined.svg │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ ├── ruler-vertical.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── running.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── satellite-dish.svg │ │ │ │ ├── satellite.svg │ │ │ │ ├── save.svg │ │ │ │ ├── school.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── scroll.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── search-dollar.svg │ │ │ │ ├── search-location.svg │ │ │ │ ├── search-minus.svg │ │ │ │ ├── search-plus.svg │ │ │ │ ├── search.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-alt-square.svg │ │ │ │ ├── share-alt.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shekel-sign.svg │ │ │ │ ├── shield-alt.svg │ │ │ │ ├── shield-virus.svg │ │ │ │ ├── ship.svg │ │ │ │ ├── shipping-fast.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-basket.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shuttle-van.svg │ │ │ │ ├── sign-in-alt.svg │ │ │ │ ├── sign-language.svg │ │ │ │ ├── sign-out-alt.svg │ │ │ │ ├── sign.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── sim-card.svg │ │ │ │ ├── sink.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skating.svg │ │ │ │ ├── skiing-nordic.svg │ │ │ │ ├── skiing.svg │ │ │ │ ├── skull-crossbones.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sleigh.svg │ │ │ │ ├── sliders-h.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── smog.svg │ │ │ │ ├── smoking-ban.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── sms.svg │ │ │ │ ├── snowboarding.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── snowman.svg │ │ │ │ ├── snowplow.svg │ │ │ │ ├── soap.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ ├── sort-amount-down.svg │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ ├── sort-amount-up.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── space-shuttle.svg │ │ │ │ ├── spell-check.svg │ │ │ │ ├── spider.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-root-alt.svg │ │ │ │ ├── square.svg │ │ │ │ ├── stamp.svg │ │ │ │ ├── star-and-crescent.svg │ │ │ │ ├── star-half-alt.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-of-david.svg │ │ │ │ ├── star-of-life.svg │ │ │ │ ├── star.svg │ │ │ │ ├── step-backward.svg │ │ │ │ ├── step-forward.svg │ │ │ │ ├── stethoscope.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch-20.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── store-alt-slash.svg │ │ │ │ ├── store-alt.svg │ │ │ │ ├── store-slash.svg │ │ │ │ ├── store.svg │ │ │ │ ├── stream.svg │ │ │ │ ├── street-view.svg │ │ │ │ ├── strikethrough.svg │ │ │ │ ├── stroopwafel.svg │ │ │ │ ├── subscript.svg │ │ │ │ ├── subway.svg │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ ├── suitcase.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── superscript.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── swatchbook.svg │ │ │ │ ├── swimmer.svg │ │ │ │ ├── swimming-pool.svg │ │ │ │ ├── synagogue.svg │ │ │ │ ├── sync-alt.svg │ │ │ │ ├── sync.svg │ │ │ │ ├── syringe.svg │ │ │ │ ├── table-tennis.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tablet-alt.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── tablets.svg │ │ │ │ ├── tachometer-alt.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── tags.svg │ │ │ │ ├── tape.svg │ │ │ │ ├── tasks.svg │ │ │ │ ├── taxi.svg │ │ │ │ ├── teeth-open.svg │ │ │ │ ├── teeth.svg │ │ │ │ ├── temperature-high.svg │ │ │ │ ├── temperature-low.svg │ │ │ │ ├── tenge.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-height.svg │ │ │ │ ├── text-width.svg │ │ │ │ ├── th-large.svg │ │ │ │ ├── th-list.svg │ │ │ │ ├── th.svg │ │ │ │ ├── theater-masks.svg │ │ │ │ ├── thermometer-empty.svg │ │ │ │ ├── thermometer-full.svg │ │ │ │ ├── thermometer-half.svg │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thumbtack.svg │ │ │ │ ├── ticket-alt.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── times.svg │ │ │ │ ├── tint-slash.svg │ │ │ │ ├── tint.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toilet-paper-slash.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── trailer.svg │ │ │ │ ├── train.svg │ │ │ │ ├── tram.svg │ │ │ │ ├── transgender-alt.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ ├── trash-restore.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── truck-loading.svg │ │ │ │ ├── truck-monster.svg │ │ │ │ ├── truck-moving.svg │ │ │ │ ├── truck-pickup.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── tty.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── umbrella-beach.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── undo-alt.svg │ │ │ │ ├── undo.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlink.svg │ │ │ │ ├── unlock-alt.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-alt-slash.svg │ │ │ │ ├── user-alt.svg │ │ │ │ ├── user-astronaut.svg │ │ │ │ ├── user-check.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user-clock.svg │ │ │ │ ├── user-cog.svg │ │ │ │ ├── user-edit.svg │ │ │ │ ├── user-friends.svg │ │ │ │ ├── user-graduate.svg │ │ │ │ ├── user-injured.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-md.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-nurse.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-secret.svg │ │ │ │ ├── user-shield.svg │ │ │ │ ├── user-slash.svg │ │ │ │ ├── user-tag.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user-times.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users-cog.svg │ │ │ │ ├── users-slash.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── virus-slash.svg │ │ │ │ ├── virus.svg │ │ │ │ ├── viruses.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volleyball-ball.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── vote-yea.svg │ │ │ │ ├── vr-cardboard.svg │ │ │ │ ├── walking.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-bottle.svg │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ ├── wine-glass.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ └── yin-yang.svg │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── jquery-easing │ │ ├── jquery.easing.compatibility.js │ │ ├── jquery.easing.js │ │ └── jquery.easing.min.js │ │ ├── jquery │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map │ │ ├── select2 │ │ ├── css │ │ │ ├── select2.css │ │ │ └── select2.min.css │ │ └── js │ │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── pa.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ │ ├── select2.full.js │ │ │ ├── select2.full.min.js │ │ │ ├── select2.js │ │ │ └── select2.min.js │ │ └── summernote │ │ ├── font │ │ ├── summernote.eot │ │ ├── summernote.ttf │ │ ├── summernote.woff │ │ └── summernote.woff2 │ │ ├── lang │ │ ├── summernote-ar-AR.js │ │ ├── summernote-ar-AR.min.js │ │ ├── summernote-ar-AR.min.js.LICENSE.txt │ │ ├── summernote-az-AZ.js │ │ ├── summernote-az-AZ.min.js │ │ ├── summernote-az-AZ.min.js.LICENSE.txt │ │ ├── summernote-bg-BG.js │ │ ├── summernote-bg-BG.min.js │ │ ├── summernote-bg-BG.min.js.LICENSE.txt │ │ ├── summernote-ca-ES.js │ │ ├── summernote-ca-ES.min.js │ │ ├── summernote-ca-ES.min.js.LICENSE.txt │ │ ├── summernote-cs-CZ.js │ │ ├── summernote-cs-CZ.min.js │ │ ├── summernote-cs-CZ.min.js.LICENSE.txt │ │ ├── summernote-da-DK.js │ │ ├── summernote-da-DK.min.js │ │ ├── summernote-da-DK.min.js.LICENSE.txt │ │ ├── summernote-de-DE.js │ │ ├── summernote-de-DE.min.js │ │ ├── summernote-de-DE.min.js.LICENSE.txt │ │ ├── summernote-el-GR.js │ │ ├── summernote-el-GR.min.js │ │ ├── summernote-el-GR.min.js.LICENSE.txt │ │ ├── summernote-es-ES.js │ │ ├── summernote-es-ES.min.js │ │ ├── summernote-es-ES.min.js.LICENSE.txt │ │ ├── summernote-es-EU.js │ │ ├── summernote-es-EU.min.js │ │ ├── summernote-es-EU.min.js.LICENSE.txt │ │ ├── summernote-fa-IR.js │ │ ├── summernote-fa-IR.min.js │ │ ├── summernote-fa-IR.min.js.LICENSE.txt │ │ ├── summernote-fi-FI.js │ │ ├── summernote-fi-FI.min.js │ │ ├── summernote-fi-FI.min.js.LICENSE.txt │ │ ├── summernote-fr-FR.js │ │ ├── summernote-fr-FR.min.js │ │ ├── summernote-fr-FR.min.js.LICENSE.txt │ │ ├── summernote-gl-ES.js │ │ ├── summernote-gl-ES.min.js │ │ ├── summernote-gl-ES.min.js.LICENSE.txt │ │ ├── summernote-he-IL.js │ │ ├── summernote-he-IL.min.js │ │ ├── summernote-he-IL.min.js.LICENSE.txt │ │ ├── summernote-hr-HR.js │ │ ├── summernote-hr-HR.min.js │ │ ├── summernote-hr-HR.min.js.LICENSE.txt │ │ ├── summernote-hu-HU.js │ │ ├── summernote-hu-HU.min.js │ │ ├── summernote-hu-HU.min.js.LICENSE.txt │ │ ├── summernote-id-ID.js │ │ ├── summernote-id-ID.min.js │ │ ├── summernote-id-ID.min.js.LICENSE.txt │ │ ├── summernote-it-IT.js │ │ ├── summernote-it-IT.min.js │ │ ├── summernote-it-IT.min.js.LICENSE.txt │ │ ├── summernote-ja-JP.js │ │ ├── summernote-ja-JP.min.js │ │ ├── summernote-ja-JP.min.js.LICENSE.txt │ │ ├── summernote-ko-KR.js │ │ ├── summernote-ko-KR.min.js │ │ ├── summernote-ko-KR.min.js.LICENSE.txt │ │ ├── summernote-lt-LT.js │ │ ├── summernote-lt-LT.min.js │ │ ├── summernote-lt-LT.min.js.LICENSE.txt │ │ ├── summernote-lt-LV.js │ │ ├── summernote-lt-LV.min.js │ │ ├── summernote-lt-LV.min.js.LICENSE.txt │ │ ├── summernote-mn-MN.js │ │ ├── summernote-mn-MN.min.js │ │ ├── summernote-mn-MN.min.js.LICENSE.txt │ │ ├── summernote-nb-NO.js │ │ ├── summernote-nb-NO.min.js │ │ ├── summernote-nb-NO.min.js.LICENSE.txt │ │ ├── summernote-nl-NL.js │ │ ├── summernote-nl-NL.min.js │ │ ├── summernote-nl-NL.min.js.LICENSE.txt │ │ ├── summernote-pl-PL.js │ │ ├── summernote-pl-PL.min.js │ │ ├── summernote-pl-PL.min.js.LICENSE.txt │ │ ├── summernote-pt-BR.js │ │ ├── summernote-pt-BR.min.js │ │ ├── summernote-pt-BR.min.js.LICENSE.txt │ │ ├── summernote-pt-PT.js │ │ ├── summernote-pt-PT.min.js │ │ ├── summernote-pt-PT.min.js.LICENSE.txt │ │ ├── summernote-ro-RO.js │ │ ├── summernote-ro-RO.min.js │ │ ├── summernote-ro-RO.min.js.LICENSE.txt │ │ ├── summernote-ru-RU.js │ │ ├── summernote-ru-RU.min.js │ │ ├── summernote-ru-RU.min.js.LICENSE.txt │ │ ├── summernote-sk-SK.js │ │ ├── summernote-sk-SK.min.js │ │ ├── summernote-sk-SK.min.js.LICENSE.txt │ │ ├── summernote-sl-SI.js │ │ ├── summernote-sl-SI.min.js │ │ ├── summernote-sl-SI.min.js.LICENSE.txt │ │ ├── summernote-sr-RS-Latin.js │ │ ├── summernote-sr-RS-Latin.min.js │ │ ├── summernote-sr-RS-Latin.min.js.LICENSE.txt │ │ ├── summernote-sr-RS.js │ │ ├── summernote-sr-RS.min.js │ │ ├── summernote-sr-RS.min.js.LICENSE.txt │ │ ├── summernote-sv-SE.js │ │ ├── summernote-sv-SE.min.js │ │ ├── summernote-sv-SE.min.js.LICENSE.txt │ │ ├── summernote-ta-IN.js │ │ ├── summernote-ta-IN.min.js │ │ ├── summernote-ta-IN.min.js.LICENSE.txt │ │ ├── summernote-th-TH.js │ │ ├── summernote-th-TH.min.js │ │ ├── summernote-th-TH.min.js.LICENSE.txt │ │ ├── summernote-tr-TR.js │ │ ├── summernote-tr-TR.min.js │ │ ├── summernote-tr-TR.min.js.LICENSE.txt │ │ ├── summernote-uk-UA.js │ │ ├── summernote-uk-UA.min.js │ │ ├── summernote-uk-UA.min.js.LICENSE.txt │ │ ├── summernote-uz-UZ.js │ │ ├── summernote-uz-UZ.min.js │ │ ├── summernote-uz-UZ.min.js.LICENSE.txt │ │ ├── summernote-vi-VN.js │ │ ├── summernote-vi-VN.min.js │ │ ├── summernote-vi-VN.min.js.LICENSE.txt │ │ ├── summernote-zh-CN.js │ │ ├── summernote-zh-CN.min.js │ │ ├── summernote-zh-CN.min.js.LICENSE.txt │ │ ├── summernote-zh-TW.js │ │ ├── summernote-zh-TW.min.js │ │ └── summernote-zh-TW.min.js.LICENSE.txt │ │ ├── plugin │ │ ├── databasic │ │ │ ├── summernote-ext-databasic.css │ │ │ └── summernote-ext-databasic.js │ │ ├── hello │ │ │ └── summernote-ext-hello.js │ │ └── specialchars │ │ │ └── summernote-ext-specialchars.js │ │ ├── summernote-bs4.css │ │ ├── summernote-bs4.js │ │ ├── summernote-bs4.js.map │ │ ├── summernote-bs4.min.css │ │ ├── summernote-bs4.min.js │ │ ├── summernote-bs4.min.js.LICENSE.txt │ │ └── summernote-bs4.min.js.map ├── css │ └── app.css ├── favicon.ico ├── frontend │ ├── css │ │ ├── bootstrap.min.css │ │ ├── custom.css │ │ ├── plugins.css │ │ ├── plugins │ │ │ ├── animation.css │ │ │ ├── bicon.min.css │ │ │ ├── fakeloader.css │ │ │ ├── fancybox.css │ │ │ ├── font-awesome.min.css │ │ │ ├── fotorama.css │ │ │ ├── jquery-ui.min.css │ │ │ ├── lightbox.css │ │ │ ├── mainmenu.css │ │ │ ├── material-design-iconic-font.min.css │ │ │ ├── nivo-preview-2.css │ │ │ ├── nivo-slider.css │ │ │ ├── owl.carousel.min.css │ │ │ ├── owl.theme.default.min.css │ │ │ ├── pe-icon-7-stroke.css │ │ │ ├── simple-line-icons.css │ │ │ └── slick.min.css │ │ └── style.css │ ├── fonts │ │ ├── Material-Design-Iconic-Font.woff2 │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ ├── Simple-Line-Icons.woff2 │ │ ├── bicon.eot │ │ ├── bicon.svg │ │ ├── bicon.ttf │ │ ├── bicon.woff │ │ ├── fontawesome-webfont-1.eot │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── slick-1.eot │ │ ├── slick.eot │ │ ├── slick.svg │ │ ├── slick.ttf │ │ └── slick.woff │ ├── images │ │ ├── about │ │ │ ├── big-img │ │ │ │ ├── 1.jpg │ │ │ │ └── 2.jpg │ │ │ └── team │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ └── 6.jpg │ │ ├── ajax-loader.gif │ │ ├── best-sell-product │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ └── 8.jpg │ │ ├── bg │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── blog │ │ │ ├── big-img │ │ │ │ └── 1.jpg │ │ │ ├── blog-3 │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ └── 5.jpg │ │ │ ├── comment │ │ │ │ └── 1.jpeg │ │ │ └── sm-img │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ └── 5.jpg │ │ ├── books │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── brand │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ └── 7.png │ │ ├── fancybox │ │ │ ├── blank.gif │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_loading@2x.gif │ │ │ ├── fancybox_overlay.png │ │ │ ├── fancybox_sprite.png │ │ │ └── fancybox_sprite@2x.png │ │ ├── favicon.ico │ │ ├── icon.png │ │ ├── icons │ │ │ ├── bell.png │ │ │ ├── bell_white.png │ │ │ ├── blog-link-post2.png │ │ │ ├── box.png │ │ │ ├── button-compare.png │ │ │ ├── button-email.png │ │ │ ├── button-wishlist.png │ │ │ ├── button-wishlist_white.png │ │ │ ├── cart.png │ │ │ ├── cart1.png │ │ │ ├── cart2.png │ │ │ ├── cart3.png │ │ │ ├── cart4.png │ │ │ ├── cart_white.png │ │ │ ├── close.png │ │ │ ├── comment.png │ │ │ ├── compare.png │ │ │ ├── compare2.png │ │ │ ├── em.png │ │ │ ├── em2.png │ │ │ ├── fotorama.png │ │ │ ├── fotorama@2x.png │ │ │ ├── icon_account.png │ │ │ ├── icon_account2.png │ │ │ ├── icon_cart2.png │ │ │ ├── icon_cart3.png │ │ │ ├── icon_search2.png │ │ │ ├── icon_search3.png │ │ │ ├── icon_setting.png │ │ │ ├── icon_setting_white.png │ │ │ ├── icon_title.png │ │ │ ├── icon_title2.png │ │ │ ├── icon_title3.png │ │ │ ├── lc.png │ │ │ ├── lc2.png │ │ │ ├── line_title.png │ │ │ ├── links_static.png │ │ │ ├── links_static2.png │ │ │ ├── links_static3.png │ │ │ ├── links_static4.png │ │ │ ├── links_static5.png │ │ │ ├── links_static6.png │ │ │ ├── links_static7.png │ │ │ ├── links_static8.png │ │ │ ├── loading.gif │ │ │ ├── nav_icon.png │ │ │ ├── next.png │ │ │ ├── payment.png │ │ │ ├── ph.png │ │ │ ├── ph2.png │ │ │ ├── plus.png │ │ │ ├── prev.png │ │ │ ├── product-info.png │ │ │ ├── search.png │ │ │ ├── search1.png │ │ │ ├── search2.png │ │ │ ├── search_white.png │ │ │ ├── wishlist.png │ │ │ └── wishlist2.png │ │ ├── logo │ │ │ └── logo.png │ │ ├── others │ │ │ ├── 404.png │ │ │ ├── banner_left.jpg │ │ │ ├── toggle_close.png │ │ │ └── toggle_open.png │ │ ├── png-img │ │ │ ├── headphone.png │ │ │ ├── payment.png │ │ │ └── shipping.png │ │ ├── portfolio │ │ │ ├── big-2 │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ └── 3.jpg │ │ │ ├── big-img │ │ │ │ └── 1.jpg │ │ │ └── md-img │ │ │ │ ├── 1.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 8.jpg │ │ │ │ └── 9.jpg │ │ ├── pos-bg │ │ │ └── 3.jpeg │ │ ├── product │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ ├── 9.jpg │ │ │ ├── big-img │ │ │ │ └── 1.jpg │ │ │ ├── sm-3 │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ └── 3.jpg │ │ │ └── sm-img │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ └── 3.jpg │ │ └── testimonial │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ └── js │ │ ├── active.js │ │ ├── bootstrap-fileinput │ │ ├── css │ │ │ ├── fileinput-rtl.css │ │ │ ├── fileinput-rtl.min.css │ │ │ ├── fileinput.css │ │ │ └── fileinput.min.css │ │ ├── img │ │ │ ├── loading-sm.gif │ │ │ └── loading.gif │ │ ├── js │ │ │ ├── fileinput.js │ │ │ ├── fileinput.min.js │ │ │ ├── locales │ │ │ │ ├── LANG.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cr.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── kr.js │ │ │ │ ├── kz.js │ │ │ │ ├── lt.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-TW.js │ │ │ │ └── zh.js │ │ │ └── plugins │ │ │ │ ├── piexif.js │ │ │ │ ├── piexif.min.js │ │ │ │ ├── purify.js │ │ │ │ ├── purify.min.js │ │ │ │ ├── sortable.js │ │ │ │ └── sortable.min.js │ │ └── themes │ │ │ ├── explorer-fa │ │ │ ├── theme.css │ │ │ ├── theme.js │ │ │ ├── theme.min.css │ │ │ └── theme.min.js │ │ │ ├── explorer-fas │ │ │ ├── theme.css │ │ │ ├── theme.js │ │ │ ├── theme.min.css │ │ │ └── theme.min.js │ │ │ ├── explorer │ │ │ ├── theme.css │ │ │ ├── theme.js │ │ │ ├── theme.min.css │ │ │ └── theme.min.js │ │ │ ├── fa │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ │ ├── fas │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ │ └── gly │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ ├── bootstrap.min.js │ │ ├── custom.js │ │ ├── plugins.js │ │ ├── popper.min.js │ │ ├── summernote │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ ├── summernote.woff │ │ │ └── summernote.woff2 │ │ ├── lang │ │ │ ├── summernote-ar-AR.js │ │ │ ├── summernote-ar-AR.min.js │ │ │ ├── summernote-ar-AR.min.js.LICENSE.txt │ │ │ ├── summernote-az-AZ.js │ │ │ ├── summernote-az-AZ.min.js │ │ │ ├── summernote-az-AZ.min.js.LICENSE.txt │ │ │ ├── summernote-bg-BG.js │ │ │ ├── summernote-bg-BG.min.js │ │ │ ├── summernote-bg-BG.min.js.LICENSE.txt │ │ │ ├── summernote-ca-ES.js │ │ │ ├── summernote-ca-ES.min.js │ │ │ ├── summernote-ca-ES.min.js.LICENSE.txt │ │ │ ├── summernote-cs-CZ.js │ │ │ ├── summernote-cs-CZ.min.js │ │ │ ├── summernote-cs-CZ.min.js.LICENSE.txt │ │ │ ├── summernote-da-DK.js │ │ │ ├── summernote-da-DK.min.js │ │ │ ├── summernote-da-DK.min.js.LICENSE.txt │ │ │ ├── summernote-de-DE.js │ │ │ ├── summernote-de-DE.min.js │ │ │ ├── summernote-de-DE.min.js.LICENSE.txt │ │ │ ├── summernote-el-GR.js │ │ │ ├── summernote-el-GR.min.js │ │ │ ├── summernote-el-GR.min.js.LICENSE.txt │ │ │ ├── summernote-es-ES.js │ │ │ ├── summernote-es-ES.min.js │ │ │ ├── summernote-es-ES.min.js.LICENSE.txt │ │ │ ├── summernote-es-EU.js │ │ │ ├── summernote-es-EU.min.js │ │ │ ├── summernote-es-EU.min.js.LICENSE.txt │ │ │ ├── summernote-fa-IR.js │ │ │ ├── summernote-fa-IR.min.js │ │ │ ├── summernote-fa-IR.min.js.LICENSE.txt │ │ │ ├── summernote-fi-FI.js │ │ │ ├── summernote-fi-FI.min.js │ │ │ ├── summernote-fi-FI.min.js.LICENSE.txt │ │ │ ├── summernote-fr-FR.js │ │ │ ├── summernote-fr-FR.min.js │ │ │ ├── summernote-fr-FR.min.js.LICENSE.txt │ │ │ ├── summernote-gl-ES.js │ │ │ ├── summernote-gl-ES.min.js │ │ │ ├── summernote-gl-ES.min.js.LICENSE.txt │ │ │ ├── summernote-he-IL.js │ │ │ ├── summernote-he-IL.min.js │ │ │ ├── summernote-he-IL.min.js.LICENSE.txt │ │ │ ├── summernote-hr-HR.js │ │ │ ├── summernote-hr-HR.min.js │ │ │ ├── summernote-hr-HR.min.js.LICENSE.txt │ │ │ ├── summernote-hu-HU.js │ │ │ ├── summernote-hu-HU.min.js │ │ │ ├── summernote-hu-HU.min.js.LICENSE.txt │ │ │ ├── summernote-id-ID.js │ │ │ ├── summernote-id-ID.min.js │ │ │ ├── summernote-id-ID.min.js.LICENSE.txt │ │ │ ├── summernote-it-IT.js │ │ │ ├── summernote-it-IT.min.js │ │ │ ├── summernote-it-IT.min.js.LICENSE.txt │ │ │ ├── summernote-ja-JP.js │ │ │ ├── summernote-ja-JP.min.js │ │ │ ├── summernote-ja-JP.min.js.LICENSE.txt │ │ │ ├── summernote-ko-KR.js │ │ │ ├── summernote-ko-KR.min.js │ │ │ ├── summernote-ko-KR.min.js.LICENSE.txt │ │ │ ├── summernote-lt-LT.js │ │ │ ├── summernote-lt-LT.min.js │ │ │ ├── summernote-lt-LT.min.js.LICENSE.txt │ │ │ ├── summernote-lt-LV.js │ │ │ ├── summernote-lt-LV.min.js │ │ │ ├── summernote-lt-LV.min.js.LICENSE.txt │ │ │ ├── summernote-mn-MN.js │ │ │ ├── summernote-mn-MN.min.js │ │ │ ├── summernote-mn-MN.min.js.LICENSE.txt │ │ │ ├── summernote-nb-NO.js │ │ │ ├── summernote-nb-NO.min.js │ │ │ ├── summernote-nb-NO.min.js.LICENSE.txt │ │ │ ├── summernote-nl-NL.js │ │ │ ├── summernote-nl-NL.min.js │ │ │ ├── summernote-nl-NL.min.js.LICENSE.txt │ │ │ ├── summernote-pl-PL.js │ │ │ ├── summernote-pl-PL.min.js │ │ │ ├── summernote-pl-PL.min.js.LICENSE.txt │ │ │ ├── summernote-pt-BR.js │ │ │ ├── summernote-pt-BR.min.js │ │ │ ├── summernote-pt-BR.min.js.LICENSE.txt │ │ │ ├── summernote-pt-PT.js │ │ │ ├── summernote-pt-PT.min.js │ │ │ ├── summernote-pt-PT.min.js.LICENSE.txt │ │ │ ├── summernote-ro-RO.js │ │ │ ├── summernote-ro-RO.min.js │ │ │ ├── summernote-ro-RO.min.js.LICENSE.txt │ │ │ ├── summernote-ru-RU.js │ │ │ ├── summernote-ru-RU.min.js │ │ │ ├── summernote-ru-RU.min.js.LICENSE.txt │ │ │ ├── summernote-sk-SK.js │ │ │ ├── summernote-sk-SK.min.js │ │ │ ├── summernote-sk-SK.min.js.LICENSE.txt │ │ │ ├── summernote-sl-SI.js │ │ │ ├── summernote-sl-SI.min.js │ │ │ ├── summernote-sl-SI.min.js.LICENSE.txt │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ ├── summernote-sr-RS-Latin.min.js.LICENSE.txt │ │ │ ├── summernote-sr-RS.js │ │ │ ├── summernote-sr-RS.min.js │ │ │ ├── summernote-sr-RS.min.js.LICENSE.txt │ │ │ ├── summernote-sv-SE.js │ │ │ ├── summernote-sv-SE.min.js │ │ │ ├── summernote-sv-SE.min.js.LICENSE.txt │ │ │ ├── summernote-ta-IN.js │ │ │ ├── summernote-ta-IN.min.js │ │ │ ├── summernote-ta-IN.min.js.LICENSE.txt │ │ │ ├── summernote-th-TH.js │ │ │ ├── summernote-th-TH.min.js │ │ │ ├── summernote-th-TH.min.js.LICENSE.txt │ │ │ ├── summernote-tr-TR.js │ │ │ ├── summernote-tr-TR.min.js │ │ │ ├── summernote-tr-TR.min.js.LICENSE.txt │ │ │ ├── summernote-uk-UA.js │ │ │ ├── summernote-uk-UA.min.js │ │ │ ├── summernote-uk-UA.min.js.LICENSE.txt │ │ │ ├── summernote-uz-UZ.js │ │ │ ├── summernote-uz-UZ.min.js │ │ │ ├── summernote-uz-UZ.min.js.LICENSE.txt │ │ │ ├── summernote-vi-VN.js │ │ │ ├── summernote-vi-VN.min.js │ │ │ ├── summernote-vi-VN.min.js.LICENSE.txt │ │ │ ├── summernote-zh-CN.js │ │ │ ├── summernote-zh-CN.min.js │ │ │ ├── summernote-zh-CN.min.js.LICENSE.txt │ │ │ ├── summernote-zh-TW.js │ │ │ ├── summernote-zh-TW.min.js │ │ │ └── summernote-zh-TW.min.js.LICENSE.txt │ │ ├── plugin │ │ │ ├── databasic │ │ │ │ ├── summernote-ext-databasic.css │ │ │ │ └── summernote-ext-databasic.js │ │ │ ├── hello │ │ │ │ └── summernote-ext-hello.js │ │ │ └── specialchars │ │ │ │ └── summernote-ext-specialchars.js │ │ ├── summernote-bs4.min.css │ │ └── summernote-bs4.min.js │ │ └── vendor │ │ ├── jquery-3.2.1.min.js │ │ └── modernizr-3.5.0.min.js ├── index.php ├── js │ └── app.js ├── mix-manifest.json └── robots.txt ├── resources ├── js │ ├── app.js │ ├── bootstrap.js │ └── components │ │ ├── AdminNotification.vue │ │ └── UserNotification.vue ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── backend │ ├── auth │ │ ├── login.blade.php │ │ ├── passwords │ │ │ ├── confirm.blade.php │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ ├── register.blade.php │ │ └── verify.blade.php │ ├── contact_us │ │ ├── filter │ │ │ └── filter.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── index.blade.php │ ├── pages │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── filter │ │ │ └── filter.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── post_categories │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── filter │ │ │ └── filter.blade.php │ │ └── index.blade.php │ ├── post_comments │ │ ├── edit.blade.php │ │ ├── filter │ │ │ └── filter.blade.php │ │ └── index.blade.php │ ├── posts │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── filter │ │ │ └── filter.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── settings │ │ └── index.blade.php │ ├── supervisors │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── filter │ │ │ └── filter.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ └── users │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── filter │ │ └── filter.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── errors │ ├── 401.blade.php │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 429.blade.php │ ├── 500.blade.php │ ├── 503.blade.php │ ├── illustrated-layout.blade.php │ ├── layout.blade.php │ └── minimal.blade.php │ ├── frontend │ ├── auth │ │ ├── login.blade.php │ │ ├── passwords │ │ │ ├── confirm.blade.php │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ ├── register.blade.php │ │ └── verify.blade.php │ ├── contact.blade.php │ ├── index.blade.php │ ├── page.blade.php │ ├── post.blade.php │ └── users │ │ ├── comments.blade.php │ │ ├── create_post.blade.php │ │ ├── dashboard.blade.php │ │ ├── edit_comment.blade.php │ │ ├── edit_info.blade.php │ │ └── edit_post.blade.php │ ├── home.blade.php │ ├── layouts │ ├── admin-auth.blade.php │ ├── admin.blade.php │ ├── app-auth.blade.php │ └── app.blade.php │ ├── livewire │ └── backend │ │ ├── last-post-comments.blade.php │ │ └── statistics.blade.php │ ├── partial │ ├── backend │ │ ├── header.blade.php │ │ └── sidebar.blade.php │ ├── flash.blade.php │ └── frontend │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── sidebar.blade.php │ │ └── users │ │ └── sidebar.blade.php │ ├── vendor │ ├── mail │ │ ├── html │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── subcopy.blade.php │ │ │ ├── table.blade.php │ │ │ └── themes │ │ │ │ └── default.css │ │ └── text │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── subcopy.blade.php │ │ │ └── table.blade.php │ ├── notifications │ │ └── email.blade.php │ └── pagination │ │ ├── boighor.blade.php │ │ ├── bootstrap-4.blade.php │ │ ├── default.blade.php │ │ ├── semantic-ui.blade.php │ │ ├── simple-bootstrap-4.blade.php │ │ ├── simple-default.blade.php │ │ ├── simple-tailwind.blade.php │ │ └── tailwind.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── logs │ └── .gitignore └── purify │ └── HTML │ └── 4.13.0,201941fd312d03ad71003ab5e619ba7cd6a3d75e,1.ser ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── tmp-files ├── boighor-html-ftc │ ├── Documentation │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── documenter_style.css │ │ │ │ └── pre_bg.png │ │ │ ├── img │ │ │ │ ├── blog_1.png │ │ │ │ ├── blog_2.png │ │ │ │ ├── contact_1.png │ │ │ │ ├── contact_2.png │ │ │ │ ├── copyright.png │ │ │ │ ├── copyright_1.png │ │ │ │ ├── copyright_2.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ ├── glyphicons │ │ │ │ │ ├── glyphicons_009_magic.png │ │ │ │ │ ├── glyphicons_042_group.png │ │ │ │ │ ├── glyphicons_079_podium.png │ │ │ │ │ ├── glyphicons_082_roundabout.png │ │ │ │ │ ├── glyphicons_155_show_thumbnails.png │ │ │ │ │ ├── glyphicons_163_iphone.png │ │ │ │ │ ├── glyphicons_214_resize_small.png │ │ │ │ │ └── glyphicons_266_book_open.png │ │ │ │ ├── header_1.png │ │ │ │ ├── header_2.png │ │ │ │ ├── header_3.png │ │ │ │ ├── logo.png │ │ │ │ ├── map_1.png │ │ │ │ ├── map_2.png │ │ │ │ ├── map_3.png │ │ │ │ ├── portfolio_1.png │ │ │ │ ├── portfolio_2.png │ │ │ │ ├── product_1.png │ │ │ │ ├── product_2.png │ │ │ │ ├── product_3.png │ │ │ │ ├── product_4.png │ │ │ │ ├── slider_text_1.png │ │ │ │ ├── slider_text_2.png │ │ │ │ ├── subcribe_1.png │ │ │ │ ├── subcribe_2.png │ │ │ │ ├── team_1.png │ │ │ │ └── team_2.png │ │ │ └── js │ │ │ │ ├── README.md │ │ │ │ ├── bootstrap-min.js │ │ │ │ ├── google-code-prettify │ │ │ │ ├── prettify.css │ │ │ │ └── prettify.js │ │ │ │ ├── jquery.easing.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.scrollTo.js │ │ │ │ └── scripts.js │ │ └── index.html │ ├── boighor-html-ftc.zip │ └── boighor │ │ ├── about.html │ │ ├── blog-details.html │ │ ├── blog.html │ │ ├── cart.html │ │ ├── checkout.html │ │ ├── contact.html │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── custom.css │ │ ├── plugins.css │ │ └── plugins │ │ │ ├── animation.css │ │ │ ├── bicon.min.css │ │ │ ├── fakeloader.css │ │ │ ├── fancybox.css │ │ │ ├── font-awesome.min.css │ │ │ ├── fotorama.css │ │ │ ├── jquery-ui.min.css │ │ │ ├── lightbox.css │ │ │ ├── mainmenu.css │ │ │ ├── material-design-iconic-font.min.css │ │ │ ├── nivo-preview-2.css │ │ │ ├── nivo-slider.css │ │ │ ├── owl.carousel.min.css │ │ │ ├── owl.theme.default.min.css │ │ │ ├── pe-icon-7-stroke.css │ │ │ ├── simple-line-icons.css │ │ │ └── slick.min.css │ │ ├── error404.html │ │ ├── faq.html │ │ ├── fonts │ │ ├── Material-Design-Iconic-Font.woff2 │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ ├── Simple-Line-Icons.woff2 │ │ ├── bicon.eot │ │ ├── bicon.svg │ │ ├── bicon.ttf │ │ ├── bicon.woff │ │ ├── fontawesome-webfont-1.eot │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── slick-1.eot │ │ ├── slick.eot │ │ ├── slick.svg │ │ ├── slick.ttf │ │ └── slick.woff │ │ ├── images │ │ ├── about │ │ │ ├── big-img │ │ │ │ ├── 1.jpg │ │ │ │ └── 2.jpg │ │ │ └── team │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ └── 6.jpg │ │ ├── ajax-loader.gif │ │ ├── best-sell-product │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ └── 8.jpg │ │ ├── bg │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── blog │ │ │ ├── big-img │ │ │ │ └── 1.jpg │ │ │ ├── blog-3 │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ └── 5.jpg │ │ │ ├── comment │ │ │ │ └── 1.jpeg │ │ │ └── sm-img │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ └── 5.jpg │ │ ├── books │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── brand │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ └── 7.png │ │ ├── fancybox │ │ │ ├── blank.gif │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_loading@2x.gif │ │ │ ├── fancybox_overlay.png │ │ │ ├── fancybox_sprite.png │ │ │ └── fancybox_sprite@2x.png │ │ ├── favicon.ico │ │ ├── icon.png │ │ ├── icons │ │ │ ├── blog-link-post2.png │ │ │ ├── box.png │ │ │ ├── button-compare.png │ │ │ ├── button-email.png │ │ │ ├── button-wishlist.png │ │ │ ├── button-wishlist_white.png │ │ │ ├── cart.png │ │ │ ├── cart1.png │ │ │ ├── cart2.png │ │ │ ├── cart3.png │ │ │ ├── cart4.png │ │ │ ├── cart_white.png │ │ │ ├── close.png │ │ │ ├── compare.png │ │ │ ├── compare2.png │ │ │ ├── em.png │ │ │ ├── em2.png │ │ │ ├── fotorama.png │ │ │ ├── fotorama@2x.png │ │ │ ├── icon_account.png │ │ │ ├── icon_account2.png │ │ │ ├── icon_cart2.png │ │ │ ├── icon_cart3.png │ │ │ ├── icon_search2.png │ │ │ ├── icon_search3.png │ │ │ ├── icon_setting.png │ │ │ ├── icon_setting_white.png │ │ │ ├── icon_title.png │ │ │ ├── icon_title2.png │ │ │ ├── icon_title3.png │ │ │ ├── lc.png │ │ │ ├── lc2.png │ │ │ ├── line_title.png │ │ │ ├── links_static.png │ │ │ ├── links_static2.png │ │ │ ├── links_static3.png │ │ │ ├── links_static4.png │ │ │ ├── links_static5.png │ │ │ ├── links_static6.png │ │ │ ├── links_static7.png │ │ │ ├── links_static8.png │ │ │ ├── loading.gif │ │ │ ├── nav_icon.png │ │ │ ├── next.png │ │ │ ├── payment.png │ │ │ ├── ph.png │ │ │ ├── ph2.png │ │ │ ├── plus.png │ │ │ ├── prev.png │ │ │ ├── product-info.png │ │ │ ├── search.png │ │ │ ├── search1.png │ │ │ ├── search2.png │ │ │ ├── search_white.png │ │ │ ├── wishlist.png │ │ │ └── wishlist2.png │ │ ├── logo │ │ │ ├── 3.png │ │ │ └── logo.png │ │ ├── others │ │ │ ├── 404.png │ │ │ ├── banner_left.jpg │ │ │ ├── toggle_close.png │ │ │ └── toggle_open.png │ │ ├── png-img │ │ │ ├── headphone.png │ │ │ ├── payment.png │ │ │ └── shipping.png │ │ ├── portfolio │ │ │ ├── big-2 │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ └── 3.jpg │ │ │ ├── big-img │ │ │ │ └── 1.jpg │ │ │ └── md-img │ │ │ │ ├── 1.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 8.jpg │ │ │ │ └── 9.jpg │ │ ├── pos-bg │ │ │ └── 3.jpeg │ │ ├── product │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ ├── 9.jpg │ │ │ ├── big-img │ │ │ │ └── 1.jpg │ │ │ ├── sm-3 │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ └── 3.jpg │ │ │ └── sm-img │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ └── 3.jpg │ │ └── testimonial │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ ├── index.html │ │ ├── js │ │ ├── active.js │ │ ├── bootstrap.min.js │ │ ├── plugins.js │ │ ├── popper.min.js │ │ └── vendor │ │ │ ├── jquery-3.2.1.min.js │ │ │ └── modernizr-3.5.0.min.js │ │ ├── my-account.html │ │ ├── portfolio-details.html │ │ ├── portfolio.html │ │ ├── shop-grid.html │ │ ├── single-product.html │ │ ├── style.css │ │ ├── team.html │ │ └── wishlist.html ├── mindscms-logo.png ├── select2-develop.zip └── startbootstrap-sb-admin-2-gh-pages.zip └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helper/GeneralHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Helper/GeneralHelper.php -------------------------------------------------------------------------------- /app/Helper/MySlugHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Helper/MySlugHelper.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Backend/AdminController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Api/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Backend/Api/ApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Backend/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Backend/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/ContactUsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Backend/ContactUsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/NotificationsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Backend/NotificationsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/PagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Backend/PagesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/PostCommentsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Backend/PostCommentsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/PostsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Backend/PostsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Backend/SettingsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/SupervisorsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Backend/SupervisorsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Backend/UsersController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Frontend/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Frontend/IndexController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/Frontend/UsersController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Livewire/Backend/LastPostComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Livewire/Backend/LastPostComments.php -------------------------------------------------------------------------------- /app/Http/Livewire/Backend/Statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Livewire/Backend/Statistics.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Middleware/CheckRole.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Models/Comment.php -------------------------------------------------------------------------------- /app/Models/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Models/Contact.php -------------------------------------------------------------------------------- /app/Models/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Models/Page.php -------------------------------------------------------------------------------- /app/Models/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Models/Permission.php -------------------------------------------------------------------------------- /app/Models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Models/Post.php -------------------------------------------------------------------------------- /app/Models/PostMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Models/PostMedia.php -------------------------------------------------------------------------------- /app/Models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Models/Role.php -------------------------------------------------------------------------------- /app/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Models/Setting.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/UserPermission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Models/UserPermission.php -------------------------------------------------------------------------------- /app/Notifications/NewCommentForAdminNotify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Notifications/NewCommentForAdminNotify.php -------------------------------------------------------------------------------- /app/Notifications/NewCommentForPostOwnerNotify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Notifications/NewCommentForPostOwnerNotify.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ViewServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/app/Providers/ViewServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/composer.json -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/database.php -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/debugbar.php -------------------------------------------------------------------------------- /config/entrust.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/entrust.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/flare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/flare.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/ignition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/ignition.php -------------------------------------------------------------------------------- /config/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/image.php -------------------------------------------------------------------------------- /config/imagecache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/imagecache.php -------------------------------------------------------------------------------- /config/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/livewire.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/purify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/purify.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/session.php -------------------------------------------------------------------------------- /config/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/settings.json -------------------------------------------------------------------------------- /config/sluggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/sluggable.php -------------------------------------------------------------------------------- /config/tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/tinker.php -------------------------------------------------------------------------------- /config/trustedproxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/trustedproxy.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/view.php -------------------------------------------------------------------------------- /config/websockets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/config/websockets.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeds/CategoriesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/database/seeds/CategoriesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/CommentsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/database/seeds/CommentsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/PagesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/database/seeds/PagesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/PermissionTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/database/seeds/PermissionTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/PostsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/database/seeds/PostsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/RolesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/database/seeds/RolesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/SettingsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/database/seeds/SettingsTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/posts/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/assets/posts/default.jpg -------------------------------------------------------------------------------- /public/assets/posts/default_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/assets/posts/default_small.jpg -------------------------------------------------------------------------------- /public/assets/users/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/assets/users/default.png -------------------------------------------------------------------------------- /public/assets/users/editor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/assets/users/editor.jpeg -------------------------------------------------------------------------------- /public/assets/users/mansour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/assets/users/mansour.png -------------------------------------------------------------------------------- /public/assets/users/mansour123.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/assets/users/mansour123.jpeg -------------------------------------------------------------------------------- /public/assets/users/sami.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/assets/users/sami.jpg -------------------------------------------------------------------------------- /public/backend/css/sb-admin-2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/css/sb-admin-2.css -------------------------------------------------------------------------------- /public/backend/css/sb-admin-2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/css/sb-admin-2.min.css -------------------------------------------------------------------------------- /public/backend/img/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/img/01.jpg -------------------------------------------------------------------------------- /public/backend/img/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/img/02.jpg -------------------------------------------------------------------------------- /public/backend/img/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/img/03.jpg -------------------------------------------------------------------------------- /public/backend/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/img/logo.png -------------------------------------------------------------------------------- /public/backend/img/undraw_posting_photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/img/undraw_posting_photo.svg -------------------------------------------------------------------------------- /public/backend/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/js/custom.js -------------------------------------------------------------------------------- /public/backend/js/demo/chart-area-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/js/demo/chart-area-demo.js -------------------------------------------------------------------------------- /public/backend/js/demo/chart-bar-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/js/demo/chart-bar-demo.js -------------------------------------------------------------------------------- /public/backend/js/demo/chart-pie-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/js/demo/chart-pie-demo.js -------------------------------------------------------------------------------- /public/backend/js/demo/datatables-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/js/demo/datatables-demo.js -------------------------------------------------------------------------------- /public/backend/js/sb-admin-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/js/sb-admin-2.js -------------------------------------------------------------------------------- /public/backend/js/sb-admin-2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/js/sb-admin-2.min.js -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_custom-forms.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_input-group.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_jumbotron.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/mixins/_badge.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/mixins/_float.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/mixins/_hover.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/mixins/_size.scss -------------------------------------------------------------------------------- /public/backend/vendor/bootstrap/scss/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/bootstrap/scss/vendor/_rfs.scss -------------------------------------------------------------------------------- /public/backend/vendor/chart.js/Chart.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/chart.js/Chart.bundle.js -------------------------------------------------------------------------------- /public/backend/vendor/chart.js/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/chart.js/Chart.bundle.min.js -------------------------------------------------------------------------------- /public/backend/vendor/chart.js/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/chart.js/Chart.js -------------------------------------------------------------------------------- /public/backend/vendor/chart.js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/chart.js/Chart.min.js -------------------------------------------------------------------------------- /public/backend/vendor/datatables/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/datatables/jquery.dataTables.js -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/LICENSE.txt -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/css/all.css -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/css/all.min.css -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/css/brands.css -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/css/regular.css -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/css/solid.css -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/css/solid.min.css -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/css/v4-shims.css -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/js/all.js -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/js/all.min.js -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/js/brands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/js/brands.js -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/js/brands.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/js/brands.min.js -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/js/fontawesome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/js/fontawesome.js -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/js/regular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/js/regular.js -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/js/regular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/js/regular.min.js -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/js/solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/js/solid.js -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/js/solid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/js/solid.min.js -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/js/v4-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/js/v4-shims.js -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/less/_core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/less/_core.less -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/less/_icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/less/_icons.less -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/less/_larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/less/_larger.less -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/less/_list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/less/_list.less -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/less/_mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/less/_mixins.less -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/less/_shims.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/less/_shims.less -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/less/brands.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/less/brands.less -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/less/regular.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/less/regular.less -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/less/solid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/less/solid.less -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/package.json -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/scss/_core.scss -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/scss/_icons.scss -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/scss/_larger.scss -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/scss/_list.scss -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/scss/_mixins.scss -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/scss/_shims.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/scss/_shims.scss -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/scss/brands.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/scss/brands.scss -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/scss/regular.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/scss/regular.scss -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/scss/solid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/scss/solid.scss -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/sprites/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/sprites/solid.svg -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/svgs/solid/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/svgs/solid/ad.svg -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/svgs/solid/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/svgs/solid/at.svg -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/svgs/solid/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/svgs/solid/om.svg -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/svgs/solid/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/svgs/solid/th.svg -------------------------------------------------------------------------------- /public/backend/vendor/fontawesome-free/svgs/solid/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/fontawesome-free/svgs/solid/tv.svg -------------------------------------------------------------------------------- /public/backend/vendor/jquery-easing/jquery.easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/jquery-easing/jquery.easing.js -------------------------------------------------------------------------------- /public/backend/vendor/jquery-easing/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/jquery-easing/jquery.easing.min.js -------------------------------------------------------------------------------- /public/backend/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /public/backend/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /public/backend/vendor/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/jquery/jquery.min.map -------------------------------------------------------------------------------- /public/backend/vendor/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/jquery/jquery.slim.js -------------------------------------------------------------------------------- /public/backend/vendor/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /public/backend/vendor/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /public/backend/vendor/select2/css/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/css/select2.css -------------------------------------------------------------------------------- /public/backend/vendor/select2/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/css/select2.min.css -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/af.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/ar.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/az.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/bg.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/bn.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/bs.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/ca.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/cs.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/da.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/de.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/dsb.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/el.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/en.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/eo.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/es.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/et.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/eu.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/fa.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/fi.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/fr.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/gl.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/he.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/hi.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/hr.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/hsb.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/hu.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/hy.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/id.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/is.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/it.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/ja.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/ka.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/km.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/ko.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/lt.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/lv.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/mk.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/ms.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/nb.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/ne.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/nl.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/pa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/pa.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/pl.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/ps.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/pt-BR.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/pt.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/ro.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/ru.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/sk.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/sl.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/sq.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/sr.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/sv.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/th.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/tk.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/tr.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/uk.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/vi.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/zh-CN.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/i18n/zh-TW.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/select2.full.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/select2.full.min.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/select2.js -------------------------------------------------------------------------------- /public/backend/vendor/select2/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/select2/js/select2.min.js -------------------------------------------------------------------------------- /public/backend/vendor/summernote/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/summernote/font/summernote.eot -------------------------------------------------------------------------------- /public/backend/vendor/summernote/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/summernote/font/summernote.ttf -------------------------------------------------------------------------------- /public/backend/vendor/summernote/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/summernote/font/summernote.woff -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-da-DK.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-de-DE.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-el-GR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-es-ES.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-es-EU.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-he-IL.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-id-ID.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-it-IT.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-th-TH.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/backend/vendor/summernote/summernote-bs4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/summernote/summernote-bs4.css -------------------------------------------------------------------------------- /public/backend/vendor/summernote/summernote-bs4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/backend/vendor/summernote/summernote-bs4.js -------------------------------------------------------------------------------- /public/backend/vendor/summernote/summernote-bs4.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/frontend/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/frontend/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/custom.css -------------------------------------------------------------------------------- /public/frontend/css/plugins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/animation.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/bicon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/bicon.min.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/fakeloader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/fakeloader.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/fancybox.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/font-awesome.min.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/fotorama.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/fotorama.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/jquery-ui.min.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/lightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/lightbox.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/mainmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/mainmenu.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/nivo-preview-2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/nivo-preview-2.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/nivo-slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/nivo-slider.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/owl.carousel.min.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/owl.theme.default.min.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/pe-icon-7-stroke.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/pe-icon-7-stroke.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/simple-line-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/simple-line-icons.css -------------------------------------------------------------------------------- /public/frontend/css/plugins/slick.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/plugins/slick.min.css -------------------------------------------------------------------------------- /public/frontend/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/css/style.css -------------------------------------------------------------------------------- /public/frontend/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /public/frontend/fonts/Simple-Line-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/Simple-Line-Icons.svg -------------------------------------------------------------------------------- /public/frontend/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /public/frontend/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /public/frontend/fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /public/frontend/fonts/bicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/bicon.eot -------------------------------------------------------------------------------- /public/frontend/fonts/bicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/bicon.svg -------------------------------------------------------------------------------- /public/frontend/fonts/bicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/bicon.ttf -------------------------------------------------------------------------------- /public/frontend/fonts/bicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/bicon.woff -------------------------------------------------------------------------------- /public/frontend/fonts/fontawesome-webfont-1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/fontawesome-webfont-1.eot -------------------------------------------------------------------------------- /public/frontend/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/frontend/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /public/frontend/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/frontend/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/frontend/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/frontend/fonts/slick-1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/slick-1.eot -------------------------------------------------------------------------------- /public/frontend/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/slick.eot -------------------------------------------------------------------------------- /public/frontend/fonts/slick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/slick.svg -------------------------------------------------------------------------------- /public/frontend/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/slick.ttf -------------------------------------------------------------------------------- /public/frontend/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/fonts/slick.woff -------------------------------------------------------------------------------- /public/frontend/images/about/big-img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/about/big-img/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/about/big-img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/about/big-img/2.jpg -------------------------------------------------------------------------------- /public/frontend/images/about/team/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/about/team/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/about/team/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/about/team/2.jpg -------------------------------------------------------------------------------- /public/frontend/images/about/team/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/about/team/3.jpg -------------------------------------------------------------------------------- /public/frontend/images/about/team/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/about/team/4.jpg -------------------------------------------------------------------------------- /public/frontend/images/about/team/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/about/team/5.jpg -------------------------------------------------------------------------------- /public/frontend/images/about/team/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/about/team/6.jpg -------------------------------------------------------------------------------- /public/frontend/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/ajax-loader.gif -------------------------------------------------------------------------------- /public/frontend/images/best-sell-product/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/best-sell-product/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/best-sell-product/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/best-sell-product/2.jpg -------------------------------------------------------------------------------- /public/frontend/images/best-sell-product/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/best-sell-product/3.jpg -------------------------------------------------------------------------------- /public/frontend/images/best-sell-product/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/best-sell-product/4.jpg -------------------------------------------------------------------------------- /public/frontend/images/best-sell-product/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/best-sell-product/5.jpg -------------------------------------------------------------------------------- /public/frontend/images/best-sell-product/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/best-sell-product/6.jpg -------------------------------------------------------------------------------- /public/frontend/images/best-sell-product/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/best-sell-product/7.jpg -------------------------------------------------------------------------------- /public/frontend/images/best-sell-product/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/best-sell-product/8.jpg -------------------------------------------------------------------------------- /public/frontend/images/bg/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/bg/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/bg/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/bg/2.jpg -------------------------------------------------------------------------------- /public/frontend/images/bg/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/bg/3.jpg -------------------------------------------------------------------------------- /public/frontend/images/bg/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/bg/4.jpg -------------------------------------------------------------------------------- /public/frontend/images/bg/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/bg/5.jpg -------------------------------------------------------------------------------- /public/frontend/images/bg/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/bg/6.jpg -------------------------------------------------------------------------------- /public/frontend/images/bg/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/bg/7.jpg -------------------------------------------------------------------------------- /public/frontend/images/bg/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/bg/8.jpg -------------------------------------------------------------------------------- /public/frontend/images/bg/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/bg/9.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog/big-img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/blog/big-img/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog/blog-3/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/blog/blog-3/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog/blog-3/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/blog/blog-3/2.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog/blog-3/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/blog/blog-3/3.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog/blog-3/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/blog/blog-3/4.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog/blog-3/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/blog/blog-3/5.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog/comment/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/blog/comment/1.jpeg -------------------------------------------------------------------------------- /public/frontend/images/blog/sm-img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/blog/sm-img/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog/sm-img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/blog/sm-img/2.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog/sm-img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/blog/sm-img/3.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog/sm-img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/blog/sm-img/4.jpg -------------------------------------------------------------------------------- /public/frontend/images/blog/sm-img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/blog/sm-img/5.jpg -------------------------------------------------------------------------------- /public/frontend/images/books/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/books/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/books/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/books/10.jpg -------------------------------------------------------------------------------- /public/frontend/images/books/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/books/11.jpg -------------------------------------------------------------------------------- /public/frontend/images/books/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/books/12.jpg -------------------------------------------------------------------------------- /public/frontend/images/books/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/books/2.jpg -------------------------------------------------------------------------------- /public/frontend/images/books/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/books/3.jpg -------------------------------------------------------------------------------- /public/frontend/images/books/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/books/4.jpg -------------------------------------------------------------------------------- /public/frontend/images/books/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/books/5.jpg -------------------------------------------------------------------------------- /public/frontend/images/books/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/books/6.jpg -------------------------------------------------------------------------------- /public/frontend/images/books/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/books/7.jpg -------------------------------------------------------------------------------- /public/frontend/images/books/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/books/8.jpg -------------------------------------------------------------------------------- /public/frontend/images/books/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/books/9.jpg -------------------------------------------------------------------------------- /public/frontend/images/brand/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/brand/1.png -------------------------------------------------------------------------------- /public/frontend/images/brand/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/brand/2.png -------------------------------------------------------------------------------- /public/frontend/images/brand/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/brand/3.png -------------------------------------------------------------------------------- /public/frontend/images/brand/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/brand/4.png -------------------------------------------------------------------------------- /public/frontend/images/brand/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/brand/5.png -------------------------------------------------------------------------------- /public/frontend/images/brand/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/brand/6.png -------------------------------------------------------------------------------- /public/frontend/images/brand/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/brand/7.png -------------------------------------------------------------------------------- /public/frontend/images/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/fancybox/blank.gif -------------------------------------------------------------------------------- /public/frontend/images/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /public/frontend/images/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /public/frontend/images/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /public/frontend/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/favicon.ico -------------------------------------------------------------------------------- /public/frontend/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icon.png -------------------------------------------------------------------------------- /public/frontend/images/icons/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/bell.png -------------------------------------------------------------------------------- /public/frontend/images/icons/bell_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/bell_white.png -------------------------------------------------------------------------------- /public/frontend/images/icons/blog-link-post2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/blog-link-post2.png -------------------------------------------------------------------------------- /public/frontend/images/icons/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/box.png -------------------------------------------------------------------------------- /public/frontend/images/icons/button-compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/button-compare.png -------------------------------------------------------------------------------- /public/frontend/images/icons/button-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/button-email.png -------------------------------------------------------------------------------- /public/frontend/images/icons/button-wishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/button-wishlist.png -------------------------------------------------------------------------------- /public/frontend/images/icons/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/cart.png -------------------------------------------------------------------------------- /public/frontend/images/icons/cart1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/cart1.png -------------------------------------------------------------------------------- /public/frontend/images/icons/cart2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/cart2.png -------------------------------------------------------------------------------- /public/frontend/images/icons/cart3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/cart3.png -------------------------------------------------------------------------------- /public/frontend/images/icons/cart4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/cart4.png -------------------------------------------------------------------------------- /public/frontend/images/icons/cart_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/cart_white.png -------------------------------------------------------------------------------- /public/frontend/images/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/close.png -------------------------------------------------------------------------------- /public/frontend/images/icons/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/comment.png -------------------------------------------------------------------------------- /public/frontend/images/icons/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/compare.png -------------------------------------------------------------------------------- /public/frontend/images/icons/compare2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/compare2.png -------------------------------------------------------------------------------- /public/frontend/images/icons/em.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/em.png -------------------------------------------------------------------------------- /public/frontend/images/icons/em2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/em2.png -------------------------------------------------------------------------------- /public/frontend/images/icons/fotorama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/fotorama.png -------------------------------------------------------------------------------- /public/frontend/images/icons/fotorama@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/fotorama@2x.png -------------------------------------------------------------------------------- /public/frontend/images/icons/icon_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/icon_account.png -------------------------------------------------------------------------------- /public/frontend/images/icons/icon_account2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/icon_account2.png -------------------------------------------------------------------------------- /public/frontend/images/icons/icon_cart2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/icon_cart2.png -------------------------------------------------------------------------------- /public/frontend/images/icons/icon_cart3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/icon_cart3.png -------------------------------------------------------------------------------- /public/frontend/images/icons/icon_search2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/icon_search2.png -------------------------------------------------------------------------------- /public/frontend/images/icons/icon_search3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/icon_search3.png -------------------------------------------------------------------------------- /public/frontend/images/icons/icon_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/icon_setting.png -------------------------------------------------------------------------------- /public/frontend/images/icons/icon_setting_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/icon_setting_white.png -------------------------------------------------------------------------------- /public/frontend/images/icons/icon_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/icon_title.png -------------------------------------------------------------------------------- /public/frontend/images/icons/icon_title2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/icon_title2.png -------------------------------------------------------------------------------- /public/frontend/images/icons/icon_title3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/icon_title3.png -------------------------------------------------------------------------------- /public/frontend/images/icons/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/lc.png -------------------------------------------------------------------------------- /public/frontend/images/icons/lc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/lc2.png -------------------------------------------------------------------------------- /public/frontend/images/icons/line_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/line_title.png -------------------------------------------------------------------------------- /public/frontend/images/icons/links_static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/links_static.png -------------------------------------------------------------------------------- /public/frontend/images/icons/links_static2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/links_static2.png -------------------------------------------------------------------------------- /public/frontend/images/icons/links_static3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/links_static3.png -------------------------------------------------------------------------------- /public/frontend/images/icons/links_static4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/links_static4.png -------------------------------------------------------------------------------- /public/frontend/images/icons/links_static5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/links_static5.png -------------------------------------------------------------------------------- /public/frontend/images/icons/links_static6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/links_static6.png -------------------------------------------------------------------------------- /public/frontend/images/icons/links_static7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/links_static7.png -------------------------------------------------------------------------------- /public/frontend/images/icons/links_static8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/links_static8.png -------------------------------------------------------------------------------- /public/frontend/images/icons/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/loading.gif -------------------------------------------------------------------------------- /public/frontend/images/icons/nav_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/nav_icon.png -------------------------------------------------------------------------------- /public/frontend/images/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/next.png -------------------------------------------------------------------------------- /public/frontend/images/icons/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/payment.png -------------------------------------------------------------------------------- /public/frontend/images/icons/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/ph.png -------------------------------------------------------------------------------- /public/frontend/images/icons/ph2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/ph2.png -------------------------------------------------------------------------------- /public/frontend/images/icons/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/plus.png -------------------------------------------------------------------------------- /public/frontend/images/icons/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/prev.png -------------------------------------------------------------------------------- /public/frontend/images/icons/product-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/product-info.png -------------------------------------------------------------------------------- /public/frontend/images/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/search.png -------------------------------------------------------------------------------- /public/frontend/images/icons/search1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/search1.png -------------------------------------------------------------------------------- /public/frontend/images/icons/search2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/search2.png -------------------------------------------------------------------------------- /public/frontend/images/icons/search_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/search_white.png -------------------------------------------------------------------------------- /public/frontend/images/icons/wishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/wishlist.png -------------------------------------------------------------------------------- /public/frontend/images/icons/wishlist2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/icons/wishlist2.png -------------------------------------------------------------------------------- /public/frontend/images/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/logo/logo.png -------------------------------------------------------------------------------- /public/frontend/images/others/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/others/404.png -------------------------------------------------------------------------------- /public/frontend/images/others/banner_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/others/banner_left.jpg -------------------------------------------------------------------------------- /public/frontend/images/others/toggle_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/others/toggle_close.png -------------------------------------------------------------------------------- /public/frontend/images/others/toggle_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/others/toggle_open.png -------------------------------------------------------------------------------- /public/frontend/images/png-img/headphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/png-img/headphone.png -------------------------------------------------------------------------------- /public/frontend/images/png-img/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/png-img/payment.png -------------------------------------------------------------------------------- /public/frontend/images/png-img/shipping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/png-img/shipping.png -------------------------------------------------------------------------------- /public/frontend/images/portfolio/big-2/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/portfolio/big-2/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/portfolio/big-2/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/portfolio/big-2/2.jpg -------------------------------------------------------------------------------- /public/frontend/images/portfolio/big-2/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/portfolio/big-2/3.jpg -------------------------------------------------------------------------------- /public/frontend/images/portfolio/big-img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/portfolio/big-img/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/portfolio/md-img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/portfolio/md-img/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/portfolio/md-img/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/portfolio/md-img/10.jpg -------------------------------------------------------------------------------- /public/frontend/images/portfolio/md-img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/portfolio/md-img/2.jpg -------------------------------------------------------------------------------- /public/frontend/images/portfolio/md-img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/portfolio/md-img/3.jpg -------------------------------------------------------------------------------- /public/frontend/images/portfolio/md-img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/portfolio/md-img/4.jpg -------------------------------------------------------------------------------- /public/frontend/images/portfolio/md-img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/portfolio/md-img/5.jpg -------------------------------------------------------------------------------- /public/frontend/images/portfolio/md-img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/portfolio/md-img/6.jpg -------------------------------------------------------------------------------- /public/frontend/images/portfolio/md-img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/portfolio/md-img/7.jpg -------------------------------------------------------------------------------- /public/frontend/images/portfolio/md-img/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/portfolio/md-img/8.jpg -------------------------------------------------------------------------------- /public/frontend/images/portfolio/md-img/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/portfolio/md-img/9.jpg -------------------------------------------------------------------------------- /public/frontend/images/pos-bg/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/pos-bg/3.jpeg -------------------------------------------------------------------------------- /public/frontend/images/product/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/10.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/11.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/12.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/2.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/3.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/4.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/5.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/6.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/7.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/8.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/9.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/big-img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/big-img/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/sm-3/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/sm-3/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/sm-3/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/sm-3/2.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/sm-3/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/sm-3/3.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/sm-img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/sm-img/1.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/sm-img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/sm-img/2.jpg -------------------------------------------------------------------------------- /public/frontend/images/product/sm-img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/product/sm-img/3.jpg -------------------------------------------------------------------------------- /public/frontend/images/testimonial/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/testimonial/1.png -------------------------------------------------------------------------------- /public/frontend/images/testimonial/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/testimonial/2.png -------------------------------------------------------------------------------- /public/frontend/images/testimonial/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/images/testimonial/3.png -------------------------------------------------------------------------------- /public/frontend/js/active.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/js/active.js -------------------------------------------------------------------------------- /public/frontend/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/frontend/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/js/custom.js -------------------------------------------------------------------------------- /public/frontend/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/js/plugins.js -------------------------------------------------------------------------------- /public/frontend/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/js/popper.min.js -------------------------------------------------------------------------------- /public/frontend/js/summernote/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/js/summernote/font/summernote.eot -------------------------------------------------------------------------------- /public/frontend/js/summernote/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/js/summernote/font/summernote.ttf -------------------------------------------------------------------------------- /public/frontend/js/summernote/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/js/summernote/font/summernote.woff -------------------------------------------------------------------------------- /public/frontend/js/summernote/font/summernote.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/js/summernote/font/summernote.woff2 -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-da-DK.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-de-DE.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-el-GR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-es-ES.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-es-EU.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-he-IL.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-id-ID.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-it-IT.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-th-TH.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /public/frontend/js/summernote/summernote-bs4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/js/summernote/summernote-bs4.min.css -------------------------------------------------------------------------------- /public/frontend/js/summernote/summernote-bs4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/js/summernote/summernote-bs4.min.js -------------------------------------------------------------------------------- /public/frontend/js/vendor/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/js/vendor/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /public/frontend/js/vendor/modernizr-3.5.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/frontend/js/vendor/modernizr-3.5.0.min.js -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/AdminNotification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/js/components/AdminNotification.vue -------------------------------------------------------------------------------- /resources/js/components/UserNotification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/js/components/UserNotification.vue -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/backend/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/backend/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/backend/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/backend/contact_us/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/contact_us/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/contact_us/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/contact_us/show.blade.php -------------------------------------------------------------------------------- /resources/views/backend/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pages/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/pages/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pages/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/pages/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pages/filter/filter.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/pages/filter/filter.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pages/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/pages/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/pages/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/pages/show.blade.php -------------------------------------------------------------------------------- /resources/views/backend/post_comments/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/post_comments/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/post_comments/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/post_comments/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/posts/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/posts/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/posts/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/posts/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/posts/filter/filter.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/posts/filter/filter.blade.php -------------------------------------------------------------------------------- /resources/views/backend/posts/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/posts/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/posts/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/posts/show.blade.php -------------------------------------------------------------------------------- /resources/views/backend/settings/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/settings/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/supervisors/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/supervisors/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/supervisors/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/supervisors/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/supervisors/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/supervisors/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/supervisors/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/supervisors/show.blade.php -------------------------------------------------------------------------------- /resources/views/backend/users/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/users/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/users/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/users/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/users/filter/filter.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/users/filter/filter.blade.php -------------------------------------------------------------------------------- /resources/views/backend/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/users/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/backend/users/show.blade.php -------------------------------------------------------------------------------- /resources/views/errors/401.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/errors/401.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/errors/419.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/errors/419.blade.php -------------------------------------------------------------------------------- /resources/views/errors/429.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/errors/429.blade.php -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/errors/500.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/errors/illustrated-layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/errors/illustrated-layout.blade.php -------------------------------------------------------------------------------- /resources/views/errors/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/errors/layout.blade.php -------------------------------------------------------------------------------- /resources/views/errors/minimal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/errors/minimal.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/frontend/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/frontend/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/frontend/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/contact.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/frontend/contact.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/frontend/index.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/page.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/frontend/page.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/post.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/frontend/post.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/users/comments.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/frontend/users/comments.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/users/create_post.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/frontend/users/create_post.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/users/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/frontend/users/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/users/edit_comment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/frontend/users/edit_comment.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/users/edit_info.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/frontend/users/edit_info.blade.php -------------------------------------------------------------------------------- /resources/views/frontend/users/edit_post.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/frontend/users/edit_post.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/admin-auth.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/layouts/admin-auth.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/layouts/admin.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app-auth.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/layouts/app-auth.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/backend/statistics.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/livewire/backend/statistics.blade.php -------------------------------------------------------------------------------- /resources/views/partial/backend/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/partial/backend/header.blade.php -------------------------------------------------------------------------------- /resources/views/partial/backend/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/partial/backend/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/partial/flash.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/partial/flash.blade.php -------------------------------------------------------------------------------- /resources/views/partial/frontend/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/partial/frontend/footer.blade.php -------------------------------------------------------------------------------- /resources/views/partial/frontend/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/partial/frontend/header.blade.php -------------------------------------------------------------------------------- /resources/views/partial/frontend/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/partial/frontend/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/mail/html/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/mail/html/footer.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/mail/html/header.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/mail/html/layout.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/mail/html/message.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/panel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/mail/html/panel.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/subcopy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/mail/html/subcopy.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/mail/html/table.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/themes/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/mail/html/themes/default.css -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/mail/text/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/mail/text/header.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/mail/text/layout.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/mail/text/message.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/notifications/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/notifications/email.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/boighor.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/pagination/boighor.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/pagination/default.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/vendor/pagination/tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/Documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/Documentation/index.html -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor-html-ftc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor-html-ftc.zip -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/about.html -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/blog-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/blog-details.html -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/blog.html -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/cart.html -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/checkout.html -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/contact.html -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/css/custom.css -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/css/plugins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/css/plugins.css -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/error404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/error404.html -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/faq.html -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/fonts/bicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/fonts/bicon.eot -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/fonts/bicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/fonts/bicon.svg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/fonts/bicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/fonts/bicon.ttf -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/fonts/bicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/fonts/bicon.woff -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/fonts/slick-1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/fonts/slick-1.eot -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/fonts/slick.eot -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/fonts/slick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/fonts/slick.svg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/fonts/slick.ttf -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/fonts/slick.woff -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/bg/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/bg/1.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/bg/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/bg/2.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/bg/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/bg/3.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/bg/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/bg/4.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/bg/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/bg/5.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/bg/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/bg/6.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/bg/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/bg/7.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/bg/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/bg/8.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/bg/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/bg/9.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/books/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/books/1.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/books/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/books/2.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/books/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/books/3.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/books/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/books/4.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/books/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/books/5.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/books/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/books/6.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/books/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/books/7.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/books/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/books/8.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/books/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/books/9.jpg -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/brand/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/brand/1.png -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/brand/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/brand/2.png -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/brand/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/brand/3.png -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/brand/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/brand/4.png -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/brand/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/brand/5.png -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/brand/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/brand/6.png -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/brand/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/brand/7.png -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/favicon.ico -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/icon.png -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/images/logo/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/images/logo/3.png -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/index.html -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/js/active.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/js/active.js -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/js/plugins.js -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/js/popper.min.js -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/my-account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/my-account.html -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/portfolio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/portfolio.html -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/shop-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/shop-grid.html -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/style.css -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/team.html -------------------------------------------------------------------------------- /tmp-files/boighor-html-ftc/boighor/wishlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/boighor-html-ftc/boighor/wishlist.html -------------------------------------------------------------------------------- /tmp-files/mindscms-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/mindscms-logo.png -------------------------------------------------------------------------------- /tmp-files/select2-develop.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/select2-develop.zip -------------------------------------------------------------------------------- /tmp-files/startbootstrap-sb-admin-2-gh-pages.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/tmp-files/startbootstrap-sb-admin-2-gh-pages.zip -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindscms/laravel-cms/HEAD/webpack.mix.js --------------------------------------------------------------------------------