├── public ├── favicon.ico ├── vendor │ └── themes │ │ └── .gitkeep ├── robots.txt ├── index.php ├── js │ └── filament │ │ └── forms │ │ └── components │ │ ├── textarea.js │ │ ├── tags-input.js │ │ └── key-value.js └── .htaccess ├── app ├── Services │ └── ApiService.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── LoginController.php │ │ │ └── RegisterController.php │ │ ├── Controller.php │ │ ├── BookController.php │ │ ├── PostController.php │ │ ├── ContactController.php │ │ └── Api │ │ │ └── AuthController.php │ ├── Resources │ │ └── LoginResource.php │ └── Requests │ │ ├── StoreBookRequest.php │ │ ├── StorePostRequest.php │ │ ├── StoreContactRequest.php │ │ ├── UpdateBookRequest.php │ │ ├── UpdatePostRequest.php │ │ ├── UpdateContactRequest.php │ │ └── LoginRequest.php ├── Filament │ ├── Resources │ │ ├── RoleResource │ │ │ └── Pages │ │ │ │ ├── ViewRole.php │ │ │ │ ├── ListRoles.php │ │ │ │ ├── CreateRole.php │ │ │ │ └── EditRole.php │ │ ├── BookResource │ │ │ ├── Pages │ │ │ │ ├── ListBooks.php │ │ │ │ ├── ViewBook.php │ │ │ │ ├── CreateBook.php │ │ │ │ └── EditBook.php │ │ │ └── Api │ │ │ │ ├── BookApiService.php │ │ │ │ └── Handlers │ │ │ │ ├── CreateHandler.php │ │ │ │ ├── DeleteHandler.php │ │ │ │ ├── DetailHandler.php │ │ │ │ ├── UpdateHandler.php │ │ │ │ └── PaginationHandler.php │ │ └── UserResource │ │ │ └── Pages │ │ │ ├── ViewUser.php │ │ │ ├── CreateUser.php │ │ │ ├── EditUser.php │ │ │ └── ListUsers.php │ ├── Exports │ │ ├── ContactExporter.php │ │ ├── BookExporter.php │ │ └── UserExporter.php │ ├── Pages │ │ ├── ManageSetting.php │ │ └── Login.php │ └── Imports │ │ ├── UserImporter.php │ │ └── BookImporter.php ├── Models │ ├── Contact.php │ ├── Post.php │ ├── Book.php │ └── User.php ├── Settings │ └── KaidoSetting.php ├── Providers │ └── AppServiceProvider.php └── Policies │ ├── BookPolicy.php │ └── PostPolicy.php ├── database ├── .gitignore ├── seeders │ ├── ContactSeeder.php │ ├── BookSeeder.php │ ├── PostSeeder.php │ └── DatabaseSeeder.php ├── factories │ ├── ContactFactory.php │ ├── PostFactory.php │ ├── BookFactory.php │ └── UserFactory.php ├── settings │ └── 2025_01_08_152510_create_kaido_settings.php └── migrations │ ├── 2022_12_14_083707_create_settings_table.php │ ├── 2025_01_12_091355_create_contacts_table.php │ ├── 2025_01_31_020024_add_themes_settings_to_users_table.php │ ├── 2025_01_04_125650_create_posts_table.php │ ├── 2025_01_02_225927_add_avatar_url_column_to_users_table.php │ ├── 2025_01_01_120813_create_books_table.php │ ├── 2025_01_08_233142_create_socialite_users_table.php │ ├── 2025_01_12_031359_create_failed_import_rows_table.php │ ├── 2025_01_12_031340_create_notifications_table.php │ ├── 2025_01_09_225908_update_user_table_make_password_column_nullable.php │ ├── 0001_01_01_000001_create_cache_table.php │ ├── 2025_01_03_114929_create_personal_access_tokens_table.php │ ├── 2024_12_04_041953_create_breezy_sessions_table.php │ ├── 2025_01_12_031357_create_imports_table.php │ ├── 2025_01_12_031358_create_exports_table.php │ ├── 2024_12_04_025120_create_media_table.php │ ├── 0001_01_01_000000_create_users_table.php │ └── 0001_01_01_000002_create_jobs_table.php ├── bootstrap ├── cache │ └── .gitignore ├── providers.php └── app.php ├── resources ├── js │ ├── app.js │ └── bootstrap.js ├── views │ ├── vendor │ │ ├── filament-socialite │ │ │ ├── .gitkeep │ │ │ └── components │ │ │ │ └── buttons.blade.php │ │ └── filament-breezy │ │ │ ├── filament │ │ │ └── pages │ │ │ │ ├── two-factor.blade.php │ │ │ │ └── my-profile.blade.php │ │ │ ├── components │ │ │ ├── clipboard-link.blade.php │ │ │ └── grid-section.blade.php │ │ │ └── livewire │ │ │ ├── update-password.blade.php │ │ │ ├── personal-info.blade.php │ │ │ └── sanctum-tokens.blade.php │ └── filament │ │ └── pages │ │ └── login.blade.php └── css │ └── app.css ├── storage ├── logs │ └── .gitignore ├── app │ ├── private │ │ └── .gitignore │ ├── public │ │ └── .gitignore │ └── .gitignore ├── debugbar │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── draft.yaml ├── .DS_Store ├── stubs ├── filament │ ├── ColumnView.stub │ ├── TableView.stub │ ├── PageView.stub │ ├── LayoutComponentView.stub │ ├── ThemeCss.stub │ ├── ThemePostcssConfig.stub │ ├── Field.stub │ ├── Column.stub │ ├── Cluster.stub │ ├── FormView.stub │ ├── FieldView.stub │ ├── Page.stub │ ├── LayoutComponent.stub │ ├── CustomResourcePage.stub │ ├── ThemeTailwindConfig.stub │ ├── ResourceListPage.stub │ ├── ResourceViewPage.stub │ ├── ResourceManagePage.stub │ ├── ResourcePage.stub │ ├── ResourceEditPage.stub │ ├── Form.stub │ ├── Exporter.stub │ ├── EditForm.stub │ ├── CreateForm.stub │ ├── Table.stub │ ├── Importer.stub │ ├── RelationManager.stub │ ├── Resource.stub │ └── ResourceManageRelatedRecordsPage.stub ├── enum.stub ├── pest.unit.stub ├── trait.stub ├── observer.plain.stub ├── enum.backed.stub ├── pest.stub ├── model.pivot.stub ├── controller.plain.stub ├── class.stub ├── policy.plain.stub ├── test.unit.stub ├── seeder.stub ├── controller.invokable.stub ├── class.invokable.stub ├── model.stub ├── provider.stub ├── scope.stub ├── job.stub ├── resource.stub ├── test.stub ├── listener.stub ├── migration.stub ├── resource-collection.stub ├── rule.stub ├── middleware.stub ├── job.queued.stub ├── listener.typed.stub ├── cast.inbound.stub ├── factory.stub ├── listener.queued.stub ├── view-component.stub ├── listener.typed.queued.stub ├── console.stub ├── migration.create.stub ├── request.stub ├── migration.update.stub ├── cast.stub ├── controller.singleton.api.stub ├── event.stub ├── controller.api.stub ├── observer.stub ├── controller.nested.singleton.api.stub ├── controller.model.api.stub ├── controller.singleton.stub ├── mail.stub ├── markdown-notification.stub ├── markdown-mail.stub ├── controller.stub ├── controller.nested.api.stub ├── notification.stub ├── controller.model.stub ├── controller.nested.singleton.stub ├── policy.stub └── controller.nested.stub ├── tests ├── Unit │ └── ExampleTest.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Pest.php ├── postcss.config.js ├── routes ├── web.php ├── console.php └── api.php ├── .gitattributes ├── .blueprint ├── .editorconfig ├── lang └── vendor │ ├── filament-socialite │ └── en │ │ └── auth.php │ └── filament-shield │ ├── zh_CN │ └── filament-shield.php │ ├── zh_TW │ └── filament-shield.php │ ├── ko │ └── filament-shield.php │ ├── ja │ └── filament-shield.php │ ├── ar │ └── filament-shield.php │ ├── fa │ └── filament-shield.php │ ├── id │ └── filament-shield.php │ ├── pt_BR │ └── filament-shield.php │ ├── vi │ └── filament-shield.php │ └── sq │ └── filament-shield.php ├── artisan ├── .gitignore ├── package.json ├── vite.config.js ├── Trik cepat CRUD Filament.md ├── config ├── api-service.php ├── filament-socialite.php ├── themes.php ├── services.php ├── filament-shield.php ├── filesystems.php └── scramble.php ├── tailwind.config.js ├── phpunit.xml ├── .env.example └── docker-compose.yml /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Services/ApiService.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /public/vendor/themes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-socialite/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/app/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /draft.yaml: -------------------------------------------------------------------------------- 1 | models: 2 | # ... 3 | 4 | controllers: 5 | # ... 6 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siubie/kaido-kit/HEAD/.DS_Store -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !private/ 3 | !public/ 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /stubs/filament/ColumnView.stub: -------------------------------------------------------------------------------- 1 |
8 | {{$description}} 9 |
10 |{{ __('filament-breezy::default.profile.sanctum.create.message') }}
5 | 6 |13 | {{ __('filament-socialite::auth.login-via') }} 14 |
15 |