├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Actions │ ├── Fortify │ │ ├── CreateNewUser.php │ │ ├── PasswordValidationRules.php │ │ ├── ResetUserPassword.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php │ └── Jetstream │ │ └── DeleteUser.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Filament │ └── Resources │ │ ├── CategoryResource.php │ │ ├── CategoryResource │ │ └── Pages │ │ │ ├── CreateCategory.php │ │ │ ├── EditCategory.php │ │ │ └── ListCategories.php │ │ ├── CommentResource.php │ │ ├── CommentResource │ │ ├── Pages │ │ │ ├── CreateComment.php │ │ │ ├── EditComment.php │ │ │ └── ListComments.php │ │ └── Widgets │ │ │ └── LatestCommentsWidget.php │ │ ├── PostResource.php │ │ ├── PostResource │ │ ├── Pages │ │ │ ├── CreatePost.php │ │ │ ├── EditPost.php │ │ │ └── ListPosts.php │ │ ├── RelationManagers │ │ │ └── CommentsRelationManager.php │ │ └── Widgets │ │ │ └── PostsPerMonthChart.php │ │ ├── UserResource.php │ │ └── UserResource │ │ ├── Pages │ │ ├── CreateUser.php │ │ ├── EditUser.php │ │ └── ListUsers.php │ │ └── Widgets │ │ └── UserStatsWidget.php ├── Http │ ├── Controllers │ │ ├── Controller.php │ │ ├── HomeController.php │ │ └── PostController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── SetLocale.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php ├── Livewire │ ├── LikeButton.php │ ├── PostComments.php │ └── PostList.php ├── Models │ ├── Category.php │ ├── Comment.php │ ├── Post.php │ └── User.php ├── Policies │ ├── CategoryPolicy.php │ ├── PostPolicy.php │ └── UserPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── Filament │ │ └── AdminPanelProvider.php │ ├── FortifyServiceProvider.php │ ├── JetstreamServiceProvider.php │ └── RouteServiceProvider.php └── View │ └── Components │ └── AppLayout.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 ├── fortify.php ├── hashing.php ├── jetstream.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── CategoryFactory.php │ ├── PostFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2014_10_12_200000_add_two_factor_columns_to_users_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2023_09_06_121600_create_sessions_table.php │ ├── 2023_09_08_133049_create_posts_table.php │ ├── 2023_09_08_133104_create_categories_table.php │ ├── 2023_09_08_133145_create_category_post_table.php │ ├── 2023_09_17_160342_create_post_like_table.php │ ├── 2023_09_25_045944_create_comments_table.php │ └── 2023_09_30_090231_add_role_to_users.php └── seeders │ └── DatabaseSeeder.php ├── lang ├── en │ ├── auth.php │ ├── blog.php │ ├── home.php │ ├── menu.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php └── fr │ ├── blog.php │ └── home.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── css │ └── filament │ │ ├── filament │ │ └── app.css │ │ ├── forms │ │ └── forms.css │ │ └── support │ │ └── support.css ├── favicon.ico ├── index.php ├── js │ └── filament │ │ ├── filament │ │ ├── app.js │ │ └── echo.js │ │ ├── forms │ │ └── components │ │ │ ├── color-picker.js │ │ │ ├── date-time-picker.js │ │ │ ├── file-upload.js │ │ │ ├── key-value.js │ │ │ ├── markdown-editor.js │ │ │ ├── rich-editor.js │ │ │ ├── select.js │ │ │ ├── tags-input.js │ │ │ └── textarea.js │ │ ├── notifications │ │ └── notifications.js │ │ ├── support │ │ ├── async-alpine.js │ │ └── support.js │ │ ├── tables │ │ └── components │ │ │ └── table.js │ │ └── widgets │ │ └── components │ │ ├── chart.js │ │ └── stats-overview │ │ └── stat │ │ └── chart.js └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── markdown │ ├── policy.md │ └── terms.md └── views │ ├── api │ ├── api-token-manager.blade.php │ └── index.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ ├── two-factor-challenge.blade.php │ └── verify-email.blade.php │ ├── components │ ├── action-message.blade.php │ ├── action-section.blade.php │ ├── application-logo.blade.php │ ├── application-mark.blade.php │ ├── authentication-card-logo.blade.php │ ├── authentication-card.blade.php │ ├── badge.blade.php │ ├── banner.blade.php │ ├── button.blade.php │ ├── checkbox.blade.php │ ├── confirmation-modal.blade.php │ ├── confirms-password.blade.php │ ├── danger-button.blade.php │ ├── dialog-modal.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── form-section.blade.php │ ├── input-error.blade.php │ ├── input.blade.php │ ├── label.blade.php │ ├── modal.blade.php │ ├── nav-link.blade.php │ ├── posts │ │ ├── author.blade.php │ │ ├── category-badge.blade.php │ │ ├── post-card.blade.php │ │ └── post-item.blade.php │ ├── secondary-button.blade.php │ ├── section-border.blade.php │ ├── section-title.blade.php │ ├── switchable-team.blade.php │ └── validation-errors.blade.php │ ├── emails │ └── team-invitation.blade.php │ ├── home.blade.php │ ├── layouts │ ├── app.blade.php │ └── partials │ │ ├── footer.blade.php │ │ ├── header-right-auth.blade.php │ │ ├── header-right-guest.blade.php │ │ └── header.blade.php │ ├── livewire │ ├── like-button.blade.php │ ├── post-comments.blade.php │ └── post-list.blade.php │ ├── navigation-menu.blade.php │ ├── policy.blade.php │ ├── posts │ ├── index.blade.php │ ├── partials │ │ ├── categories-box.blade.php │ │ └── search-box.blade.php │ └── show.blade.php │ ├── profile │ ├── delete-user-form.blade.php │ ├── logout-other-browser-sessions-form.blade.php │ ├── show.blade.php │ ├── two-factor-authentication-form.blade.php │ ├── update-password-form.blade.php │ └── update-profile-information-form.blade.php │ └── terms.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── ApiTokenPermissionsTest.php │ ├── AuthenticationTest.php │ ├── BrowserSessionsTest.php │ ├── CreateApiTokenTest.php │ ├── DeleteAccountTest.php │ ├── DeleteApiTokenTest.php │ ├── EmailVerificationTest.php │ ├── ExampleTest.php │ ├── PasswordConfirmationTest.php │ ├── PasswordResetTest.php │ ├── ProfileInformationTest.php │ ├── RegistrationTest.php │ ├── TwoFactorAuthenticationSettingsTest.php │ └── UpdatePasswordTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/README.md -------------------------------------------------------------------------------- /app/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Actions/Fortify/CreateNewUser.php -------------------------------------------------------------------------------- /app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Actions/Fortify/PasswordValidationRules.php -------------------------------------------------------------------------------- /app/Actions/Fortify/ResetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Actions/Fortify/ResetUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Actions/Fortify/UpdateUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserProfileInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Actions/Fortify/UpdateUserProfileInformation.php -------------------------------------------------------------------------------- /app/Actions/Jetstream/DeleteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Actions/Jetstream/DeleteUser.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/CategoryResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource/Pages/CreateCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/CategoryResource/Pages/CreateCategory.php -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource/Pages/EditCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/CategoryResource/Pages/EditCategory.php -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource/Pages/ListCategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/CategoryResource/Pages/ListCategories.php -------------------------------------------------------------------------------- /app/Filament/Resources/CommentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/CommentResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/CommentResource/Pages/CreateComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/CommentResource/Pages/CreateComment.php -------------------------------------------------------------------------------- /app/Filament/Resources/CommentResource/Pages/EditComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/CommentResource/Pages/EditComment.php -------------------------------------------------------------------------------- /app/Filament/Resources/CommentResource/Pages/ListComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/CommentResource/Pages/ListComments.php -------------------------------------------------------------------------------- /app/Filament/Resources/CommentResource/Widgets/LatestCommentsWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/CommentResource/Widgets/LatestCommentsWidget.php -------------------------------------------------------------------------------- /app/Filament/Resources/PostResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/PostResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/PostResource/Pages/CreatePost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/PostResource/Pages/CreatePost.php -------------------------------------------------------------------------------- /app/Filament/Resources/PostResource/Pages/EditPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/PostResource/Pages/EditPost.php -------------------------------------------------------------------------------- /app/Filament/Resources/PostResource/Pages/ListPosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/PostResource/Pages/ListPosts.php -------------------------------------------------------------------------------- /app/Filament/Resources/PostResource/RelationManagers/CommentsRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/PostResource/RelationManagers/CommentsRelationManager.php -------------------------------------------------------------------------------- /app/Filament/Resources/PostResource/Widgets/PostsPerMonthChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/PostResource/Widgets/PostsPerMonthChart.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/UserResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/CreateUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/UserResource/Pages/CreateUser.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/EditUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/UserResource/Pages/EditUser.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/ListUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/UserResource/Pages/ListUsers.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Widgets/UserStatsWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Filament/Resources/UserResource/Widgets/UserStatsWidget.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Http/Controllers/PostController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Http/Middleware/SetLocale.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Livewire/LikeButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Livewire/LikeButton.php -------------------------------------------------------------------------------- /app/Livewire/PostComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Livewire/PostComments.php -------------------------------------------------------------------------------- /app/Livewire/PostList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Livewire/PostList.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Models/Comment.php -------------------------------------------------------------------------------- /app/Models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Models/Post.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Policies/CategoryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Policies/CategoryPolicy.php -------------------------------------------------------------------------------- /app/Policies/PostPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Policies/PostPolicy.php -------------------------------------------------------------------------------- /app/Policies/UserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Policies/UserPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/AdminPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Providers/Filament/AdminPanelProvider.php -------------------------------------------------------------------------------- /app/Providers/FortifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Providers/FortifyServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/JetstreamServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Providers/JetstreamServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/fortify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/fortify.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/jetstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/jetstream.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/factories/CategoryFactory.php -------------------------------------------------------------------------------- /database/factories/PostFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/factories/PostFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_06_121600_create_sessions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/migrations/2023_09_06_121600_create_sessions_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_08_133049_create_posts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/migrations/2023_09_08_133049_create_posts_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_08_133104_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/migrations/2023_09_08_133104_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_08_133145_create_category_post_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/migrations/2023_09_08_133145_create_category_post_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_17_160342_create_post_like_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/migrations/2023_09_17_160342_create_post_like_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_25_045944_create_comments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/migrations/2023_09_25_045944_create_comments_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_30_090231_add_role_to_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/migrations/2023_09_30_090231_add_role_to_users.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/lang/en/blog.php -------------------------------------------------------------------------------- /lang/en/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/lang/en/home.php -------------------------------------------------------------------------------- /lang/en/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/lang/en/menu.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /lang/fr/blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/lang/fr/blog.php -------------------------------------------------------------------------------- /lang/fr/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/lang/fr/home.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/filament/filament/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/css/filament/filament/app.css -------------------------------------------------------------------------------- /public/css/filament/forms/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/css/filament/forms/forms.css -------------------------------------------------------------------------------- /public/css/filament/support/support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/css/filament/support/support.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/filament/filament/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/filament/app.js -------------------------------------------------------------------------------- /public/js/filament/filament/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/filament/echo.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/color-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/forms/components/color-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/date-time-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/forms/components/date-time-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/forms/components/file-upload.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/key-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/forms/components/key-value.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/markdown-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/forms/components/markdown-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/rich-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/forms/components/rich-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/forms/components/select.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/tags-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/forms/components/tags-input.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/forms/components/textarea.js -------------------------------------------------------------------------------- /public/js/filament/notifications/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/notifications/notifications.js -------------------------------------------------------------------------------- /public/js/filament/support/async-alpine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/support/async-alpine.js -------------------------------------------------------------------------------- /public/js/filament/support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/support/support.js -------------------------------------------------------------------------------- /public/js/filament/tables/components/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/tables/components/table.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/widgets/components/chart.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/stats-overview/stat/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/public/js/filament/widgets/components/stats-overview/stat/chart.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/markdown/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/markdown/policy.md -------------------------------------------------------------------------------- /resources/markdown/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/markdown/terms.md -------------------------------------------------------------------------------- /resources/views/api/api-token-manager.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/api/api-token-manager.blade.php -------------------------------------------------------------------------------- /resources/views/api/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/api/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/two-factor-challenge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/auth/two-factor-challenge.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/components/action-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/action-message.blade.php -------------------------------------------------------------------------------- /resources/views/components/action-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/action-section.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-mark.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/application-mark.blade.php -------------------------------------------------------------------------------- /resources/views/components/authentication-card-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/authentication-card-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/authentication-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/authentication-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/badge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/badge.blade.php -------------------------------------------------------------------------------- /resources/views/components/banner.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/banner.blade.php -------------------------------------------------------------------------------- /resources/views/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/components/checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/checkbox.blade.php -------------------------------------------------------------------------------- /resources/views/components/confirmation-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/confirmation-modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/confirms-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/confirms-password.blade.php -------------------------------------------------------------------------------- /resources/views/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/danger-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/dialog-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/dialog-modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/form-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/form-section.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/input-error.blade.php -------------------------------------------------------------------------------- /resources/views/components/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/input.blade.php -------------------------------------------------------------------------------- /resources/views/components/label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/label.blade.php -------------------------------------------------------------------------------- /resources/views/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/posts/author.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/posts/author.blade.php -------------------------------------------------------------------------------- /resources/views/components/posts/category-badge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/posts/category-badge.blade.php -------------------------------------------------------------------------------- /resources/views/components/posts/post-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/posts/post-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/posts/post-item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/posts/post-item.blade.php -------------------------------------------------------------------------------- /resources/views/components/secondary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/secondary-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/section-border.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/section-border.blade.php -------------------------------------------------------------------------------- /resources/views/components/section-title.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/section-title.blade.php -------------------------------------------------------------------------------- /resources/views/components/switchable-team.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/switchable-team.blade.php -------------------------------------------------------------------------------- /resources/views/components/validation-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/components/validation-errors.blade.php -------------------------------------------------------------------------------- /resources/views/emails/team-invitation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/emails/team-invitation.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/layouts/partials/footer.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/header-right-auth.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/layouts/partials/header-right-auth.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/header-right-guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/layouts/partials/header-right-guest.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/layouts/partials/header.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/like-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/livewire/like-button.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/post-comments.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/livewire/post-comments.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/post-list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/livewire/post-list.blade.php -------------------------------------------------------------------------------- /resources/views/navigation-menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/navigation-menu.blade.php -------------------------------------------------------------------------------- /resources/views/policy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/policy.blade.php -------------------------------------------------------------------------------- /resources/views/posts/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/posts/index.blade.php -------------------------------------------------------------------------------- /resources/views/posts/partials/categories-box.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/posts/partials/categories-box.blade.php -------------------------------------------------------------------------------- /resources/views/posts/partials/search-box.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/posts/partials/search-box.blade.php -------------------------------------------------------------------------------- /resources/views/posts/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/posts/show.blade.php -------------------------------------------------------------------------------- /resources/views/profile/delete-user-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/profile/delete-user-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/logout-other-browser-sessions-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/profile/logout-other-browser-sessions-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/profile/show.blade.php -------------------------------------------------------------------------------- /resources/views/profile/two-factor-authentication-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/profile/two-factor-authentication-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/update-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/profile/update-password-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/update-profile-information-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/profile/update-profile-information-form.blade.php -------------------------------------------------------------------------------- /resources/views/terms.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/resources/views/terms.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ApiTokenPermissionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Feature/ApiTokenPermissionsTest.php -------------------------------------------------------------------------------- /tests/Feature/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Feature/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/BrowserSessionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Feature/BrowserSessionsTest.php -------------------------------------------------------------------------------- /tests/Feature/CreateApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Feature/CreateApiTokenTest.php -------------------------------------------------------------------------------- /tests/Feature/DeleteAccountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Feature/DeleteAccountTest.php -------------------------------------------------------------------------------- /tests/Feature/DeleteApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Feature/DeleteApiTokenTest.php -------------------------------------------------------------------------------- /tests/Feature/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Feature/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Feature/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Feature/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileInformationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Feature/ProfileInformationTest.php -------------------------------------------------------------------------------- /tests/Feature/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Feature/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/TwoFactorAuthenticationSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Feature/TwoFactorAuthenticationSettingsTest.php -------------------------------------------------------------------------------- /tests/Feature/UpdatePasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Feature/UpdatePasswordTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/laravel-blog-project/HEAD/vite.config.js --------------------------------------------------------------------------------