├── .gitattributes ├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── app ├── Configuration.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Helper │ ├── helper.php │ └── uuid.php ├── Http │ ├── Controllers │ │ ├── AuthController.php │ │ ├── ConfigurationController.php │ │ ├── Controller.php │ │ ├── SocialAuthController.php │ │ ├── TaskController.php │ │ ├── TodoController.php │ │ └── UserController.php │ ├── Kernel.php │ └── Middleware │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Notifications │ ├── Activated.php │ ├── Activation.php │ ├── PasswordReset.php │ └── PasswordResetted.php ├── Profile.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Task.php ├── Todo.php └── User.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── image.php ├── jwt.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2017_08_21_075229_create_password_resets_table.php │ ├── 2017_08_21_075329_create_users_table.php │ ├── 2017_08_21_075429_create_config_table.php │ ├── 2017_08_21_075605_create_tasks_table.php │ ├── 2017_08_24_053036_create_profiles_table.php │ └── 2017_08_27_104452_create_todos_table.php └── seeds │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── images │ ├── background │ │ ├── background.jpg │ │ └── error-bg.jpg │ ├── custom-select.png │ ├── error-bg.jpg │ ├── favicon.ico │ ├── favicon.png │ ├── logo-icon.png │ ├── logo-light-icon.png │ ├── logo-light-text.png │ ├── logo-text.png │ ├── tooltip │ │ ├── Euclid.png │ │ ├── shape1.svg │ │ ├── shape2.svg │ │ ├── shape3.svg │ │ ├── tooltip1.svg │ │ ├── tooltip2.svg │ │ └── tooltip3.svg │ └── users │ │ ├── 599acd6daefc1.jpg │ │ ├── 599ad113ecc33.jpg │ │ ├── 599ad12d61dcb.jpg │ │ ├── 59a27adf5dd47.jpg │ │ ├── 59a426a84095b.jpg │ │ ├── 59a426d1b817f.jpg │ │ ├── 59a6dac0a47a2.jpg │ │ └── avatar.png ├── index.php ├── mix-manifest.json └── robots.txt ├── resources ├── assets │ ├── images │ │ ├── background │ │ │ ├── background.jpg │ │ │ └── error-bg.jpg │ │ ├── custom-select.png │ │ ├── favicon.png │ │ ├── logo-icon.png │ │ ├── logo-light-icon.png │ │ ├── logo-light-text.png │ │ ├── logo-text.png │ │ ├── tooltip │ │ │ ├── Euclid.png │ │ │ ├── shape1.svg │ │ │ ├── shape2.svg │ │ │ ├── shape3.svg │ │ │ ├── tooltip1.svg │ │ │ ├── tooltip2.svg │ │ │ └── tooltip3.svg │ │ └── users │ │ │ └── john.doe.jpg │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── custom.js │ │ ├── layouts │ │ │ ├── default-page.vue │ │ │ ├── error-page.vue │ │ │ ├── footer.vue │ │ │ ├── guest-footer.vue │ │ │ ├── guest-page.vue │ │ │ ├── header.vue │ │ │ ├── right-sidebar.vue │ │ │ └── sidebar.vue │ │ ├── routes.js │ │ ├── services │ │ │ ├── errors.js │ │ │ ├── form.js │ │ │ └── helper.js │ │ ├── store.js │ │ └── views │ │ │ ├── auth │ │ │ ├── activate.vue │ │ │ ├── login.vue │ │ │ ├── password.vue │ │ │ ├── register.vue │ │ │ ├── reset.vue │ │ │ └── social-auth.vue │ │ │ ├── configuration │ │ │ └── configuration.vue │ │ │ ├── errors │ │ │ └── page-not-found.vue │ │ │ ├── pages │ │ │ ├── blank.vue │ │ │ └── home.vue │ │ │ ├── task │ │ │ ├── edit.vue │ │ │ ├── form.vue │ │ │ └── index.vue │ │ │ └── user │ │ │ ├── index.vue │ │ │ └── profile.vue │ ├── plugins │ │ ├── bootstrap │ │ │ ├── bootstrap.min.js │ │ │ └── sass │ │ │ │ ├── _alert.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _breadcrumb.scss │ │ │ │ ├── _button-group.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _card.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _custom-forms.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _images.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popover.scss │ │ │ │ ├── _print.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _reboot.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _transitions.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ ├── bootstrap.scss │ │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _navbar-align.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-hide.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _transition.scss │ │ │ │ └── _visibility.scss │ │ │ │ └── utilities │ │ │ │ ├── _align.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _borders.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _display.scss │ │ │ │ ├── _embed.scss │ │ │ │ ├── _flex.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _screenreaders.scss │ │ │ │ ├── _sizing.scss │ │ │ │ ├── _spacing.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _visibility.scss │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ ├── jquery │ │ │ └── jquery.min.js │ │ ├── moment │ │ │ └── moment.min.js │ │ ├── popper │ │ │ └── popper.min.js │ │ ├── sidebarmenu.js │ │ ├── slimscroll │ │ │ └── jquery.slimscroll.js │ │ ├── sticky-kit │ │ │ └── sticky-kit.min.js │ │ ├── toastr │ │ │ ├── toastr.min.css │ │ │ └── toastr.min.js │ │ └── waves │ │ │ └── waves.js │ └── sass │ │ ├── _variables.scss │ │ ├── animate.css │ │ ├── app.scss │ │ ├── color.scss │ │ ├── custom.scss │ │ ├── grid.scss │ │ ├── pages.scss │ │ ├── responsive.scss │ │ ├── sidebar.scss │ │ ├── spinners.css │ │ ├── style.scss │ │ ├── variable.scss │ │ └── widgets.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── home.blade.php │ └── layouts │ └── master.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptmint/Laravel-5.7-Vue.js-Starter-Kit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptmint/Laravel-5.7-Vue.js-Starter-Kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptmint/Laravel-5.7-Vue.js-Starter-Kit/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptmint/Laravel-5.7-Vue.js-Starter-Kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptmint/Laravel-5.7-Vue.js-Starter-Kit/HEAD/README.md -------------------------------------------------------------------------------- /app/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptmint/Laravel-5.7-Vue.js-Starter-Kit/HEAD/app/Configuration.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptmint/Laravel-5.7-Vue.js-Starter-Kit/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptmint/Laravel-5.7-Vue.js-Starter-Kit/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helper/helper.php: -------------------------------------------------------------------------------- 1 |