├── backend ├── .editorconfig ├── .env ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── Dockerfile ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Controller.php │ │ │ ├── LoginController.php │ │ │ └── PostsController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── EncryptCookies.php │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustHosts.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Models │ │ └── User.php │ └── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php ├── artisan ├── bootstrap │ ├── app.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── cors.php │ ├── database.php │ ├── filesystems.php │ ├── hashing.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── sanctum.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ └── UserFactory.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_12_14_000001_create_personal_access_tokens_table.php │ └── seeders │ │ └── DatabaseSeeder.php ├── docker-compose.yml ├── docker-nginx.conf ├── docker │ ├── Dockerfile │ └── xdebug.ini ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── web.config ├── 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 │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php └── webpack.mix.js └── frontend ├── .gitignore ├── README.md ├── babel.config.js ├── package-lock.json ├── package.json ├── public ├── favicon.ico └── index.html └── src ├── App.vue ├── api ├── api.js └── repository.js ├── assets └── logo.png ├── main.js ├── router ├── index.js ├── middleware │ ├── index.js │ └── rules │ │ ├── guest.js │ │ └── user.js └── routes.js ├── store └── index.js └── views ├── auth └── Login.vue └── posts └── Index.vue /backend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/.editorconfig -------------------------------------------------------------------------------- /backend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/.env -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/.gitattributes -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/.styleci.yml -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Console/Kernel.php -------------------------------------------------------------------------------- /backend/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /backend/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /backend/app/Http/Controllers/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Http/Controllers/LoginController.php -------------------------------------------------------------------------------- /backend/app/Http/Controllers/PostsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Http/Controllers/PostsController.php -------------------------------------------------------------------------------- /backend/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Http/Kernel.php -------------------------------------------------------------------------------- /backend/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /backend/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /backend/app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /backend/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /backend/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /backend/app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /backend/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /backend/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /backend/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Models/User.php -------------------------------------------------------------------------------- /backend/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /backend/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /backend/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /backend/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /backend/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /backend/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/artisan -------------------------------------------------------------------------------- /backend/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/bootstrap/app.php -------------------------------------------------------------------------------- /backend/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/composer.json -------------------------------------------------------------------------------- /backend/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/composer.lock -------------------------------------------------------------------------------- /backend/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/app.php -------------------------------------------------------------------------------- /backend/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/auth.php -------------------------------------------------------------------------------- /backend/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/broadcasting.php -------------------------------------------------------------------------------- /backend/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/cache.php -------------------------------------------------------------------------------- /backend/config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/cors.php -------------------------------------------------------------------------------- /backend/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/database.php -------------------------------------------------------------------------------- /backend/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/filesystems.php -------------------------------------------------------------------------------- /backend/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/hashing.php -------------------------------------------------------------------------------- /backend/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/logging.php -------------------------------------------------------------------------------- /backend/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/mail.php -------------------------------------------------------------------------------- /backend/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/queue.php -------------------------------------------------------------------------------- /backend/config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/sanctum.php -------------------------------------------------------------------------------- /backend/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/services.php -------------------------------------------------------------------------------- /backend/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/session.php -------------------------------------------------------------------------------- /backend/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/config/view.php -------------------------------------------------------------------------------- /backend/database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/database/.gitignore -------------------------------------------------------------------------------- /backend/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/database/factories/UserFactory.php -------------------------------------------------------------------------------- /backend/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /backend/database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /backend/database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /backend/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /backend/database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /backend/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/docker-compose.yml -------------------------------------------------------------------------------- /backend/docker-nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/docker-nginx.conf -------------------------------------------------------------------------------- /backend/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/docker/Dockerfile -------------------------------------------------------------------------------- /backend/docker/xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/docker/xdebug.ini -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/phpunit.xml -------------------------------------------------------------------------------- /backend/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/public/.htaccess -------------------------------------------------------------------------------- /backend/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/public/index.php -------------------------------------------------------------------------------- /backend/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /backend/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/public/web.config -------------------------------------------------------------------------------- /backend/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/routes/api.php -------------------------------------------------------------------------------- /backend/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/routes/channels.php -------------------------------------------------------------------------------- /backend/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/routes/console.php -------------------------------------------------------------------------------- /backend/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/routes/web.php -------------------------------------------------------------------------------- /backend/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/server.php -------------------------------------------------------------------------------- /backend/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /backend/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/storage/framework/.gitignore -------------------------------------------------------------------------------- /backend/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /backend/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/tests/CreatesApplication.php -------------------------------------------------------------------------------- /backend/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /backend/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/tests/TestCase.php -------------------------------------------------------------------------------- /backend/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /backend/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/backend/webpack.mix.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/babel.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/src/App.vue -------------------------------------------------------------------------------- /frontend/src/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/src/api/api.js -------------------------------------------------------------------------------- /frontend/src/api/repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/src/api/repository.js -------------------------------------------------------------------------------- /frontend/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/src/assets/logo.png -------------------------------------------------------------------------------- /frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/src/main.js -------------------------------------------------------------------------------- /frontend/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/src/router/index.js -------------------------------------------------------------------------------- /frontend/src/router/middleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/src/router/middleware/index.js -------------------------------------------------------------------------------- /frontend/src/router/middleware/rules/guest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/src/router/middleware/rules/guest.js -------------------------------------------------------------------------------- /frontend/src/router/middleware/rules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/src/router/middleware/rules/user.js -------------------------------------------------------------------------------- /frontend/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/src/router/routes.js -------------------------------------------------------------------------------- /frontend/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/src/store/index.js -------------------------------------------------------------------------------- /frontend/src/views/auth/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/src/views/auth/Login.vue -------------------------------------------------------------------------------- /frontend/src/views/posts/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonasposka/laravel-vue-authentication/HEAD/frontend/src/views/posts/Index.vue --------------------------------------------------------------------------------