├── .DS_Store ├── .gitignore ├── .phpunit.result.cache ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── composer.json ├── composer.lock ├── config └── filamentblog.php ├── database ├── factories │ ├── CategoryFactory.php │ ├── CategoryPostFactory.php │ ├── CommentFactory.php │ ├── NewsLetterFactory.php │ ├── PostFactory.php │ ├── PostTagFactory.php │ ├── SeoDetailFactory.php │ ├── SettingFactory.php │ ├── ShareSnippetFactory.php │ ├── TagFactory.php │ └── UserFactory.php └── migrations │ ├── 2024_05_11_152936_create_add_prefix_on_all_blog_tables.php │ └── create_blog_tables.php.stub ├── images └── landing.png ├── phpunit.xml ├── resources └── views │ ├── blogs │ ├── all-post.blade.php │ ├── category-post.blade.php │ ├── index.blade.php │ ├── search.blade.php │ ├── show.blade.php │ └── tag-post.blade.php │ ├── components │ ├── card.blade.php │ ├── comment.blade.php │ ├── feature-card.blade.php │ ├── header-category.blade.php │ ├── header.blade.php │ └── recent-post.blade.php │ ├── layouts │ └── app.blade.php │ ├── mails │ └── blog-published.blade.php │ └── tables │ └── columns │ └── user-photo-name.blade.php ├── routes └── web.php ├── src ├── Blog.php ├── Components │ ├── Card.php │ ├── Comment.php │ ├── FeatureCard.php │ ├── Header.php │ ├── HeaderCategory.php │ ├── Layout.php │ └── RecentPost.php ├── Concerns │ └── HasCategories.php ├── Console │ └── Commands │ │ └── RenameTablesCommand.php ├── Enums │ └── PostStatus.php ├── EventServiceProvider.php ├── Events │ └── BlogPublished.php ├── Exceptions │ └── CannotSendEmail.php ├── Facades │ └── SEOMeta.php ├── FilamentBlogServiceProvider.php ├── Http │ └── Controllers │ │ ├── CategoryController.php │ │ ├── CommentController.php │ │ ├── Controller.php │ │ ├── PostController.php │ │ └── TagController.php ├── Jobs │ └── PostScheduleJob.php ├── Listeners │ └── SendBlogPublishedNotification.php ├── Mails │ └── BlogPublished.php ├── Models │ ├── Category.php │ ├── CategoryPost.php │ ├── Comment.php │ ├── NewsLetter.php │ ├── Post.php │ ├── PostTag.php │ ├── SeoDetail.php │ ├── Setting.php │ ├── ShareSnippet.php │ ├── Tag.php │ └── User.php ├── Resources │ ├── Categories │ │ ├── CategoryResource.php │ │ ├── Pages │ │ │ ├── CreateCategory.php │ │ │ ├── EditCategory.php │ │ │ ├── ListCategories.php │ │ │ └── ViewCategory.php │ │ ├── RelationManagers │ │ │ └── PostsRelationManager.php │ │ ├── Schemas │ │ │ ├── CategoryForm.php │ │ │ └── CategoryInfolist.php │ │ └── Tables │ │ │ └── CategoriesTable.php │ ├── Comments │ │ ├── CommentResource.php │ │ ├── Pages │ │ │ ├── CreateComment.php │ │ │ ├── EditComment.php │ │ │ └── ListComments.php │ │ ├── Schemas │ │ │ ├── CommentForm.php │ │ │ └── CommentInfolist.php │ │ └── Tables │ │ │ └── CommentsTable.php │ ├── Newsletters │ │ ├── NewsletterResource.php │ │ ├── Pages │ │ │ ├── CreateNewsletter.php │ │ │ ├── EditNewsletter.php │ │ │ └── ListNewsletters.php │ │ ├── Schemas │ │ │ └── NewsletterForm.php │ │ └── Tables │ │ │ └── NewslettersTable.php │ ├── Posts │ │ ├── Pages │ │ │ ├── CreatePost.php │ │ │ ├── EditPost.php │ │ │ ├── ListPosts.php │ │ │ ├── ManagePostComments.php │ │ │ ├── ManagePostSeoDetail.php │ │ │ └── ViewPost.php │ │ ├── PostResource.php │ │ ├── Schemas │ │ │ ├── PostForm.php │ │ │ └── PostInfolist.php │ │ ├── Tables │ │ │ └── PostsTable.php │ │ └── Widgets │ │ │ └── BlogPostPublishedChart.php │ ├── SeoDetails │ │ ├── Pages │ │ │ ├── CreateSeoDetail.php │ │ │ ├── EditSeoDetail.php │ │ │ └── ListSeoDetails.php │ │ ├── Schemas │ │ │ └── SeoDetailForm.php │ │ ├── SeoDetailResource.php │ │ └── Tables │ │ │ └── SeoDetailsTable.php │ ├── Settings │ │ ├── Pages │ │ │ ├── CreateSetting.php │ │ │ ├── EditSetting.php │ │ │ └── ListSettings.php │ │ ├── Schemas │ │ │ └── SettingForm.php │ │ ├── SettingResource.php │ │ └── Tables │ │ │ └── SettingsTable.php │ ├── ShareSnippets │ │ ├── Pages │ │ │ ├── CreateShareSnippet.php │ │ │ ├── EditShareSnippet.php │ │ │ └── ListShareSnippets.php │ │ ├── Schemas │ │ │ └── ShareSnippetForm.php │ │ ├── ShareSnippetResource.php │ │ └── Tables │ │ │ └── ShareSnippetsTable.php │ └── Tags │ │ ├── Pages │ │ ├── EditTag.php │ │ └── ListTags.php │ │ ├── Schemas │ │ └── TagForm.php │ │ ├── Tables │ │ └── TagsTable.php │ │ └── TagResource.php ├── SEOMeta.php ├── Services │ └── SEOService.php ├── Tables │ └── Columns │ │ └── UserPhotoName.php └── Traits │ └── HasBlog.php └── tests ├── Feature ├── ExampleTest.php ├── Models │ ├── CategoryTest.php │ ├── CommentTest.php │ ├── PostTest.php │ ├── SeoDeatilTest.php │ └── TagTest.php ├── NewPostPublishedMailTest.php ├── Pages │ ├── AllPageTest.php │ ├── CategoryPageTest.php │ ├── HomePageTest.php │ ├── PostDetailsPageTest.php │ ├── SearchPageTest.php │ └── TagPageTest.php ├── UserCommentTest.php └── UserNewsLetterSubscriptionTest.php ├── Pest.php ├── TestCase.php └── Unit └── ExampleTest.php /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/.gitignore -------------------------------------------------------------------------------- /.phpunit.result.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/.phpunit.result.cache -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/composer.lock -------------------------------------------------------------------------------- /config/filamentblog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/config/filamentblog.php -------------------------------------------------------------------------------- /database/factories/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/database/factories/CategoryFactory.php -------------------------------------------------------------------------------- /database/factories/CategoryPostFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/database/factories/CategoryPostFactory.php -------------------------------------------------------------------------------- /database/factories/CommentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/database/factories/CommentFactory.php -------------------------------------------------------------------------------- /database/factories/NewsLetterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/database/factories/NewsLetterFactory.php -------------------------------------------------------------------------------- /database/factories/PostFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/database/factories/PostFactory.php -------------------------------------------------------------------------------- /database/factories/PostTagFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/database/factories/PostTagFactory.php -------------------------------------------------------------------------------- /database/factories/SeoDetailFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/database/factories/SeoDetailFactory.php -------------------------------------------------------------------------------- /database/factories/SettingFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/database/factories/SettingFactory.php -------------------------------------------------------------------------------- /database/factories/ShareSnippetFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/database/factories/ShareSnippetFactory.php -------------------------------------------------------------------------------- /database/factories/TagFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/database/factories/TagFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2024_05_11_152936_create_add_prefix_on_all_blog_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/database/migrations/2024_05_11_152936_create_add_prefix_on_all_blog_tables.php -------------------------------------------------------------------------------- /database/migrations/create_blog_tables.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/database/migrations/create_blog_tables.php.stub -------------------------------------------------------------------------------- /images/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/images/landing.png -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/phpunit.xml -------------------------------------------------------------------------------- /resources/views/blogs/all-post.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/blogs/all-post.blade.php -------------------------------------------------------------------------------- /resources/views/blogs/category-post.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/blogs/category-post.blade.php -------------------------------------------------------------------------------- /resources/views/blogs/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/blogs/index.blade.php -------------------------------------------------------------------------------- /resources/views/blogs/search.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/blogs/search.blade.php -------------------------------------------------------------------------------- /resources/views/blogs/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/blogs/show.blade.php -------------------------------------------------------------------------------- /resources/views/blogs/tag-post.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/blogs/tag-post.blade.php -------------------------------------------------------------------------------- /resources/views/components/card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/components/card.blade.php -------------------------------------------------------------------------------- /resources/views/components/comment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/components/comment.blade.php -------------------------------------------------------------------------------- /resources/views/components/feature-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/components/feature-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/header-category.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/components/header-category.blade.php -------------------------------------------------------------------------------- /resources/views/components/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/components/header.blade.php -------------------------------------------------------------------------------- /resources/views/components/recent-post.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/components/recent-post.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/mails/blog-published.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/mails/blog-published.blade.php -------------------------------------------------------------------------------- /resources/views/tables/columns/user-photo-name.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/resources/views/tables/columns/user-photo-name.blade.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/routes/web.php -------------------------------------------------------------------------------- /src/Blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Blog.php -------------------------------------------------------------------------------- /src/Components/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Components/Card.php -------------------------------------------------------------------------------- /src/Components/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Components/Comment.php -------------------------------------------------------------------------------- /src/Components/FeatureCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Components/FeatureCard.php -------------------------------------------------------------------------------- /src/Components/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Components/Header.php -------------------------------------------------------------------------------- /src/Components/HeaderCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Components/HeaderCategory.php -------------------------------------------------------------------------------- /src/Components/Layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Components/Layout.php -------------------------------------------------------------------------------- /src/Components/RecentPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Components/RecentPost.php -------------------------------------------------------------------------------- /src/Concerns/HasCategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Concerns/HasCategories.php -------------------------------------------------------------------------------- /src/Console/Commands/RenameTablesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Console/Commands/RenameTablesCommand.php -------------------------------------------------------------------------------- /src/Enums/PostStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Enums/PostStatus.php -------------------------------------------------------------------------------- /src/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/EventServiceProvider.php -------------------------------------------------------------------------------- /src/Events/BlogPublished.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Events/BlogPublished.php -------------------------------------------------------------------------------- /src/Exceptions/CannotSendEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Exceptions/CannotSendEmail.php -------------------------------------------------------------------------------- /src/Facades/SEOMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Facades/SEOMeta.php -------------------------------------------------------------------------------- /src/FilamentBlogServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/FilamentBlogServiceProvider.php -------------------------------------------------------------------------------- /src/Http/Controllers/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Http/Controllers/CategoryController.php -------------------------------------------------------------------------------- /src/Http/Controllers/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Http/Controllers/CommentController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /src/Http/Controllers/PostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Http/Controllers/PostController.php -------------------------------------------------------------------------------- /src/Http/Controllers/TagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Http/Controllers/TagController.php -------------------------------------------------------------------------------- /src/Jobs/PostScheduleJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Jobs/PostScheduleJob.php -------------------------------------------------------------------------------- /src/Listeners/SendBlogPublishedNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Listeners/SendBlogPublishedNotification.php -------------------------------------------------------------------------------- /src/Mails/BlogPublished.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Mails/BlogPublished.php -------------------------------------------------------------------------------- /src/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Models/Category.php -------------------------------------------------------------------------------- /src/Models/CategoryPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Models/CategoryPost.php -------------------------------------------------------------------------------- /src/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Models/Comment.php -------------------------------------------------------------------------------- /src/Models/NewsLetter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Models/NewsLetter.php -------------------------------------------------------------------------------- /src/Models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Models/Post.php -------------------------------------------------------------------------------- /src/Models/PostTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Models/PostTag.php -------------------------------------------------------------------------------- /src/Models/SeoDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Models/SeoDetail.php -------------------------------------------------------------------------------- /src/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Models/Setting.php -------------------------------------------------------------------------------- /src/Models/ShareSnippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Models/ShareSnippet.php -------------------------------------------------------------------------------- /src/Models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Models/Tag.php -------------------------------------------------------------------------------- /src/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Models/User.php -------------------------------------------------------------------------------- /src/Resources/Categories/CategoryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Categories/CategoryResource.php -------------------------------------------------------------------------------- /src/Resources/Categories/Pages/CreateCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Categories/Pages/CreateCategory.php -------------------------------------------------------------------------------- /src/Resources/Categories/Pages/EditCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Categories/Pages/EditCategory.php -------------------------------------------------------------------------------- /src/Resources/Categories/Pages/ListCategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Categories/Pages/ListCategories.php -------------------------------------------------------------------------------- /src/Resources/Categories/Pages/ViewCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Categories/Pages/ViewCategory.php -------------------------------------------------------------------------------- /src/Resources/Categories/RelationManagers/PostsRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Categories/RelationManagers/PostsRelationManager.php -------------------------------------------------------------------------------- /src/Resources/Categories/Schemas/CategoryForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Categories/Schemas/CategoryForm.php -------------------------------------------------------------------------------- /src/Resources/Categories/Schemas/CategoryInfolist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Categories/Schemas/CategoryInfolist.php -------------------------------------------------------------------------------- /src/Resources/Categories/Tables/CategoriesTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Categories/Tables/CategoriesTable.php -------------------------------------------------------------------------------- /src/Resources/Comments/CommentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Comments/CommentResource.php -------------------------------------------------------------------------------- /src/Resources/Comments/Pages/CreateComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Comments/Pages/CreateComment.php -------------------------------------------------------------------------------- /src/Resources/Comments/Pages/EditComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Comments/Pages/EditComment.php -------------------------------------------------------------------------------- /src/Resources/Comments/Pages/ListComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Comments/Pages/ListComments.php -------------------------------------------------------------------------------- /src/Resources/Comments/Schemas/CommentForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Comments/Schemas/CommentForm.php -------------------------------------------------------------------------------- /src/Resources/Comments/Schemas/CommentInfolist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Comments/Schemas/CommentInfolist.php -------------------------------------------------------------------------------- /src/Resources/Comments/Tables/CommentsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Comments/Tables/CommentsTable.php -------------------------------------------------------------------------------- /src/Resources/Newsletters/NewsletterResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Newsletters/NewsletterResource.php -------------------------------------------------------------------------------- /src/Resources/Newsletters/Pages/CreateNewsletter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Newsletters/Pages/CreateNewsletter.php -------------------------------------------------------------------------------- /src/Resources/Newsletters/Pages/EditNewsletter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Newsletters/Pages/EditNewsletter.php -------------------------------------------------------------------------------- /src/Resources/Newsletters/Pages/ListNewsletters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Newsletters/Pages/ListNewsletters.php -------------------------------------------------------------------------------- /src/Resources/Newsletters/Schemas/NewsletterForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Newsletters/Schemas/NewsletterForm.php -------------------------------------------------------------------------------- /src/Resources/Newsletters/Tables/NewslettersTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Newsletters/Tables/NewslettersTable.php -------------------------------------------------------------------------------- /src/Resources/Posts/Pages/CreatePost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Posts/Pages/CreatePost.php -------------------------------------------------------------------------------- /src/Resources/Posts/Pages/EditPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Posts/Pages/EditPost.php -------------------------------------------------------------------------------- /src/Resources/Posts/Pages/ListPosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Posts/Pages/ListPosts.php -------------------------------------------------------------------------------- /src/Resources/Posts/Pages/ManagePostComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Posts/Pages/ManagePostComments.php -------------------------------------------------------------------------------- /src/Resources/Posts/Pages/ManagePostSeoDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Posts/Pages/ManagePostSeoDetail.php -------------------------------------------------------------------------------- /src/Resources/Posts/Pages/ViewPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Posts/Pages/ViewPost.php -------------------------------------------------------------------------------- /src/Resources/Posts/PostResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Posts/PostResource.php -------------------------------------------------------------------------------- /src/Resources/Posts/Schemas/PostForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Posts/Schemas/PostForm.php -------------------------------------------------------------------------------- /src/Resources/Posts/Schemas/PostInfolist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Posts/Schemas/PostInfolist.php -------------------------------------------------------------------------------- /src/Resources/Posts/Tables/PostsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Posts/Tables/PostsTable.php -------------------------------------------------------------------------------- /src/Resources/Posts/Widgets/BlogPostPublishedChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Posts/Widgets/BlogPostPublishedChart.php -------------------------------------------------------------------------------- /src/Resources/SeoDetails/Pages/CreateSeoDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/SeoDetails/Pages/CreateSeoDetail.php -------------------------------------------------------------------------------- /src/Resources/SeoDetails/Pages/EditSeoDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/SeoDetails/Pages/EditSeoDetail.php -------------------------------------------------------------------------------- /src/Resources/SeoDetails/Pages/ListSeoDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/SeoDetails/Pages/ListSeoDetails.php -------------------------------------------------------------------------------- /src/Resources/SeoDetails/Schemas/SeoDetailForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/SeoDetails/Schemas/SeoDetailForm.php -------------------------------------------------------------------------------- /src/Resources/SeoDetails/SeoDetailResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/SeoDetails/SeoDetailResource.php -------------------------------------------------------------------------------- /src/Resources/SeoDetails/Tables/SeoDetailsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/SeoDetails/Tables/SeoDetailsTable.php -------------------------------------------------------------------------------- /src/Resources/Settings/Pages/CreateSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Settings/Pages/CreateSetting.php -------------------------------------------------------------------------------- /src/Resources/Settings/Pages/EditSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Settings/Pages/EditSetting.php -------------------------------------------------------------------------------- /src/Resources/Settings/Pages/ListSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Settings/Pages/ListSettings.php -------------------------------------------------------------------------------- /src/Resources/Settings/Schemas/SettingForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Settings/Schemas/SettingForm.php -------------------------------------------------------------------------------- /src/Resources/Settings/SettingResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Settings/SettingResource.php -------------------------------------------------------------------------------- /src/Resources/Settings/Tables/SettingsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Settings/Tables/SettingsTable.php -------------------------------------------------------------------------------- /src/Resources/ShareSnippets/Pages/CreateShareSnippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/ShareSnippets/Pages/CreateShareSnippet.php -------------------------------------------------------------------------------- /src/Resources/ShareSnippets/Pages/EditShareSnippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/ShareSnippets/Pages/EditShareSnippet.php -------------------------------------------------------------------------------- /src/Resources/ShareSnippets/Pages/ListShareSnippets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/ShareSnippets/Pages/ListShareSnippets.php -------------------------------------------------------------------------------- /src/Resources/ShareSnippets/Schemas/ShareSnippetForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/ShareSnippets/Schemas/ShareSnippetForm.php -------------------------------------------------------------------------------- /src/Resources/ShareSnippets/ShareSnippetResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/ShareSnippets/ShareSnippetResource.php -------------------------------------------------------------------------------- /src/Resources/ShareSnippets/Tables/ShareSnippetsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/ShareSnippets/Tables/ShareSnippetsTable.php -------------------------------------------------------------------------------- /src/Resources/Tags/Pages/EditTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Tags/Pages/EditTag.php -------------------------------------------------------------------------------- /src/Resources/Tags/Pages/ListTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Tags/Pages/ListTags.php -------------------------------------------------------------------------------- /src/Resources/Tags/Schemas/TagForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Tags/Schemas/TagForm.php -------------------------------------------------------------------------------- /src/Resources/Tags/Tables/TagsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Tags/Tables/TagsTable.php -------------------------------------------------------------------------------- /src/Resources/Tags/TagResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Resources/Tags/TagResource.php -------------------------------------------------------------------------------- /src/SEOMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/SEOMeta.php -------------------------------------------------------------------------------- /src/Services/SEOService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Services/SEOService.php -------------------------------------------------------------------------------- /src/Tables/Columns/UserPhotoName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Tables/Columns/UserPhotoName.php -------------------------------------------------------------------------------- /src/Traits/HasBlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/src/Traits/HasBlog.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/Models/CategoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefireflytech/filament-blog/HEAD/tests/Feature/Models/CategoryTest.php -------------------------------------------------------------------------------- /tests/Feature/Models/CommentTest.php: -------------------------------------------------------------------------------- 1 |