├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Filament │ ├── Pages │ │ └── Auth │ │ │ └── EditProfile.php │ └── Resources │ │ ├── ArticleResource.php │ │ ├── ArticleResource │ │ └── Pages │ │ │ ├── CreateArticle.php │ │ │ ├── EditArticle.php │ │ │ └── ListArticles.php │ │ ├── SeriesResource.php │ │ ├── SeriesResource │ │ └── Pages │ │ │ ├── CreateSeries.php │ │ │ ├── EditSeries.php │ │ │ └── ListSeries.php │ │ ├── SnippetResource.php │ │ ├── SnippetResource │ │ └── Pages │ │ │ ├── CreateSnippet.php │ │ │ ├── EditSnippet.php │ │ │ └── ListSnippets.php │ │ ├── TopicResource.php │ │ └── TopicResource │ │ └── Pages │ │ ├── CreateTopic.php │ │ ├── EditTopic.php │ │ └── ListTopics.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── Controller.php │ │ └── ProfileController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── Auth │ │ └── LoginRequest.php │ │ └── ProfileUpdateRequest.php ├── Livewire │ ├── Article │ │ ├── ListArticle.php │ │ └── SingleArticle.php │ ├── Components │ │ └── ArticleCard.php │ ├── HomePage.php │ ├── Series │ │ ├── ListSeries.php │ │ └── SingleSeries.php │ ├── Snippet │ │ ├── ListSnippet.php │ │ └── SingleSnippet.php │ └── Topic │ │ ├── ListTopic.php │ │ └── SingleTopic.php ├── Models │ ├── Article.php │ ├── ArticleView.php │ ├── Series.php │ ├── Snippet.php │ ├── SnippetItem.php │ ├── Topic.php │ └── User.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── Filament │ │ └── AdminPanelProvider.php │ └── RouteServiceProvider.php ├── Services │ └── MarkdownRenderer.php ├── View │ └── Components │ │ ├── AppLayout.php │ │ └── GuestLayout.php └── helpers.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── bacaan.php ├── breadcrumbs.php ├── broadcasting.php ├── cache.php ├── comments.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── markdown.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2023_09_13_023221_create_series_table.php │ ├── 2023_09_13_023427_create_articles_table.php │ ├── 2023_09_13_023556_create_topics_table.php │ ├── 2023_09_14_230818_create_article_topic_table.php │ ├── 2023_09_15_220759_create_article_views_table.php │ ├── 2023_09_21_232214_create_comments_tables.php │ ├── 2023_10_02_092606_create_topicables_table.php │ ├── 2023_10_02_093035_create_snippets_table.php │ ├── 2023_10_02_093230_create_snippet_items_table.php │ └── 2023_10_13_084412_add_episode_on_artciles_table.php └── seeders │ ├── DatabaseSeeder.php │ ├── TopicSeeder.php │ └── UserSeeder.php ├── deploy.php ├── lang └── vendor │ └── comments │ ├── de │ ├── comments.php │ └── notifications.php │ ├── en │ ├── comments.php │ └── notifications.php │ ├── es │ ├── comments.php │ └── notifications.php │ ├── fr │ ├── comments.php │ └── notifications.php │ ├── id │ ├── comments.php │ └── notifications.php │ ├── it │ ├── comments.php │ └── notifications.php │ ├── nl │ ├── comments.php │ └── notifications.php │ └── pt_PT │ ├── comments.php │ └── notifications.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .DS_Store ├── .htaccess ├── assets │ └── branding.jpg ├── css │ └── filament │ │ ├── filament │ │ └── app.css │ │ ├── forms │ │ └── forms.css │ │ └── support │ │ └── support.css ├── favicon.ico ├── icons │ ├── book-filled.png │ └── book.png ├── 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 └── views │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ └── verify-email.blade.php │ ├── components │ ├── application-logo.blade.php │ ├── auth-session-status.blade.php │ ├── danger-button.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── input-error.blade.php │ ├── input-label.blade.php │ ├── layouts │ │ ├── app.blade.php │ │ ├── partials │ │ │ ├── footer.blade.php │ │ │ ├── navbar.blade.php │ │ │ └── seo.blade.php │ │ ├── three-columns.blade.php │ │ └── two-columns-right.blade.php │ ├── modal.blade.php │ ├── nav-link.blade.php │ ├── primary-button.blade.php │ ├── responsive-nav-link.blade.php │ ├── secondary-button.blade.php │ └── text-input.blade.php │ ├── dashboard.blade.php │ ├── layouts │ ├── app.blade.php │ ├── guest.blade.php │ └── navigation.blade.php │ ├── livewire │ ├── article │ │ ├── list-article.blade.php │ │ └── single-article.blade.php │ ├── components │ │ └── article-card.blade.php │ ├── home-page.blade.php │ ├── series │ │ ├── list-series.blade.php │ │ └── single-series.blade.php │ ├── snippet │ │ ├── list-snippet.blade.php │ │ └── single-snippet.blade.php │ └── topic │ │ ├── list-topic.blade.php │ │ └── single-topic.blade.php │ ├── profile │ ├── edit.blade.php │ └── partials │ │ ├── delete-user-form.blade.php │ │ ├── update-password-form.blade.php │ │ └── update-profile-information-form.blade.php │ ├── vendor │ ├── breadcrumbs │ │ ├── bootstrap4.blade.php │ │ ├── bootstrap5.blade.php │ │ ├── bulma.blade.php │ │ ├── foundation6.blade.php │ │ ├── json-ld.php │ │ ├── materialize.blade.php │ │ ├── tailwind.blade.php │ │ └── uikit.blade.php │ ├── comments │ │ ├── components │ │ │ ├── avatar.blade.php │ │ │ ├── button.blade.php │ │ │ ├── date.blade.php │ │ │ ├── editors │ │ │ │ ├── easymde.blade.php │ │ │ │ └── textarea.blade.php │ │ │ ├── icons │ │ │ │ ├── close.blade.php │ │ │ │ ├── copy.blade.php │ │ │ │ ├── delete.blade.php │ │ │ │ ├── edit.blade.php │ │ │ │ ├── menu.blade.php │ │ │ │ └── smile.blade.php │ │ │ ├── modal.blade.php │ │ │ └── styles.blade.php │ │ ├── extraCommentHeaderActions.blade.php │ │ ├── livewire │ │ │ ├── comment.blade.php │ │ │ ├── comments.blade.php │ │ │ └── partials │ │ │ │ ├── newComment.blade.php │ │ │ │ └── replyTo.blade.php │ │ ├── mail │ │ │ ├── approvedCommentNotification.blade.php │ │ │ └── pendingCommentNotification.blade.php │ │ └── signed │ │ │ ├── approval │ │ │ ├── approveComment.blade.php │ │ │ ├── approveCommentConfirmation.blade.php │ │ │ ├── rejectComment.blade.php │ │ │ └── rejectCommentApproval.blade.php │ │ │ ├── notificationSubscription │ │ │ ├── unsubscribe.blade.php │ │ │ ├── unsubscribeAll.blade.php │ │ │ ├── unsubscribeAllApproval.blade.php │ │ │ └── unsubscribeApproval.blade.php │ │ │ └── signedLayout.blade.php │ └── livewire │ │ ├── bootstrap.blade.php │ │ ├── daisyui.blade.php │ │ ├── simple-bootstrap.blade.php │ │ ├── simple-tailwind.blade.php │ │ └── tailwind.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── auth.php ├── breadcrumbs.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 │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ └── RegistrationTest.php │ ├── ExampleTest.php │ └── ProfileTest.php ├── Pest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Filament/Pages/Auth/EditProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Pages/Auth/EditProfile.php -------------------------------------------------------------------------------- /app/Filament/Resources/ArticleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/ArticleResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/ArticleResource/Pages/CreateArticle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/ArticleResource/Pages/CreateArticle.php -------------------------------------------------------------------------------- /app/Filament/Resources/ArticleResource/Pages/EditArticle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/ArticleResource/Pages/EditArticle.php -------------------------------------------------------------------------------- /app/Filament/Resources/ArticleResource/Pages/ListArticles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/ArticleResource/Pages/ListArticles.php -------------------------------------------------------------------------------- /app/Filament/Resources/SeriesResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/SeriesResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/SeriesResource/Pages/CreateSeries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/SeriesResource/Pages/CreateSeries.php -------------------------------------------------------------------------------- /app/Filament/Resources/SeriesResource/Pages/EditSeries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/SeriesResource/Pages/EditSeries.php -------------------------------------------------------------------------------- /app/Filament/Resources/SeriesResource/Pages/ListSeries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/SeriesResource/Pages/ListSeries.php -------------------------------------------------------------------------------- /app/Filament/Resources/SnippetResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/SnippetResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/SnippetResource/Pages/CreateSnippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/SnippetResource/Pages/CreateSnippet.php -------------------------------------------------------------------------------- /app/Filament/Resources/SnippetResource/Pages/EditSnippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/SnippetResource/Pages/EditSnippet.php -------------------------------------------------------------------------------- /app/Filament/Resources/SnippetResource/Pages/ListSnippets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/SnippetResource/Pages/ListSnippets.php -------------------------------------------------------------------------------- /app/Filament/Resources/TopicResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/TopicResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/TopicResource/Pages/CreateTopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/TopicResource/Pages/CreateTopic.php -------------------------------------------------------------------------------- /app/Filament/Resources/TopicResource/Pages/EditTopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/TopicResource/Pages/EditTopic.php -------------------------------------------------------------------------------- /app/Filament/Resources/TopicResource/Pages/ListTopics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Filament/Resources/TopicResource/Pages/ListTopics.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Http/Requests/ProfileUpdateRequest.php -------------------------------------------------------------------------------- /app/Livewire/Article/ListArticle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Livewire/Article/ListArticle.php -------------------------------------------------------------------------------- /app/Livewire/Article/SingleArticle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Livewire/Article/SingleArticle.php -------------------------------------------------------------------------------- /app/Livewire/Components/ArticleCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Livewire/Components/ArticleCard.php -------------------------------------------------------------------------------- /app/Livewire/HomePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Livewire/HomePage.php -------------------------------------------------------------------------------- /app/Livewire/Series/ListSeries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Livewire/Series/ListSeries.php -------------------------------------------------------------------------------- /app/Livewire/Series/SingleSeries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Livewire/Series/SingleSeries.php -------------------------------------------------------------------------------- /app/Livewire/Snippet/ListSnippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Livewire/Snippet/ListSnippet.php -------------------------------------------------------------------------------- /app/Livewire/Snippet/SingleSnippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Livewire/Snippet/SingleSnippet.php -------------------------------------------------------------------------------- /app/Livewire/Topic/ListTopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Livewire/Topic/ListTopic.php -------------------------------------------------------------------------------- /app/Livewire/Topic/SingleTopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Livewire/Topic/SingleTopic.php -------------------------------------------------------------------------------- /app/Models/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Models/Article.php -------------------------------------------------------------------------------- /app/Models/ArticleView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Models/ArticleView.php -------------------------------------------------------------------------------- /app/Models/Series.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Models/Series.php -------------------------------------------------------------------------------- /app/Models/Snippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Models/Snippet.php -------------------------------------------------------------------------------- /app/Models/SnippetItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Models/SnippetItem.php -------------------------------------------------------------------------------- /app/Models/Topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Models/Topic.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/AdminPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Providers/Filament/AdminPanelProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Services/MarkdownRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/Services/MarkdownRenderer.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /app/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/app/helpers.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/bacaan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/bacaan.php -------------------------------------------------------------------------------- /config/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/breadcrumbs.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/comments.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/markdown.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/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/sayaamirul/bacaan-dev/HEAD/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/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/sayaamirul/bacaan-dev/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_13_023221_create_series_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/database/migrations/2023_09_13_023221_create_series_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_13_023427_create_articles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/database/migrations/2023_09_13_023427_create_articles_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_13_023556_create_topics_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/database/migrations/2023_09_13_023556_create_topics_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_14_230818_create_article_topic_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/database/migrations/2023_09_14_230818_create_article_topic_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_15_220759_create_article_views_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/database/migrations/2023_09_15_220759_create_article_views_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_21_232214_create_comments_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/database/migrations/2023_09_21_232214_create_comments_tables.php -------------------------------------------------------------------------------- /database/migrations/2023_10_02_092606_create_topicables_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/database/migrations/2023_10_02_092606_create_topicables_table.php -------------------------------------------------------------------------------- /database/migrations/2023_10_02_093035_create_snippets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/database/migrations/2023_10_02_093035_create_snippets_table.php -------------------------------------------------------------------------------- /database/migrations/2023_10_02_093230_create_snippet_items_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/database/migrations/2023_10_02_093230_create_snippet_items_table.php -------------------------------------------------------------------------------- /database/migrations/2023_10_13_084412_add_episode_on_artciles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/database/migrations/2023_10_13_084412_add_episode_on_artciles_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/TopicSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/database/seeders/TopicSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /deploy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/deploy.php -------------------------------------------------------------------------------- /lang/vendor/comments/de/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/de/comments.php -------------------------------------------------------------------------------- /lang/vendor/comments/de/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/de/notifications.php -------------------------------------------------------------------------------- /lang/vendor/comments/en/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/en/comments.php -------------------------------------------------------------------------------- /lang/vendor/comments/en/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/en/notifications.php -------------------------------------------------------------------------------- /lang/vendor/comments/es/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/es/comments.php -------------------------------------------------------------------------------- /lang/vendor/comments/es/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/es/notifications.php -------------------------------------------------------------------------------- /lang/vendor/comments/fr/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/fr/comments.php -------------------------------------------------------------------------------- /lang/vendor/comments/fr/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/fr/notifications.php -------------------------------------------------------------------------------- /lang/vendor/comments/id/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/id/comments.php -------------------------------------------------------------------------------- /lang/vendor/comments/id/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/id/notifications.php -------------------------------------------------------------------------------- /lang/vendor/comments/it/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/it/comments.php -------------------------------------------------------------------------------- /lang/vendor/comments/it/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/it/notifications.php -------------------------------------------------------------------------------- /lang/vendor/comments/nl/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/nl/comments.php -------------------------------------------------------------------------------- /lang/vendor/comments/nl/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/nl/notifications.php -------------------------------------------------------------------------------- /lang/vendor/comments/pt_PT/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/pt_PT/comments.php -------------------------------------------------------------------------------- /lang/vendor/comments/pt_PT/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/lang/vendor/comments/pt_PT/notifications.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/branding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/assets/branding.jpg -------------------------------------------------------------------------------- /public/css/filament/filament/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/css/filament/filament/app.css -------------------------------------------------------------------------------- /public/css/filament/forms/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/css/filament/forms/forms.css -------------------------------------------------------------------------------- /public/css/filament/support/support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/css/filament/support/support.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icons/book-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/icons/book-filled.png -------------------------------------------------------------------------------- /public/icons/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/icons/book.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/filament/filament/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/filament/app.js -------------------------------------------------------------------------------- /public/js/filament/filament/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/filament/echo.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/color-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/forms/components/color-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/date-time-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/forms/components/date-time-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/forms/components/file-upload.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/key-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/forms/components/key-value.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/markdown-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/forms/components/markdown-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/rich-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/forms/components/rich-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/forms/components/select.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/tags-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/forms/components/tags-input.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/forms/components/textarea.js -------------------------------------------------------------------------------- /public/js/filament/notifications/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/notifications/notifications.js -------------------------------------------------------------------------------- /public/js/filament/support/async-alpine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/support/async-alpine.js -------------------------------------------------------------------------------- /public/js/filament/support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/support/support.js -------------------------------------------------------------------------------- /public/js/filament/tables/components/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/tables/components/table.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/public/js/filament/widgets/components/chart.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/stats-overview/stat/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/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/sayaamirul/bacaan-dev/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-session-status.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/auth-session-status.blade.php -------------------------------------------------------------------------------- /resources/views/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/danger-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/input-error.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/input-label.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/partials/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/layouts/partials/footer.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/partials/navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/layouts/partials/navbar.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/partials/seo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/layouts/partials/seo.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/three-columns.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/layouts/three-columns.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/two-columns-right.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/layouts/two-columns-right.blade.php -------------------------------------------------------------------------------- /resources/views/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/primary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/primary-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/secondary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/secondary-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/text-input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/components/text-input.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/layouts/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/article/list-article.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/livewire/article/list-article.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/article/single-article.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/livewire/article/single-article.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/components/article-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/livewire/components/article-card.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/home-page.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/livewire/home-page.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/series/list-series.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/livewire/series/list-series.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/series/single-series.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/livewire/series/single-series.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/snippet/list-snippet.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/livewire/snippet/list-snippet.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/snippet/single-snippet.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/livewire/snippet/single-snippet.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/topic/list-topic.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/livewire/topic/list-topic.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/topic/single-topic.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/livewire/topic/single-topic.blade.php -------------------------------------------------------------------------------- /resources/views/profile/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/profile/edit.blade.php -------------------------------------------------------------------------------- /resources/views/profile/partials/delete-user-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/profile/partials/delete-user-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/partials/update-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/profile/partials/update-password-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/partials/update-profile-information-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/profile/partials/update-profile-information-form.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/breadcrumbs/bootstrap4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/breadcrumbs/bootstrap4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/breadcrumbs/bootstrap5.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/breadcrumbs/bootstrap5.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/breadcrumbs/bulma.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/breadcrumbs/bulma.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/breadcrumbs/foundation6.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/breadcrumbs/foundation6.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/breadcrumbs/json-ld.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/breadcrumbs/json-ld.php -------------------------------------------------------------------------------- /resources/views/vendor/breadcrumbs/materialize.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/breadcrumbs/materialize.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/breadcrumbs/tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/breadcrumbs/tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/breadcrumbs/uikit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/breadcrumbs/uikit.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/components/avatar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/components/avatar.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/components/date.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/components/date.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/components/editors/easymde.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/components/editors/easymde.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/components/editors/textarea.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/components/editors/textarea.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/components/icons/close.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/components/icons/close.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/components/icons/copy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/components/icons/copy.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/components/icons/delete.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/components/icons/delete.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/components/icons/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/components/icons/edit.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/components/icons/menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/components/icons/menu.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/components/icons/smile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/components/icons/smile.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/components/modal.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/components/styles.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/components/styles.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/extraCommentHeaderActions.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/vendor/comments/livewire/comment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/livewire/comment.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/livewire/comments.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/livewire/comments.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/livewire/partials/newComment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/livewire/partials/newComment.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/livewire/partials/replyTo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/livewire/partials/replyTo.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/mail/approvedCommentNotification.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/mail/approvedCommentNotification.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/mail/pendingCommentNotification.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/mail/pendingCommentNotification.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/signed/approval/approveComment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/signed/approval/approveComment.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/signed/approval/approveCommentConfirmation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/signed/approval/approveCommentConfirmation.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/signed/approval/rejectComment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/signed/approval/rejectComment.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/signed/approval/rejectCommentApproval.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/signed/approval/rejectCommentApproval.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/signed/notificationSubscription/unsubscribe.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/signed/notificationSubscription/unsubscribe.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/signed/notificationSubscription/unsubscribeAll.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/signed/notificationSubscription/unsubscribeAll.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/signed/notificationSubscription/unsubscribeAllApproval.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/signed/notificationSubscription/unsubscribeAllApproval.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/signed/notificationSubscription/unsubscribeApproval.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/signed/notificationSubscription/unsubscribeApproval.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/comments/signed/signedLayout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/comments/signed/signedLayout.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/livewire/bootstrap.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/livewire/bootstrap.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/livewire/daisyui.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/livewire/daisyui.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/livewire/simple-bootstrap.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/livewire/simple-bootstrap.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/livewire/simple-tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/livewire/simple-tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/livewire/tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/vendor/livewire/tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/routes/breadcrumbs.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/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/sayaamirul/bacaan-dev/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/sayaamirul/bacaan-dev/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/tests/Feature/Auth/PasswordUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/tests/Feature/ProfileTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayaamirul/bacaan-dev/HEAD/vite.config.js --------------------------------------------------------------------------------