├── .editorconfig
├── .env.example
├── .gitattributes
├── .gitignore
├── .styleci.yml
├── LICENSE
├── README.md
├── app
├── Console
│ └── Kernel.php
├── Exceptions
│ └── Handler.php
├── Http
│ ├── Controllers
│ │ ├── Auth
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── LoginController.php
│ │ │ ├── RegisterController.php
│ │ │ ├── ResetPasswordController.php
│ │ │ └── VerificationController.php
│ │ ├── BreadController.php
│ │ ├── Controller.php
│ │ ├── MailController.php
│ │ ├── MediaController.php
│ │ ├── MenuController.php
│ │ ├── MenuElementController.php
│ │ ├── NotesController.php
│ │ ├── ResourceController.php
│ │ ├── RolesController.php
│ │ ├── UsersController.php
│ │ └── admin
│ │ │ └── UsersController.php
│ ├── Kernel.php
│ ├── Menus
│ │ ├── GetSidebarMenu.php
│ │ └── MenuInterface.php
│ └── Middleware
│ │ ├── Admin.php
│ │ ├── Authenticate.php
│ │ ├── CheckForMaintenanceMode.php
│ │ ├── EncryptCookies.php
│ │ ├── GetMenu.php
│ │ ├── RedirectIfAuthenticated.php
│ │ ├── TrimStrings.php
│ │ ├── TrustProxies.php
│ │ └── VerifyCsrfToken.php
├── MenuBuilder
│ ├── FreelyPositionedMenus.php
│ ├── MenuBuilder.php
│ └── RenderFromDatabaseData.php
├── Models
│ ├── EmailTemplate.php
│ ├── Example.php
│ ├── Folder.php
│ ├── Form.php
│ ├── FormField.php
│ ├── Menulist.php
│ ├── Menurole.php
│ ├── Menus.php
│ ├── Notes.php
│ ├── RoleHierarchy.php
│ ├── Status.php
│ ├── User.php
│ └── Users.php
├── Providers
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── BroadcastServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
└── Services
│ ├── EditMenuViewService.php
│ ├── FormService.php
│ ├── RemoveFolderService.php
│ ├── ResourceService.php
│ └── RolesService.php
├── artisan
├── bootstrap
├── app.php
└── cache
│ └── .gitignore
├── build
├── .stylelintrc
├── change-version.js
├── postcss.config.js
├── pug.js
├── vendors-sass.js
└── vendors.js
├── composer.json
├── composer.lock
├── config
├── app.php
├── auth.php
├── broadcasting.php
├── cache.php
├── database.php
├── filesystems.php
├── hashing.php
├── logging.php
├── mail.php
├── media-library.php
├── queue.php
├── services.php
├── session.php
└── view.php
├── database
├── .gitignore
├── factories
│ ├── MenuroleFactory.php
│ ├── MenusFactory.php
│ ├── NotesFactory.php
│ ├── StatusFactory.php
│ ├── UserFactory.php
│ └── UsersFactory.php
├── migrations
│ ├── 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
│ ├── 2019_10_11_085455_create_notes_table.php
│ ├── 2019_10_12_115248_create_status_table.php
│ ├── 2019_11_08_102827_create_menus_table.php
│ ├── 2019_11_13_092213_create_menurole_table.php
│ ├── 2019_12_10_092113_create_permission_tables.php
│ ├── 2019_12_11_091036_create_menulist_table.php
│ ├── 2019_12_18_092518_create_role_hierarchy_table.php
│ ├── 2020_01_07_093259_create_folder_table.php
│ ├── 2020_01_08_184500_create_media_table.php
│ ├── 2020_01_21_161241_create_form_field_table.php
│ ├── 2020_01_21_161242_create_form_table.php
│ ├── 2020_01_21_161243_create_example_table.php
│ └── 2020_03_12_111400_create_email_template_table.php
└── seeders
│ ├── BREADSeeder.php
│ ├── DatabaseSeeder.php
│ ├── EmailSeeder.php
│ ├── ExampleSeeder.php
│ ├── FolderTableSeeder.php
│ ├── MenusTableSeeder.php
│ └── UsersAndNotesSeeder.php
├── package-lock.json
├── package.json
├── phpunit.xml
├── phpunit.xml.bak
├── public
├── .htaccess
├── index.php
├── mix-manifest.json
├── robots.txt
└── web.config
├── resources
├── assets
│ ├── .DS_Store
│ ├── brand
│ │ ├── .DS_Store
│ │ ├── coreui-base-white.svg
│ │ ├── coreui-base.svg
│ │ ├── coreui-signet-white.svg
│ │ └── coreui-signet.svg
│ ├── favicon
│ │ ├── android-icon-144x144.png
│ │ ├── android-icon-192x192.png
│ │ ├── android-icon-36x36.png
│ │ ├── android-icon-48x48.png
│ │ ├── android-icon-72x72.png
│ │ ├── android-icon-96x96.png
│ │ ├── apple-icon-114x114.png
│ │ ├── apple-icon-120x120.png
│ │ ├── apple-icon-144x144.png
│ │ ├── apple-icon-152x152.png
│ │ ├── apple-icon-180x180.png
│ │ ├── apple-icon-57x57.png
│ │ ├── apple-icon-60x60.png
│ │ ├── apple-icon-72x72.png
│ │ ├── apple-icon-76x76.png
│ │ ├── apple-icon-precomposed.png
│ │ ├── apple-icon.png
│ │ ├── browserconfig.xml
│ │ ├── favicon-16x16.png
│ │ ├── favicon-32x32.png
│ │ ├── favicon-96x96.png
│ │ ├── favicon.ico
│ │ ├── manifest.json
│ │ ├── ms-icon-144x144.png
│ │ ├── ms-icon-150x150.png
│ │ ├── ms-icon-310x310.png
│ │ └── ms-icon-70x70.png
│ ├── icons
│ │ ├── 3d.svg
│ │ ├── 4k.svg
│ │ ├── account-logout.svg
│ │ ├── action-redo.svg
│ │ ├── action-undo.svg
│ │ ├── address-book.svg
│ │ ├── airplane-mode-off.svg
│ │ ├── airplane-mode.svg
│ │ ├── airplay.svg
│ │ ├── alarm.svg
│ │ ├── album.svg
│ │ ├── align-center.svg
│ │ ├── align-left.svg
│ │ ├── align-right.svg
│ │ ├── american-football.svg
│ │ ├── android.svg
│ │ ├── angular.svg
│ │ ├── aperture.svg
│ │ ├── apple.svg
│ │ ├── applications-settings.svg
│ │ ├── applications.svg
│ │ ├── arrow-bottom.svg
│ │ ├── arrow-circle-bottom.svg
│ │ ├── arrow-circle-left.svg
│ │ ├── arrow-circle-right.svg
│ │ ├── arrow-circle-top.svg
│ │ ├── arrow-left.svg
│ │ ├── arrow-right.svg
│ │ ├── arrow-thick-bottom.svg
│ │ ├── arrow-thick-from-bottom.svg
│ │ ├── arrow-thick-from-left.svg
│ │ ├── arrow-thick-from-right.svg
│ │ ├── arrow-thick-from-top.svg
│ │ ├── arrow-thick-left.svg
│ │ ├── arrow-thick-right.svg
│ │ ├── arrow-thick-to-bottom.svg
│ │ ├── arrow-thick-to-left.svg
│ │ ├── arrow-thick-to-right.svg
│ │ ├── arrow-thick-to-top.svg
│ │ ├── arrow-thick-top.svg
│ │ ├── arrow-top.svg
│ │ ├── assistive-listening-system.svg
│ │ ├── asterisk-circle.svg
│ │ ├── asterisk.svg
│ │ ├── at.svg
│ │ ├── audio-description.svg
│ │ ├── audio-spectrum.svg
│ │ ├── audio.svg
│ │ ├── av-timer.svg
│ │ ├── badge.svg
│ │ ├── balance-scale.svg
│ │ ├── ban.svg
│ │ ├── bank.svg
│ │ ├── bar-chart.svg
│ │ ├── barcode.svg
│ │ ├── baseball.svg
│ │ ├── basket.svg
│ │ ├── basketball.svg
│ │ ├── bath.svg
│ │ ├── battery-0.svg
│ │ ├── battery-3.svg
│ │ ├── battery-5.svg
│ │ ├── battery-alert.svg
│ │ ├── battery-slash.svg
│ │ ├── beach-access.svg
│ │ ├── beaker.svg
│ │ ├── bed.svg
│ │ ├── bell.svg
│ │ ├── bike.svg
│ │ ├── birthday-cake.svg
│ │ ├── blind.svg
│ │ ├── bluetooth.svg
│ │ ├── blur-circular.svg
│ │ ├── blur-linear.svg
│ │ ├── blur.svg
│ │ ├── boat-alt.svg
│ │ ├── bold.svg
│ │ ├── bolt.svg
│ │ ├── book.svg
│ │ ├── bookmark.svg
│ │ ├── bootstrap.svg
│ │ ├── border-all.svg
│ │ ├── border-bottom.svg
│ │ ├── border-clear.svg
│ │ ├── border-horizontal.svg
│ │ ├── border-inner.svg
│ │ ├── border-left.svg
│ │ ├── border-outer.svg
│ │ ├── border-right.svg
│ │ ├── border-style.svg
│ │ ├── border-top.svg
│ │ ├── border-vertical.svg
│ │ ├── bowling.svg
│ │ ├── braille.svg
│ │ ├── 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
│ │ │ ├── brands-symbol-defs.svg
│ │ │ ├── btc.svg
│ │ │ ├── buffer.svg
│ │ │ ├── buromobelexperte.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
│ │ │ ├── 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
│ │ │ ├── dashcube.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.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.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-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
│ │ │ ├── imdb.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
│ │ │ ├── medapps.svg
│ │ │ ├── medium-m.svg
│ │ │ ├── medium.svg
│ │ │ ├── medrt.svg
│ │ │ ├── meetup.svg
│ │ │ ├── megaport.svg
│ │ │ ├── mendeley.svg
│ │ │ ├── microsoft.svg
│ │ │ ├── mix.svg
│ │ │ ├── mixcloud.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
│ │ │ ├── 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.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
│ │ │ ├── safari.svg
│ │ │ ├── salesforce.svg
│ │ │ ├── sass.svg
│ │ │ ├── schlix.svg
│ │ │ ├── scribd.svg
│ │ │ ├── searchengin.svg
│ │ │ ├── sellcast.svg
│ │ │ ├── sellsy.svg
│ │ │ ├── servicestack.svg
│ │ │ ├── shirtsinbulk.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
│ │ │ ├── symfony.svg
│ │ │ ├── teamspeak.svg
│ │ │ ├── telegram-plane.svg
│ │ │ ├── telegram.svg
│ │ │ ├── tencent-weibo.svg
│ │ │ ├── the-red-yeti.svg
│ │ │ ├── themeco.svg
│ │ │ ├── themeisle.svg
│ │ │ ├── think-peaks.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
│ │ │ ├── uniregistry.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
│ │ ├── briefcase.svg
│ │ ├── brightness.svg
│ │ ├── british-pound.svg
│ │ ├── browser.svg
│ │ ├── brush-alt.svg
│ │ ├── brush.svg
│ │ ├── bug.svg
│ │ ├── building.svg
│ │ ├── bullhorn.svg
│ │ ├── burger.svg
│ │ ├── bus-alt.svg
│ │ ├── calculator.svg
│ │ ├── calendar-check.svg
│ │ ├── calendar.svg
│ │ ├── camera-control.svg
│ │ ├── camera-roll.svg
│ │ ├── camera.svg
│ │ ├── car-alt.svg
│ │ ├── caret-bottom.svg
│ │ ├── caret-left.svg
│ │ ├── caret-right.svg
│ │ ├── caret-top.svg
│ │ ├── cart.svg
│ │ ├── casino.svg
│ │ ├── cast.svg
│ │ ├── cat.svg
│ │ ├── center-focus.svg
│ │ ├── chart-line.svg
│ │ ├── chart-pie.svg
│ │ ├── chart.svg
│ │ ├── chat-bubble.svg
│ │ ├── check.svg
│ │ ├── chevron-bottom.svg
│ │ ├── chevron-circle-down-alt.svg
│ │ ├── chevron-circle-left-alt.svg
│ │ ├── chevron-circle-right-alt.svg
│ │ ├── chevron-circle-up-alt.svg
│ │ ├── chevron-double-down.svg
│ │ ├── chevron-double-left.svg
│ │ ├── chevron-double-right.svg
│ │ ├── chevron-double-up-alt.svg
│ │ ├── chevron-double-up.svg
│ │ ├── chevron-left.svg
│ │ ├── chevron-right.svg
│ │ ├── chevron-top.svg
│ │ ├── child-friendly.svg
│ │ ├── child.svg
│ │ ├── circle.svg
│ │ ├── clear-all.svg
│ │ ├── clipboard.svg
│ │ ├── clock.svg
│ │ ├── clone.svg
│ │ ├── closed-captioning.svg
│ │ ├── cloud-download.svg
│ │ ├── cloud-upload.svg
│ │ ├── cloud.svg
│ │ ├── cloudy.svg
│ │ ├── code.svg
│ │ ├── codepen.svg
│ │ ├── coffee.svg
│ │ ├── color-border.svg
│ │ ├── color-fill.svg
│ │ ├── color-palette.svg
│ │ ├── columns.svg
│ │ ├── comment-bubble.svg
│ │ ├── comment-square.svg
│ │ ├── compass.svg
│ │ ├── compress.svg
│ │ ├── contact.svg
│ │ ├── contrast.svg
│ │ ├── copy.svg
│ │ ├── copyright.svg
│ │ ├── coreui
│ │ │ └── free-symbol-defs.svg
│ │ ├── couch.svg
│ │ ├── credit-card.svg
│ │ ├── crop-rotate.svg
│ │ ├── crop.svg
│ │ ├── cursor-move.svg
│ │ ├── cursor.svg
│ │ ├── cut.svg
│ │ ├── data-transfer-down.svg
│ │ ├── data-transfer-up.svg
│ │ ├── deaf.svg
│ │ ├── delete.svg
│ │ ├── description.svg
│ │ ├── devices.svg
│ │ ├── dialpad.svg
│ │ ├── dinner.svg
│ │ ├── dog.svg
│ │ ├── dollar.svg
│ │ ├── door.svg
│ │ ├── double-quote-sans-left.svg
│ │ ├── double-quote-sans-right.svg
│ │ ├── drink-alcohol.svg
│ │ ├── drink.svg
│ │ ├── drop.svg
│ │ ├── drop1.svg
│ │ ├── elevator.svg
│ │ ├── energy.svg
│ │ ├── envelope-closed.svg
│ │ ├── envelope-letter.svg
│ │ ├── envelope-open.svg
│ │ ├── equalizer.svg
│ │ ├── ethernet.svg
│ │ ├── euro.svg
│ │ ├── excerpt.svg
│ │ ├── exit-to-app.svg
│ │ ├── expand-down.svg
│ │ ├── expand-left.svg
│ │ ├── expand-right.svg
│ │ ├── expand-up.svg
│ │ ├── exposure.svg
│ │ ├── external-link.svg
│ │ ├── eye.svg
│ │ ├── eyedropper.svg
│ │ ├── face-dead.svg
│ │ ├── face.svg
│ │ ├── facebook.svg
│ │ ├── fastfood.svg
│ │ ├── fax.svg
│ │ ├── featured-playlist.svg
│ │ ├── file.svg
│ │ ├── filter-frames.svg
│ │ ├── filter-photo.svg
│ │ ├── filter.svg
│ │ ├── find-in-page.svg
│ │ ├── fingerprint.svg
│ │ ├── fire.svg
│ │ ├── flag-alt.svg
│ │ ├── flight-takeoff.svg
│ │ ├── flip-to-back.svg
│ │ ├── flip-to-front.svg
│ │ ├── flip.svg
│ │ ├── flower.svg
│ │ ├── folder-open.svg
│ │ ├── folder.svg
│ │ ├── font.svg
│ │ ├── football.svg
│ │ ├── fork.svg
│ │ ├── fridge.svg
│ │ ├── frown.svg
│ │ ├── fullscreen-exit.svg
│ │ ├── fullscreen.svg
│ │ ├── functions-alt.svg
│ │ ├── functions.svg
│ │ ├── gamepad.svg
│ │ ├── garage.svg
│ │ ├── gem.svg
│ │ ├── gif.svg
│ │ ├── gift.svg
│ │ ├── git.svg
│ │ ├── github-circle.svg
│ │ ├── github.svg
│ │ ├── gitlab.svg
│ │ ├── globe-alt.svg
│ │ ├── golf-alt.svg
│ │ ├── golf.svg
│ │ ├── gradient.svg
│ │ ├── grain.svg
│ │ ├── graph.svg
│ │ ├── grid-slash.svg
│ │ ├── grid.svg
│ │ ├── hand-point-down.svg
│ │ ├── hand-point-left.svg
│ │ ├── hand-point-right.svg
│ │ ├── hand-point-up.svg
│ │ ├── hd.svg
│ │ ├── hdr.svg
│ │ ├── header.svg
│ │ ├── headphones.svg
│ │ ├── healing.svg
│ │ ├── heart.svg
│ │ ├── highlighter.svg
│ │ ├── highligt.svg
│ │ ├── history.svg
│ │ ├── home.svg
│ │ ├── hospital.svg
│ │ ├── hot-tub.svg
│ │ ├── house.svg
│ │ ├── https.svg
│ │ ├── image-broken.svg
│ │ ├── image-plus.svg
│ │ ├── image1.svg
│ │ ├── inbox.svg
│ │ ├── indent-decrease.svg
│ │ ├── indent-increase.svg
│ │ ├── industry-slash.svg
│ │ ├── industry.svg
│ │ ├── infinity.svg
│ │ ├── info.svg
│ │ ├── input-hdmi.svg
│ │ ├── input-power.svg
│ │ ├── input.svg
│ │ ├── instagram.svg
│ │ ├── institution.svg
│ │ ├── italic.svg
│ │ ├── justify-center.svg
│ │ ├── justify-left.svg
│ │ ├── justify-right.svg
│ │ ├── keyboard.svg
│ │ ├── lan.svg
│ │ ├── language.svg
│ │ ├── laptop.svg
│ │ ├── layers.svg
│ │ ├── leaf.svg
│ │ ├── lemon.svg
│ │ ├── level-down.svg
│ │ ├── level-up.svg
│ │ ├── library-add.svg
│ │ ├── library.svg
│ │ ├── life-ring.svg
│ │ ├── lightbulb.svg
│ │ ├── line-spacing.svg
│ │ ├── line-style.svg
│ │ ├── line-weight.svg
│ │ ├── link-alt.svg
│ │ ├── link-broken.svg
│ │ ├── link.svg
│ │ ├── linkedin.svg
│ │ ├── list-filter.svg
│ │ ├── list-high-priority.svg
│ │ ├── list-low-priority.svg
│ │ ├── list-numbered.svg
│ │ ├── list-rich.svg
│ │ ├── list.svg
│ │ ├── location-pin.svg
│ │ ├── lock-locked.svg
│ │ ├── lock-unlocked.svg
│ │ ├── locomotive.svg
│ │ ├── loop-1.svg
│ │ ├── loop-circular.svg
│ │ ├── loop.svg
│ │ ├── low-vision.svg
│ │ ├── magnifying-glass.svg
│ │ ├── map.svg
│ │ ├── media-eject.svg
│ │ ├── media-pause.svg
│ │ ├── media-play.svg
│ │ ├── media-record.svg
│ │ ├── media-skip-backward.svg
│ │ ├── media-skip-forward.svg
│ │ ├── media-step-backward.svg
│ │ ├── media-step-forward.svg
│ │ ├── media-stop.svg
│ │ ├── medical-cross.svg
│ │ ├── meh.svg
│ │ ├── memory.svg
│ │ ├── menu.svg
│ │ ├── microphone.svg
│ │ ├── minus.svg
│ │ ├── mobile-landscape.svg
│ │ ├── mobile.svg
│ │ ├── money.svg
│ │ ├── monitor.svg
│ │ ├── mood-bad.svg
│ │ ├── mood-good.svg
│ │ ├── mood-very-bad.svg
│ │ ├── mood-very-good.svg
│ │ ├── moon.svg
│ │ ├── mouse.svg
│ │ ├── mouth-slash.svg
│ │ ├── move.svg
│ │ ├── movie.svg
│ │ ├── mug-tea.svg
│ │ ├── mug.svg
│ │ ├── music-note.svg
│ │ ├── newspaper.svg
│ │ ├── notes.svg
│ │ ├── object-group.svg
│ │ ├── object-ungroup.svg
│ │ ├── opacity.svg
│ │ ├── options-horizontal.svg
│ │ ├── options.svg
│ │ ├── paint-bucket.svg
│ │ ├── paint.svg
│ │ ├── paper-plane.svg
│ │ ├── paperclip.svg
│ │ ├── paragraph.svg
│ │ ├── paw.svg
│ │ ├── pen-alt.svg
│ │ ├── pen-nib.svg
│ │ ├── pencil.svg
│ │ ├── people.svg
│ │ ├── phone.svg
│ │ ├── pin.svg
│ │ ├── pizza.svg
│ │ ├── playlist-add.svg
│ │ ├── plus.svg
│ │ ├── polymer.svg
│ │ ├── pool.svg
│ │ ├── power-standby.svg
│ │ ├── pregnant.svg
│ │ ├── print.svg
│ │ ├── puzzle.svg
│ │ ├── qr-code.svg
│ │ ├── rain.svg
│ │ ├── react.svg
│ │ ├── rectangle.svg
│ │ ├── reddit.svg
│ │ ├── registered.svg
│ │ ├── reload.svg
│ │ ├── resize-both.svg
│ │ ├── resize-height.svg
│ │ ├── resize-width.svg
│ │ ├── restaurant.svg
│ │ ├── room.svg
│ │ ├── rowing.svg
│ │ ├── rss.svg
│ │ ├── running.svg
│ │ ├── satelite.svg
│ │ ├── save.svg
│ │ ├── school.svg
│ │ ├── screen-desktop.svg
│ │ ├── screen-smartphone.svg
│ │ ├── scrubber.svg
│ │ ├── settings.svg
│ │ ├── share-all.svg
│ │ ├── share-alt.svg
│ │ ├── share-boxed.svg
│ │ ├── share.svg
│ │ ├── shield-alt.svg
│ │ ├── short-text.svg
│ │ ├── shower.svg
│ │ ├── sign-language.svg
│ │ ├── signal-cellular-0.svg
│ │ ├── signal-cellular-3.svg
│ │ ├── signal-cellular-4.svg
│ │ ├── sim.svg
│ │ ├── sitemap.svg
│ │ ├── skype.svg
│ │ ├── smile-plus.svg
│ │ ├── smile.svg
│ │ ├── smoke-free.svg
│ │ ├── smoking-room.svg
│ │ ├── snowflake.svg
│ │ ├── sort-alpha-down.svg
│ │ ├── sort-alpha-up.svg
│ │ ├── sort-ascending.svg
│ │ ├── sort-descending.svg
│ │ ├── sort-numeric-down.svg
│ │ ├── sort-numeric-up.svg
│ │ ├── spa.svg
│ │ ├── space-bar.svg
│ │ ├── speaker.svg
│ │ ├── speech.svg
│ │ ├── speedometer.svg
│ │ ├── spotify.svg
│ │ ├── spreadsheet.svg
│ │ ├── square.svg
│ │ ├── stackoverflow.svg
│ │ ├── star-half.svg
│ │ ├── star.svg
│ │ ├── storage.svg
│ │ ├── stream.svg
│ │ ├── sun.svg
│ │ ├── swap-horizontal.svg
│ │ ├── swap-vertical.svg
│ │ ├── swimming.svg
│ │ ├── sync.svg
│ │ ├── tablet.svg
│ │ ├── tag.svg
│ │ ├── tags.svg
│ │ ├── task.svg
│ │ ├── taxi.svg
│ │ ├── tennis-ball.svg
│ │ ├── tennis.svg
│ │ ├── terminal.svg
│ │ ├── terrain.svg
│ │ ├── text-shapes.svg
│ │ ├── text-size.svg
│ │ ├── text-square.svg
│ │ ├── text-strike.svg
│ │ ├── text.svg
│ │ ├── thumb-down.svg
│ │ ├── thumb-up.svg
│ │ ├── toggle-off.svg
│ │ ├── toilet.svg
│ │ ├── touch-app.svg
│ │ ├── trademark.svg
│ │ ├── transfer.svg
│ │ ├── translate.svg
│ │ ├── trash.svg
│ │ ├── triangle.svg
│ │ ├── truck.svg
│ │ ├── tv.svg
│ │ ├── twitter.svg
│ │ ├── underline.svg
│ │ ├── user-female.svg
│ │ ├── user-follow.svg
│ │ ├── user-unfollow.svg
│ │ ├── user.svg
│ │ ├── vector.svg
│ │ ├── vertical-align-bottom.svg
│ │ ├── vertical-align-bottom1.svg
│ │ ├── vertical-align-center.svg
│ │ ├── vertical-align-center1.svg
│ │ ├── vertical-align-top.svg
│ │ ├── vertical-align-top1.svg
│ │ ├── video.svg
│ │ ├── view-column.svg
│ │ ├── view-module.svg
│ │ ├── view-quilt.svg
│ │ ├── view-stream.svg
│ │ ├── voice-over-record.svg
│ │ ├── volume-high.svg
│ │ ├── volume-low.svg
│ │ ├── volume-off.svg
│ │ ├── vue.svg
│ │ ├── walk.svg
│ │ ├── wallet.svg
│ │ ├── wallpaper.svg
│ │ ├── warning.svg
│ │ ├── watch.svg
│ │ ├── wc.svg
│ │ ├── weightlifitng.svg
│ │ ├── wheelchair.svg
│ │ ├── wifi-signal-0.svg
│ │ ├── wifi-signal-1.svg
│ │ ├── wifi-signal-2.svg
│ │ ├── wifi-signal-4.svg
│ │ ├── wifi-signal-off.svg
│ │ ├── window-maximize.svg
│ │ ├── window-minimize.svg
│ │ ├── window-restore.svg
│ │ ├── window.svg
│ │ ├── wrap-text.svg
│ │ ├── x-circle.svg
│ │ ├── x.svg
│ │ ├── yen.svg
│ │ ├── zoom-in.svg
│ │ └── zoom-out.svg
│ └── img
│ │ └── avatars
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ ├── 4.jpg
│ │ ├── 5.jpg
│ │ ├── 6.jpg
│ │ ├── 7.jpg
│ │ └── 8.jpg
├── js
│ ├── app.js
│ ├── bootstrap.js
│ ├── components
│ │ └── ExampleComponent.vue
│ └── coreui
│ │ ├── charts.js
│ │ ├── colors.js
│ │ ├── main.js
│ │ ├── media-cropp.js
│ │ ├── media.js
│ │ ├── menu-create.js
│ │ ├── menu-edit.js
│ │ ├── popovers.js
│ │ ├── tooltips.js
│ │ └── widgets.js
├── lang
│ └── en
│ │ ├── auth.php
│ │ ├── pagination.php
│ │ ├── passwords.php
│ │ └── validation.php
├── sass
│ ├── _custom.scss
│ ├── _variables.scss
│ ├── app.scss
│ ├── style.scss
│ └── vendors
│ │ ├── _variables.scss
│ │ └── pace-progress
│ │ └── pace.scss
├── vendors
│ └── pace-progress
│ │ └── css
│ │ ├── pace.css
│ │ ├── pace.css.map
│ │ ├── pace.min.css
│ │ └── pace.min.css.map
└── views
│ ├── auth
│ ├── login.blade.php
│ ├── passwords
│ │ ├── email.blade.php
│ │ └── reset.blade.php
│ ├── register.blade.php
│ └── verify.blade.php
│ ├── dashboard
│ ├── 404.blade.php
│ ├── 500.blade.php
│ ├── admin
│ │ ├── userEditForm.blade.php
│ │ ├── userShow.blade.php
│ │ └── usersList.blade.php
│ ├── auth-temp
│ │ ├── login.blade.php
│ │ └── register.blade.php
│ ├── authBase.blade.php
│ ├── base.blade.php
│ ├── base
│ │ ├── breadcrumb.blade.php
│ │ ├── cards.blade.php
│ │ ├── carousel.blade.php
│ │ ├── collapse.blade.php
│ │ ├── forms.blade.php
│ │ ├── jumbotron.blade.php
│ │ ├── list-group.blade.php
│ │ ├── navs.blade.php
│ │ ├── pagination.blade.php
│ │ ├── popovers.blade.php
│ │ ├── progress.blade.php
│ │ ├── scrollspy.blade.php
│ │ ├── switches.blade.php
│ │ ├── tables.blade.php
│ │ ├── tabs.blade.php
│ │ └── tooltips.blade.php
│ ├── buttons
│ │ ├── brand-buttons.blade.php
│ │ ├── button-group.blade.php
│ │ ├── buttons.blade.php
│ │ └── dropdowns.blade.php
│ ├── charts.blade.php
│ ├── colors.blade.php
│ ├── editmenu
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ ├── menu
│ │ │ ├── create.blade.php
│ │ │ ├── edit.blade.php
│ │ │ └── index.blade.php
│ │ └── show.blade.php
│ ├── email
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ ├── send.blade.php
│ │ └── show.blade.php
│ ├── errorBase.blade.php
│ ├── form
│ │ ├── create.blade.php
│ │ ├── create2.blade.php
│ │ ├── delete.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── homepage.blade.php
│ ├── icons
│ │ ├── brands.blade.php
│ │ ├── coreui-icons.blade.php
│ │ └── flags.blade.php
│ ├── media
│ │ └── index.blade.php
│ ├── notes
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── noteShow.blade.php
│ │ └── notesList.blade.php
│ ├── notifications
│ │ ├── alerts.blade.php
│ │ ├── badge.blade.php
│ │ └── modals.blade.php
│ ├── resource
│ │ ├── create.blade.php
│ │ ├── delete.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── roles
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── shared
│ │ ├── aside.blade.php
│ │ ├── breadcrumb.blade.php
│ │ ├── footer.blade.php
│ │ ├── header.blade.php
│ │ ├── nav-admin.blade.php
│ │ ├── nav-builder.blade.php
│ │ ├── nav.blade.php
│ │ ├── sidebar.blade.php
│ │ └── universal-info.blade.php
│ ├── typography.blade.php
│ └── widgets.blade.php
│ ├── errors
│ ├── 404.blade.php
│ └── 500.blade.php
│ ├── home.blade.php
│ ├── layouts
│ └── app.blade.php
│ └── welcome.blade.php
├── routes
├── api.php
├── channels.php
├── console.php
└── web.php
├── server.php
├── storage
├── app
│ ├── .gitignore
│ └── public
│ │ └── .gitignore
├── framework
│ ├── .gitignore
│ ├── cache
│ │ ├── .gitignore
│ │ └── data
│ │ │ └── .gitignore
│ ├── sessions
│ │ └── .gitignore
│ ├── testing
│ │ └── .gitignore
│ └── views
│ │ └── .gitignore
└── logs
│ └── .gitignore
├── tests
├── Bootstrap.php
├── CreatesApplication.php
├── TestCase.php
└── Unit
│ ├── BreadTest.php
│ ├── MediaTest.php
│ ├── MenuBuilderTest.php
│ ├── MenuElementTest.php
│ ├── MenuTest.php
│ ├── NotesTest.php
│ ├── RemoveFolderServiceTest.php
│ ├── RenderFromDatabaseDataTest.php
│ ├── ResourceServiceTest.php
│ ├── ResourceTest.php
│ ├── RolesServiceTest.php
│ ├── UserTest.php
│ └── _aCoreUITest.php
└── webpack.mix.js
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | charset = utf-8
5 | end_of_line = lf
6 | insert_final_newline = true
7 | indent_style = space
8 | indent_size = 4
9 | trim_trailing_whitespace = true
10 |
11 | [*.md]
12 | trim_trailing_whitespace = false
13 |
14 | [*.{yml,yaml}]
15 | indent_size = 2
16 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 | *.js linguist-vendored
5 | CHANGELOG.md export-ignore
6 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /dist
2 | /node_modules
3 | /database/database.sqlite
4 | /public/hot
5 | /public/storage
6 | /public/js
7 | /public/css
8 | /public/img
9 | /public/flags
10 | /public/fonts
11 | /public/webfonts
12 | /public/scss
13 | /public/assets
14 | /public/svg
15 | /public/icons
16 | /public/vendors
17 | /public/public
18 | /storage/*.key
19 | /vendor
20 | .env
21 | .env.backup
22 | .phpunit.result.cache
23 | Homestead.json
24 | Homestead.yaml
25 | npm-debug.log
26 | yarn-error.log
27 | composer.phar
28 |
--------------------------------------------------------------------------------
/.styleci.yml:
--------------------------------------------------------------------------------
1 | php:
2 | preset: laravel
3 | enabled:
4 | - alpha_ordered_imports
5 | disabled:
6 | - length_ordered_imports
7 | - unused_use
8 | finder:
9 | not-name:
10 | - index.php
11 | - server.php
12 | js:
13 | finder:
14 | not-name:
15 | - webpack.mix.js
16 | css: true
17 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Controller.php:
--------------------------------------------------------------------------------
1 | user()->menuroles);
19 | if ( ! in_array('admin', $roles) ) {
20 | return abort( 401 );
21 | }
22 | return $next($request);
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/app/Http/Middleware/Authenticate.php:
--------------------------------------------------------------------------------
1 | expectsJson()) {
18 | return route('login');
19 | }
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/app/Http/Middleware/CheckForMaintenanceMode.php:
--------------------------------------------------------------------------------
1 | belongsTo('App\Models\Status', 'status_id');
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/app/Models/Folder.php:
--------------------------------------------------------------------------------
1 | hasMany('App\Models\Media');
22 | }
23 | */
24 | }
25 |
--------------------------------------------------------------------------------
/app/Models/Form.php:
--------------------------------------------------------------------------------
1 | belongsTo('App\Models\Models', 'model_id');
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/app/Models/FormField.php:
--------------------------------------------------------------------------------
1 | hasMany('App\Models\Notes');
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/app/Models/Users.php:
--------------------------------------------------------------------------------
1 | hasMany('App\Models\Notes');
20 | }
21 |
22 | protected $dates = [
23 | 'deleted_at'
24 | ];
25 | }
--------------------------------------------------------------------------------
/app/Providers/BroadcastServiceProvider.php:
--------------------------------------------------------------------------------
1 | name);
20 | }
21 | //return array_merge(self::$defaultRoles, $result);
22 | return $result;
23 | }
24 |
25 | }
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/build/postcss.config.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | module.exports = (ctx) => ({
4 | map: ctx.file.dirname.includes('examples') ? false : {
5 | inline: false,
6 | annotation: true,
7 | sourcesContent: true
8 | },
9 | plugins: {
10 | autoprefixer: { cascade: false }
11 | }
12 | })
13 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 | *.sqlite-journal
3 |
--------------------------------------------------------------------------------
/database/factories/MenuroleFactory.php:
--------------------------------------------------------------------------------
1 | define(Menurole::class, function (Faker $faker) {
13 | return [
14 | 'role_name' => 'guest',
15 | 'menus_id' => factory(App\Models\Menus::class)->create()->id,
16 | ];
17 | });
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/resources/assets/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/.DS_Store
--------------------------------------------------------------------------------
/resources/assets/brand/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/brand/.DS_Store
--------------------------------------------------------------------------------
/resources/assets/favicon/android-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/android-icon-144x144.png
--------------------------------------------------------------------------------
/resources/assets/favicon/android-icon-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/android-icon-192x192.png
--------------------------------------------------------------------------------
/resources/assets/favicon/android-icon-36x36.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/android-icon-36x36.png
--------------------------------------------------------------------------------
/resources/assets/favicon/android-icon-48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/android-icon-48x48.png
--------------------------------------------------------------------------------
/resources/assets/favicon/android-icon-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/android-icon-72x72.png
--------------------------------------------------------------------------------
/resources/assets/favicon/android-icon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/android-icon-96x96.png
--------------------------------------------------------------------------------
/resources/assets/favicon/apple-icon-114x114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/apple-icon-114x114.png
--------------------------------------------------------------------------------
/resources/assets/favicon/apple-icon-120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/apple-icon-120x120.png
--------------------------------------------------------------------------------
/resources/assets/favicon/apple-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/apple-icon-144x144.png
--------------------------------------------------------------------------------
/resources/assets/favicon/apple-icon-152x152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/apple-icon-152x152.png
--------------------------------------------------------------------------------
/resources/assets/favicon/apple-icon-180x180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/apple-icon-180x180.png
--------------------------------------------------------------------------------
/resources/assets/favicon/apple-icon-57x57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/apple-icon-57x57.png
--------------------------------------------------------------------------------
/resources/assets/favicon/apple-icon-60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/apple-icon-60x60.png
--------------------------------------------------------------------------------
/resources/assets/favicon/apple-icon-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/apple-icon-72x72.png
--------------------------------------------------------------------------------
/resources/assets/favicon/apple-icon-76x76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/apple-icon-76x76.png
--------------------------------------------------------------------------------
/resources/assets/favicon/apple-icon-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/apple-icon-precomposed.png
--------------------------------------------------------------------------------
/resources/assets/favicon/apple-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/apple-icon.png
--------------------------------------------------------------------------------
/resources/assets/favicon/browserconfig.xml:
--------------------------------------------------------------------------------
1 |
2 | #ffffff
--------------------------------------------------------------------------------
/resources/assets/favicon/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/favicon-16x16.png
--------------------------------------------------------------------------------
/resources/assets/favicon/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/favicon-32x32.png
--------------------------------------------------------------------------------
/resources/assets/favicon/favicon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/favicon-96x96.png
--------------------------------------------------------------------------------
/resources/assets/favicon/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/favicon.ico
--------------------------------------------------------------------------------
/resources/assets/favicon/ms-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/ms-icon-144x144.png
--------------------------------------------------------------------------------
/resources/assets/favicon/ms-icon-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/ms-icon-150x150.png
--------------------------------------------------------------------------------
/resources/assets/favicon/ms-icon-310x310.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/ms-icon-310x310.png
--------------------------------------------------------------------------------
/resources/assets/favicon/ms-icon-70x70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/favicon/ms-icon-70x70.png
--------------------------------------------------------------------------------
/resources/assets/icons/account-logout.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/action-redo.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/airplay.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/align-center.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/resources/assets/icons/align-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/resources/assets/icons/align-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/resources/assets/icons/angular.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-bottom.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-thick-bottom.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-thick-from-bottom.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-thick-from-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-thick-from-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-thick-from-top.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-thick-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-thick-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-thick-to-bottom.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-thick-to-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-thick-to-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-thick-to-top.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-thick-top.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/arrow-top.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/asterisk.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/audio-spectrum.svg:
--------------------------------------------------------------------------------
1 |
2 |
11 |
--------------------------------------------------------------------------------
/resources/assets/icons/battery-0.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/bed.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/bluetooth.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/bolt.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/bookmark.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/border-all.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/adn.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/adobe.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/affiliatetheme.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/angular.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/apple.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/artstation.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/atlassian.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/audible.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/autoprefixer.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/avianex.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/bandcamp.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/bimobject.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/bitbucket.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/black-tie.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/bluetooth-b.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/bluetooth.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/buromobelexperte.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/buysellads.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/centercode.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/chrome.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/chromecast.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/cloudsmith.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/codiepie.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/contao.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/creative-commons-nd.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/css3-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/css3.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/cuttlefish.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/dashcube.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/delicious.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/deviantart.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/diaspora.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/digg.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/digital-ocean.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/discourse.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/dochub.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/dropbox.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/dyalog.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/elementor.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/ello.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/envira.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/erlang.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/ethereum.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/facebook-f.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/facebook-messenger.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/facebook-square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/facebook.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/figma.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/firstdraft.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/flickr.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/flipboard.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/fulcrum.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/get-pocket.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/gg-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/gg.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/git-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/gitlab.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/gitter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/gofore.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/google-drive.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/google-play.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/google-plus-g.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/google-plus-square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/google-plus.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/google.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/gratipay.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/hacker-news-square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/hacker-news.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/hotjar.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/houzz.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/html5.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/jira.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/kaggle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/kickstarter-k.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/kickstarter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/korvue.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/linkedin-in.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/linkedin.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/magento.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/markdown.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/maxcdn.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/medium-m.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/medium.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/megaport.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/microsoft.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/mix.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/mizuni.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/modx.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/monero.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/neos.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/nimblr.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/npm.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/opencart.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/openid.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/opera.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/pagelines.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/patreon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/pied-piper.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/pinterest-p.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/product-hunt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/pushed.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/quinscape.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/quora.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/red-river.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/renren.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/resolving.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/rev.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/rockrms.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/servicestack.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/simplybuilt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/sistrix.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/sketch.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/sourcetree.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/speaker-deck.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/stack-exchange.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/stack-overflow.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/strava.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/stripe-s.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/studiovinari.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/stumbleupon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/superpowers.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/telegram-plane.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/telegram.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/tencent-weibo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/think-peaks.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/trello.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/tumblr-square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/tumblr.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/twitch.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/typo3.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/uber.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/uikit.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/usps.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/viacoin.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/vimeo-square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/vimeo-v.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/vimeo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/vine.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/vuejs.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/windows.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/wpbeginner.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/wpexplorer.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/xing-square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/xing.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/y-combinator.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/yahoo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/yandex-international.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/yandex.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/yoast.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/youtube-square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/brands/youtube.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/icons/british-pound.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/browser.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/bullhorn.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/caret-bottom.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/caret-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/caret-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/caret-top.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/chart-line.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/check.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/chevron-bottom.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/chevron-double-up-alt.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/chevron-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/chevron-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/chevron-top.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/circle.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/clear-all.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/clock.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/code.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/columns.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/comment-square.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/compress.svg:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/resources/assets/icons/copy.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/credit-card.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/cursor.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/data-transfer-down.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/data-transfer-up.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/description.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/dinner.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/door.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/double-quote-sans-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/double-quote-sans-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/drink-alcohol.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/drink.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/elevator.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/energy.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/envelope-closed.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/envelope-open.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/ethernet.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/resources/assets/icons/excerpt.svg:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/resources/assets/icons/exit-to-app.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/expand-down.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/expand-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/expand-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/expand-up.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/external-link.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/file.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/filter-frames.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/filter.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/flag-alt.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/folder.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/font.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/fullscreen-exit.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/fullscreen.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/functions-alt.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/gem.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/gif.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/header.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/highligt.svg:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/resources/assets/icons/home.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/house.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/image-broken.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/image-plus.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/image1.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/inbox.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/indent-decrease.svg:
--------------------------------------------------------------------------------
1 |
2 |
11 |
--------------------------------------------------------------------------------
/resources/assets/icons/indent-increase.svg:
--------------------------------------------------------------------------------
1 |
2 |
11 |
--------------------------------------------------------------------------------
/resources/assets/icons/input-hdmi.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/input-power.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/input.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/italic.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/justify-center.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/resources/assets/icons/justify-left.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/resources/assets/icons/justify-right.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/resources/assets/icons/laptop.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/level-down.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/level-up.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/line-weight.svg:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/resources/assets/icons/list-filter.svg:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/resources/assets/icons/lock-locked.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/lock-unlocked.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/loop.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/media-play.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/media-record.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/media-step-forward.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/media-stop.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/medical-cross.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/memory.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/menu.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/minus.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/mobile-landscape.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/mobile.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/monitor.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/move.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/music-note.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/notes.svg:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/resources/assets/icons/paper-plane.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/paragraph.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/playlist-add.svg:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/resources/assets/icons/plus.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/polymer.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/power-standby.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/rectangle.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/reload.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/resize-both.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/resize-height.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/resize-width.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/room.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/school.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/screen-desktop.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/screen-smartphone.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/short-text.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/signal-cellular-0.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/signal-cellular-3.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/signal-cellular-4.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/sim.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/sort-alpha-down.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/sort-alpha-up.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/sort-ascending.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/resources/assets/icons/sort-descending.svg:
--------------------------------------------------------------------------------
1 |
2 |
10 |
--------------------------------------------------------------------------------
/resources/assets/icons/space-bar.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/square.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/storage.svg:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/resources/assets/icons/stream.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/swap-horizontal.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/swap-vertical.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/tablet.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/task.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/terminal.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/terrain.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/text-size.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/text-square.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/text.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/trademark.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/transfer.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/triangle.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/tv.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/underline.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/vertical-align-bottom.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/vertical-align-bottom1.svg:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/resources/assets/icons/vertical-align-center.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/vertical-align-top.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/vertical-align-top1.svg:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/resources/assets/icons/video.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/view-column.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/view-module.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/view-quilt.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/view-stream.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/volume-low.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/volume-off.svg:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/resources/assets/icons/vue.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/warning.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/wifi-signal-0.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/window-maximize.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/window-minimize.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/window.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/wrap-text.svg:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/resources/assets/icons/x.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/icons/yen.svg:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/resources/assets/img/avatars/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/img/avatars/1.jpg
--------------------------------------------------------------------------------
/resources/assets/img/avatars/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/img/avatars/2.jpg
--------------------------------------------------------------------------------
/resources/assets/img/avatars/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/img/avatars/3.jpg
--------------------------------------------------------------------------------
/resources/assets/img/avatars/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/img/avatars/4.jpg
--------------------------------------------------------------------------------
/resources/assets/img/avatars/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/img/avatars/5.jpg
--------------------------------------------------------------------------------
/resources/assets/img/avatars/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/img/avatars/6.jpg
--------------------------------------------------------------------------------
/resources/assets/img/avatars/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/img/avatars/7.jpg
--------------------------------------------------------------------------------
/resources/assets/img/avatars/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/coreui/coreui-free-laravel-admin-template/9b8ecf4d85d143420a21577aa296e15da761fb2e/resources/assets/img/avatars/8.jpg
--------------------------------------------------------------------------------
/resources/js/coreui/tooltips.js:
--------------------------------------------------------------------------------
1 | /**
2 | * --------------------------------------------------------------------------
3 | * CoreUI Free Boostrap Admin Template (v3.0.0): tooltips.js
4 | * Licensed under MIT (https://coreui.io/license)
5 | * --------------------------------------------------------------------------
6 | */
7 |
8 | document.querySelectorAll('[data-toggle="tooltip"]').forEach((element) => {
9 | new coreui.Tooltip(element)
10 | })
11 |
--------------------------------------------------------------------------------
/resources/sass/_custom.scss:
--------------------------------------------------------------------------------
1 | // Here you can add other styles
2 |
3 |
4 | .c-header.c-header-fixed{
5 | top:0px;
6 | }
7 |
8 | .click-file{
9 | cursor:pointer;
10 | }
--------------------------------------------------------------------------------
/resources/sass/_variables.scss:
--------------------------------------------------------------------------------
1 | // Variable overrides
2 |
--------------------------------------------------------------------------------
/resources/sass/app.scss:
--------------------------------------------------------------------------------
1 | // Fonts
2 | @import url('https://fonts.googleapis.com/css?family=Nunito');
3 |
4 | @import "node_modules/font-awesome/scss/font-awesome.scss";
5 |
6 |
7 |
8 | // Variables
9 | @import 'variables';
10 |
11 | // Bootstrap
12 | @import '~bootstrap/scss/bootstrap';
13 |
14 |
15 |
--------------------------------------------------------------------------------
/resources/sass/style.scss:
--------------------------------------------------------------------------------
1 | // If you want to override variables do it here
2 | @import "variables";
3 |
4 | // Import styles
5 | @import "node_modules/@coreui/coreui/scss/coreui";
6 |
7 | // If you want to add something do it here
8 | @import "custom";
9 |
--------------------------------------------------------------------------------
/resources/sass/vendors/_variables.scss:
--------------------------------------------------------------------------------
1 | // Override Boostrap variables
2 | @import "../variables";
3 | @import "node_modules/bootstrap/scss/mixins";
4 | @import "node_modules/@coreui/coreui/scss/variables";
5 |
--------------------------------------------------------------------------------
/resources/views/dashboard/shared/footer.blade.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/routes/channels.php:
--------------------------------------------------------------------------------
1 | id === (int) $id;
16 | });
17 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/.gitignore:
--------------------------------------------------------------------------------
1 | config.php
2 | routes.php
3 | schedule-*
4 | compiled.php
5 | services.json
6 | events.scanned.php
7 | routes.scanned.php
8 | down
9 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !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:
--------------------------------------------------------------------------------
1 | make(Kernel::class)->bootstrap();
19 |
20 | return $app;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/tests/TestCase.php:
--------------------------------------------------------------------------------
1 |