├── public ├── favicon.ico ├── robots.txt ├── .htaccess ├── web.config └── index.php ├── tests ├── Unit │ └── .gitkeep ├── TestCase.php ├── CreatesApplication.php └── Feature │ ├── TestCase.php │ ├── CommentsTest.php │ ├── SitesTest.php │ └── PostsTest.php ├── app ├── Listeners │ └── .gitkeep ├── Events │ ├── Event.php │ └── PostCreated.php ├── Http │ ├── Requests │ │ └── Request.php │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── RedirectIfAuthenticated.php │ ├── Controllers │ │ ├── Controller.php │ │ ├── Api │ │ │ └── PostsController.php │ │ ├── HomeController.php │ │ └── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── RegisterController.php │ └── Kernel.php ├── Tag.php ├── Comment.php ├── Providers │ ├── EventServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ └── RouteServiceProvider.php ├── JsonApi │ ├── Tags │ │ ├── Adapter.php │ │ └── Schema.php │ ├── Users │ │ ├── Validators.php │ │ ├── Schema.php │ │ └── Adapter.php │ ├── Sites │ │ ├── Schema.php │ │ ├── Validators.php │ │ ├── Authorizer.php │ │ └── Adapter.php │ ├── Comments │ │ ├── Adapter.php │ │ └── Schema.php │ ├── Posts │ │ ├── Validators.php │ │ ├── Adapter.php │ │ └── Schema.php │ └── DefaultAuthorizer.php ├── Jobs │ └── Job.php ├── User.php ├── Console │ ├── Commands │ │ └── Inspire.php │ └── Kernel.php ├── Post.php ├── Policies │ ├── UserPolicy.php │ ├── PostPolicy.php │ └── CommentPolicy.php ├── Exceptions │ └── Handler.php ├── SiteRepository.php └── Site.php ├── database ├── .gitignore ├── seeds │ ├── DatabaseSeeder.php │ └── PostSeeder.php ├── migrations │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2018_02_28_141331_add_posts_column_published_at.php │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2016_09_03_153707_create-tags-table.php │ └── 2016_06_04_063426_create-posts-and-comments-tables.php └── factories │ └── ModelFactory.php ├── resources ├── views │ ├── vendor │ │ └── .gitkeep │ ├── home.blade.php │ ├── errors │ │ └── 503.blade.php │ ├── auth │ │ ├── passwords │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ ├── login.blade.php │ │ └── register.blade.php │ └── layouts │ │ └── app.blade.php ├── assets │ ├── sass │ │ ├── _variables.scss │ │ └── app.scss │ └── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ └── passport │ │ ├── AuthorizedClients.vue │ │ ├── PersonalAccessTokens.vue │ │ └── Clients.vue └── lang │ └── en │ ├── pagination.php │ ├── auth.php │ ├── passwords.php │ └── validation.php ├── bootstrap ├── cache │ └── .gitignore └── app.php ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── cache │ └── .gitignore │ ├── views │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── .gitattributes ├── after.sh ├── .editorconfig ├── .gitignore ├── .env.example ├── config ├── hashing.php ├── compile.php ├── services.php ├── view.php ├── broadcasting.php ├── logging.php ├── filesystems.php ├── cache.php ├── queue.php ├── auth.php ├── mail.php ├── database.php ├── json-api-v1.php ├── session.php └── app.php ├── webpack.mix.js ├── routes ├── console.php ├── web.php └── api.php ├── server.php ├── package.json ├── phpunit.xml ├── artisan ├── composer.json └── README.md /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- 1 | 5 |
| Name | 19 |Scopes | 20 |21 | |
|---|---|---|
| 28 | {{ token.client.name }} 29 | | 30 | 31 | 32 |33 | 34 | {{ token.scopes.join(', ') }} 35 | 36 | | 37 | 38 | 39 |40 | 41 | Revoke 42 | 43 | | 44 |
26 | You have not created any personal access tokens. 27 |
28 | 29 | 30 || Name | 34 |35 | |
|---|---|
| 42 | {{ token.name }} 43 | | 44 | 45 | 46 |47 | 48 | Delete 49 | 50 | | 51 |
25 | You have not created any OAuth clients. 26 |
27 | 28 || Client ID | 32 |Name | 33 |Secret | 34 |35 | | 36 | |
|---|---|---|---|---|
| 43 | {{ client.id }} 44 | | 45 | 46 | 47 |48 | {{ client.name }} 49 | | 50 | 51 | 52 |
53 | {{ client.secret }}
54 | |
55 |
56 |
57 | 58 | 59 | Edit 60 | 61 | | 62 | 63 | 64 |65 | 66 | Delete 67 | 68 | | 69 |