Showing
115 changed files
with
4418 additions
and
21 deletions
.DS_Store
0 → 100644
No preview for this file type
.editorconfig
0 → 100644
.env.example
0 → 100644
.gitattributes
0 → 100644
.styleci.yml
0 → 100644
README.md
0 → 100644
app/Console/Kernel.php
0 → 100644
app/Exceptions/Handler.php
0 → 100644
app/Http/Controllers/ArticleController.php
0 → 100644
app/Http/Controllers/CommentController.php
0 → 100644
app/Http/Controllers/Controller.php
0 → 100644
app/Http/Controllers/ProfileController.php
0 → 100644
app/Http/Controllers/TagController.php
0 → 100644
app/Http/Controllers/UserController.php
0 → 100644
app/Http/Kernel.php
0 → 100644
app/Http/Middleware/Authenticate.php
0 → 100644
app/Http/Middleware/EncryptCookies.php
0 → 100644
app/Http/Middleware/TrimStrings.php
0 → 100644
app/Http/Middleware/TrustHosts.php
0 → 100644
app/Http/Middleware/TrustProxies.php
0 → 100644
app/Http/Middleware/VerifyCsrfToken.php
0 → 100644
app/Http/Requests/Article/DestroyRequest.php
0 → 100644
app/Http/Requests/Article/FeedRequest.php
0 → 100644
app/Http/Requests/Article/IndexRequest.php
0 → 100644
app/Http/Requests/Article/StoreRequest.php
0 → 100644
app/Http/Requests/Article/UpdateRequest.php
0 → 100644
app/Http/Requests/Comment/DestroyRequest.php
0 → 100644
app/Http/Requests/Comment/StoreRequest.php
0 → 100644
app/Http/Requests/User/LoginRequest.php
0 → 100644
app/Http/Requests/User/StoreRequest.php
0 → 100644
app/Http/Requests/User/UpdateRequest.php
0 → 100644
app/Http/Resources/ArticleCollection.php
0 → 100644
app/Http/Resources/ArticleResource.php
0 → 100644
app/Http/Resources/CommentCollection.php
0 → 100644
app/Http/Resources/CommentResource.php
0 → 100644
app/Models/Article.php
0 → 100644
app/Models/Comment.php
0 → 100644
app/Models/Tag.php
0 → 100644
app/Models/User.php
0 → 100644
app/Providers/AppServiceProvider.php
0 → 100644
app/Providers/AuthServiceProvider.php
0 → 100644
app/Providers/BroadcastServiceProvider.php
0 → 100644
app/Providers/EventServiceProvider.php
0 → 100644
app/Providers/RouteServiceProvider.php
0 → 100644
app/Services/ArticleService.php
0 → 100644
artisan
0 → 100755
bootstrap/app.php
0 → 100644
bootstrap/cache/.gitignore
0 → 100644
composer.json
0 → 100644
composer.lock
0 → 100644
This diff could not be displayed because it is too large.
config/app.php
0 → 100644
config/auth.php
0 → 100644
config/broadcasting.php
0 → 100644
config/cache.php
0 → 100644
config/cors.php
0 → 100644
config/database.php
0 → 100644
config/filesystems.php
0 → 100644
config/hashing.php
0 → 100644
config/jwt.php
0 → 100644
config/logging.php
0 → 100644
config/mail.php
0 → 100644
config/queue.php
0 → 100644
config/sanctum.php
0 → 100644
config/services.php
0 → 100644
config/session.php
0 → 100644
config/view.php
0 → 100644
database/.gitignore
0 → 100644
database/factories/ArticleFactory.php
0 → 100644
database/factories/CommentFactory.php
0 → 100644
database/factories/TagFactory.php
0 → 100644
database/factories/UserFactory.php
0 → 100644
database/seeders/DatabaseSeeder.php
0 → 100644
package.json
0 → 100644
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/favicon.ico
0 → 100644
File mode changed
public/index.php
0 → 100644
public/robots.txt
0 → 100644
public/web.config
0 → 100644
resources/css/app.css
0 → 100644
File mode changed
resources/js/app.js
0 → 100644
resources/js/bootstrap.js
0 → 100644
resources/lang/en/auth.php
0 → 100644
resources/lang/en/pagination.php
0 → 100644
resources/lang/en/passwords.php
0 → 100644
resources/lang/en/validation.php
0 → 100644
resources/views/welcome.blade.php
0 → 100644
routes/api.php
0 → 100644
routes/channels.php
0 → 100644
routes/console.php
0 → 100644
routes/web.php
0 → 100644
server.php
0 → 100644
storage/app/.gitignore
0 → 100644
storage/app/public/.gitignore
0 → 100644
storage/framework/.gitignore
0 → 100644
storage/framework/cache/.gitignore
0 → 100644
storage/framework/cache/data/.gitignore
0 → 100644
storage/framework/sessions/.gitignore
0 → 100644
storage/framework/testing/.gitignore
0 → 100644
storage/framework/views/.gitignore
0 → 100644
storage/logs/.gitignore
0 → 100644
tests/CreatesApplication.php
0 → 100644
tests/Feature/ArticleTest.php
0 → 100644
tests/TestCase.php
0 → 100644
webpack.mix.js
0 → 100644
-
Please register or login to post a comment