├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── _ide_helper.php ├── _ide_helper_models.php ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ └── EmailVerificationController.php │ │ └── Controller.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── SetLocale.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php ├── Livewire │ ├── Admin │ │ ├── Dashboard.php │ │ ├── Example.php │ │ └── User │ │ │ ├── Create.php │ │ │ ├── Edit.php │ │ │ ├── Index.php │ │ │ └── Show.php │ ├── Auth │ │ ├── Login.php │ │ ├── Password │ │ │ ├── Confirm.php │ │ │ ├── Request.php │ │ │ └── Reset.php │ │ ├── PrivacyPolicy.php │ │ ├── Register.php │ │ ├── TermsOfService.php │ │ └── Verify.php │ ├── Example.php │ ├── Home.php │ ├── Layouts │ │ ├── AdminNavigation.php │ │ ├── AdminSidebar.php │ │ ├── AppNavigation.php │ │ └── MainNavigation.php │ └── User │ │ ├── Dashboard.php │ │ ├── Example.php │ │ ├── Profile.php │ │ └── Settings.php ├── Models │ └── User.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── debugbar.php ├── filesystems.php ├── hashing.php ├── ide-helper.php ├── livewire.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── toaster.php ├── translation.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 └── seeders │ ├── DatabaseSeeder.php │ └── UserSeeder.php ├── lang ├── en.json ├── en │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── id.json └── id │ ├── auth.php │ ├── http-statuses.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── package.json ├── phpunit.xml ├── pint.json ├── postcss.config.js ├── public ├── .htaccess ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.php ├── lali.png ├── robots.txt └── site.webmanifest ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── markdown │ ├── privacy-policy-en.md │ ├── privacy-policy-id.md │ ├── terms-of-service-en.md │ └── terms-of-service-id.md └── views │ ├── components │ ├── action-message.blade.php │ ├── app-card.blade.php │ ├── auth-card.blade.php │ ├── badge.blade.php │ ├── banner.blade.php │ ├── button-link.blade.php │ ├── button.blade.php │ ├── checkbox.blade.php │ ├── danger-button.blade.php │ ├── dialog-modal.blade.php │ ├── divider.blade.php │ ├── dropdown-button.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── form-card.blade.php │ ├── icon-arrow-down.blade.php │ ├── icon-arrow-up.blade.php │ ├── icon-dashboard.blade.php │ ├── icon-data-not-found.blade.php │ ├── icon-disable.blade.php │ ├── icon-home.blade.php │ ├── icon-logout.blade.php │ ├── icon-profile.blade.php │ ├── icon-setting.blade.php │ ├── icon-sort-asc.blade.php │ ├── icon-sort-desc.blade.php │ ├── input-error.blade.php │ ├── label.blade.php │ ├── logo.blade.php │ ├── modal.blade.php │ ├── nav-dropdown.blade.php │ ├── nav-link.blade.php │ ├── responsive-nav-link.blade.php │ ├── secondary-button-link.blade.php │ ├── secondary-button.blade.php │ ├── select-input.blade.php │ ├── session-message.blade.php │ ├── stat-card.blade.php │ ├── table-action-button.blade.php │ ├── table-action-link.blade.php │ ├── table-body-not-found.blade.php │ ├── table-body-td.blade.php │ ├── table-body-tr.blade.php │ ├── table-body.blade.php │ ├── table-head-th.blade.php │ ├── table-head-tr.blade.php │ ├── table-head.blade.php │ ├── table.blade.php │ └── text-input.blade.php │ ├── errors │ ├── 401.blade.php │ ├── 402.blade.php │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 429.blade.php │ ├── 500.blade.php │ ├── 503.blade.php │ └── minimal.blade.php │ ├── layouts │ ├── admin-navigation.blade.php │ ├── admin-sidebar.blade.php │ ├── admin.blade.php │ ├── app-navigation.blade.php │ ├── app.blade.php │ ├── auth.blade.php │ ├── main-navigation.blade.php │ ├── main.blade.php │ └── partials │ │ ├── admin-user-dropdown-navigation.blade.php │ │ ├── admin-user-dropdown-sidebar.blade.php │ │ ├── app-user-dropdown.blade.php │ │ ├── footer.blade.php │ │ └── main-user-dropdown.blade.php │ ├── livewire │ ├── admin │ │ ├── dashboard.blade.php │ │ ├── example.blade.php │ │ └── user │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── partials │ │ │ ├── bulk-actions.blade.php │ │ │ ├── user-delete-modal.blade.php │ │ │ └── user-table.blade.php │ │ │ └── show.blade.php │ ├── auth │ │ ├── login.blade.php │ │ ├── password │ │ │ ├── confirm.blade.php │ │ │ ├── request.blade.php │ │ │ └── reset.blade.php │ │ ├── privacy-policy.blade.php │ │ ├── register.blade.php │ │ ├── terms-of-service.blade.php │ │ └── verify.blade.php │ ├── example.blade.php │ ├── home.blade.php │ └── user │ │ ├── dashboard.blade.php │ │ ├── example.blade.php │ │ ├── partials │ │ ├── profile │ │ │ ├── delete-account.blade.php │ │ │ ├── update-password.blade.php │ │ │ └── update-profile.blade.php │ │ └── settings │ │ │ ├── change-language.blade.php │ │ │ └── terms-and-policy.blade.php │ │ ├── profile.blade.php │ │ └── settings.blade.php │ ├── template │ ├── admin.blade.php │ ├── app.blade.php │ └── main.blade.php │ └── vendor │ ├── livewire │ ├── custom-tailwind.blade.php │ └── simple-custom-tailwind.blade.php │ └── toaster │ └── hub.blade.php ├── routes ├── api.php ├── auth.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 │ ├── Admin │ │ ├── DashboardTest.php │ │ ├── ExampleTest.php │ │ └── User │ │ │ ├── CreateTest.php │ │ │ ├── EditTest.php │ │ │ ├── IndexTest.php │ │ │ └── ShowTest.php │ ├── Auth │ │ ├── EmailVerificationTest.php │ │ ├── LoginTest.php │ │ ├── Password │ │ │ ├── ConfirmTest.php │ │ │ ├── RequestTest.php │ │ │ └── ResetTest.php │ │ ├── PrivacyPolicyTest.php │ │ ├── RegisterTest.php │ │ ├── TermsOfServiceTest.php │ │ └── VerifyTest.php │ ├── ExampleTest.php │ ├── HomeTest.php │ ├── Navigation │ │ ├── AdminNavigationTest.php │ │ ├── AdminSidebarTest.php │ │ ├── AppNavigationTest.php │ │ └── MainNavigationTest.php │ └── User │ │ ├── DashboardTest.php │ │ ├── ExampleTest.php │ │ ├── ProfileTest.php │ │ └── SettingsTest.php ├── Pest.php └── TestCase.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/README.md -------------------------------------------------------------------------------- /_ide_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/_ide_helper.php -------------------------------------------------------------------------------- /_ide_helper_models.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/_ide_helper_models.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Http/Controllers/Auth/EmailVerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Http/Middleware/SetLocale.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Admin/Dashboard.php -------------------------------------------------------------------------------- /app/Livewire/Admin/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Admin/Example.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Admin/User/Create.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Admin/User/Edit.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Admin/User/Index.php -------------------------------------------------------------------------------- /app/Livewire/Admin/User/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Admin/User/Show.php -------------------------------------------------------------------------------- /app/Livewire/Auth/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Auth/Login.php -------------------------------------------------------------------------------- /app/Livewire/Auth/Password/Confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Auth/Password/Confirm.php -------------------------------------------------------------------------------- /app/Livewire/Auth/Password/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Auth/Password/Request.php -------------------------------------------------------------------------------- /app/Livewire/Auth/Password/Reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Auth/Password/Reset.php -------------------------------------------------------------------------------- /app/Livewire/Auth/PrivacyPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Auth/PrivacyPolicy.php -------------------------------------------------------------------------------- /app/Livewire/Auth/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Auth/Register.php -------------------------------------------------------------------------------- /app/Livewire/Auth/TermsOfService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Auth/TermsOfService.php -------------------------------------------------------------------------------- /app/Livewire/Auth/Verify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Auth/Verify.php -------------------------------------------------------------------------------- /app/Livewire/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Example.php -------------------------------------------------------------------------------- /app/Livewire/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Home.php -------------------------------------------------------------------------------- /app/Livewire/Layouts/AdminNavigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Layouts/AdminNavigation.php -------------------------------------------------------------------------------- /app/Livewire/Layouts/AdminSidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Layouts/AdminSidebar.php -------------------------------------------------------------------------------- /app/Livewire/Layouts/AppNavigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Layouts/AppNavigation.php -------------------------------------------------------------------------------- /app/Livewire/Layouts/MainNavigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/Layouts/MainNavigation.php -------------------------------------------------------------------------------- /app/Livewire/User/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/User/Dashboard.php -------------------------------------------------------------------------------- /app/Livewire/User/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/User/Example.php -------------------------------------------------------------------------------- /app/Livewire/User/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/User/Profile.php -------------------------------------------------------------------------------- /app/Livewire/User/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Livewire/User/Settings.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/database.php -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/debugbar.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/ide-helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/ide-helper.php -------------------------------------------------------------------------------- /config/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/livewire.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/session.php -------------------------------------------------------------------------------- /config/toaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/toaster.php -------------------------------------------------------------------------------- /config/translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/translation.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/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/arifbudimanar/lali/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/arifbudimanar/lali/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/arifbudimanar/lali/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/http-statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/lang/en/http-statuses.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /lang/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/lang/id.json -------------------------------------------------------------------------------- /lang/id/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/lang/id/auth.php -------------------------------------------------------------------------------- /lang/id/http-statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/lang/id/http-statuses.php -------------------------------------------------------------------------------- /lang/id/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/lang/id/pagination.php -------------------------------------------------------------------------------- /lang/id/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/lang/id/passwords.php -------------------------------------------------------------------------------- /lang/id/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/lang/id/validation.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "laravel" 3 | } 4 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/public/index.php -------------------------------------------------------------------------------- /public/lali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/public/lali.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/markdown/privacy-policy-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/markdown/privacy-policy-en.md -------------------------------------------------------------------------------- /resources/markdown/privacy-policy-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/markdown/privacy-policy-id.md -------------------------------------------------------------------------------- /resources/markdown/terms-of-service-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/markdown/terms-of-service-en.md -------------------------------------------------------------------------------- /resources/markdown/terms-of-service-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/markdown/terms-of-service-id.md -------------------------------------------------------------------------------- /resources/views/components/action-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/action-message.blade.php -------------------------------------------------------------------------------- /resources/views/components/app-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/app-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/auth-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/badge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/badge.blade.php -------------------------------------------------------------------------------- /resources/views/components/banner.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/banner.blade.php -------------------------------------------------------------------------------- /resources/views/components/button-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/button-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/components/checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/checkbox.blade.php -------------------------------------------------------------------------------- /resources/views/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/danger-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/dialog-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/dialog-modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/divider.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/divider.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/dropdown-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/form-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/form-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/icon-arrow-down.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/icon-arrow-down.blade.php -------------------------------------------------------------------------------- /resources/views/components/icon-arrow-up.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/icon-arrow-up.blade.php -------------------------------------------------------------------------------- /resources/views/components/icon-dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/icon-dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/components/icon-data-not-found.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/icon-data-not-found.blade.php -------------------------------------------------------------------------------- /resources/views/components/icon-disable.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/icon-disable.blade.php -------------------------------------------------------------------------------- /resources/views/components/icon-home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/icon-home.blade.php -------------------------------------------------------------------------------- /resources/views/components/icon-logout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/icon-logout.blade.php -------------------------------------------------------------------------------- /resources/views/components/icon-profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/icon-profile.blade.php -------------------------------------------------------------------------------- /resources/views/components/icon-setting.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/icon-setting.blade.php -------------------------------------------------------------------------------- /resources/views/components/icon-sort-asc.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/icon-sort-asc.blade.php -------------------------------------------------------------------------------- /resources/views/components/icon-sort-desc.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/icon-sort-desc.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/input-error.blade.php -------------------------------------------------------------------------------- /resources/views/components/label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/label.blade.php -------------------------------------------------------------------------------- /resources/views/components/logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/nav-dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/nav-dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/secondary-button-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/secondary-button-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/secondary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/secondary-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/select-input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/select-input.blade.php -------------------------------------------------------------------------------- /resources/views/components/session-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/session-message.blade.php -------------------------------------------------------------------------------- /resources/views/components/stat-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/stat-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/table-action-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/table-action-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/table-action-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/table-action-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/table-body-not-found.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/table-body-not-found.blade.php -------------------------------------------------------------------------------- /resources/views/components/table-body-td.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/table-body-td.blade.php -------------------------------------------------------------------------------- /resources/views/components/table-body-tr.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/table-body-tr.blade.php -------------------------------------------------------------------------------- /resources/views/components/table-body.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/table-body.blade.php -------------------------------------------------------------------------------- /resources/views/components/table-head-th.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/table-head-th.blade.php -------------------------------------------------------------------------------- /resources/views/components/table-head-tr.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/table-head-tr.blade.php -------------------------------------------------------------------------------- /resources/views/components/table-head.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/table-head.blade.php -------------------------------------------------------------------------------- /resources/views/components/table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/table.blade.php -------------------------------------------------------------------------------- /resources/views/components/text-input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/components/text-input.blade.php -------------------------------------------------------------------------------- /resources/views/errors/401.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/errors/401.blade.php -------------------------------------------------------------------------------- /resources/views/errors/402.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/errors/402.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/errors/419.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/errors/419.blade.php -------------------------------------------------------------------------------- /resources/views/errors/429.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/errors/429.blade.php -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/errors/500.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/errors/minimal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/errors/minimal.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/admin-navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/layouts/admin-navigation.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/admin-sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/layouts/admin-sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/layouts/admin.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app-navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/layouts/app-navigation.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/auth.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/layouts/auth.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/main-navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/layouts/main-navigation.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/layouts/main.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/admin-user-dropdown-navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/layouts/partials/admin-user-dropdown-navigation.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/admin-user-dropdown-sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/layouts/partials/admin-user-dropdown-sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/app-user-dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/layouts/partials/app-user-dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/layouts/partials/footer.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/partials/main-user-dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/layouts/partials/main-user-dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/admin/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/example.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/admin/example.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/admin/user/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/admin/user/edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/admin/user/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/partials/bulk-actions.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/admin/user/partials/bulk-actions.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/partials/user-delete-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/admin/user/partials/user-delete-modal.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/partials/user-table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/admin/user/partials/user-table.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/admin/user/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/admin/user/show.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/auth/password/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/auth/password/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/auth/password/request.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/auth/password/request.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/auth/password/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/auth/password/reset.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/auth/privacy-policy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/auth/privacy-policy.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/auth/terms-of-service.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/auth/terms-of-service.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/example.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/example.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/home.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/user/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/user/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/user/example.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/user/example.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/user/partials/profile/delete-account.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/user/partials/profile/delete-account.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/user/partials/profile/update-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/user/partials/profile/update-password.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/user/partials/profile/update-profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/user/partials/profile/update-profile.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/user/partials/settings/change-language.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/user/partials/settings/change-language.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/user/partials/settings/terms-and-policy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/user/partials/settings/terms-and-policy.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/user/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/user/profile.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/user/settings.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/livewire/user/settings.blade.php -------------------------------------------------------------------------------- /resources/views/template/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/template/admin.blade.php -------------------------------------------------------------------------------- /resources/views/template/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/template/app.blade.php -------------------------------------------------------------------------------- /resources/views/template/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/template/main.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/livewire/custom-tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/vendor/livewire/custom-tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/livewire/simple-custom-tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/vendor/livewire/simple-custom-tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/toaster/hub.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/resources/views/vendor/toaster/hub.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/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/arifbudimanar/lali/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/arifbudimanar/lali/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/Admin/DashboardTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Admin/DashboardTest.php -------------------------------------------------------------------------------- /tests/Feature/Admin/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Admin/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/Admin/User/CreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Admin/User/CreateTest.php -------------------------------------------------------------------------------- /tests/Feature/Admin/User/EditTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Admin/User/EditTest.php -------------------------------------------------------------------------------- /tests/Feature/Admin/User/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Admin/User/IndexTest.php -------------------------------------------------------------------------------- /tests/Feature/Admin/User/ShowTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Admin/User/ShowTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/LoginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Auth/LoginTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/Password/ConfirmTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Auth/Password/ConfirmTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/Password/RequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Auth/Password/RequestTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/Password/ResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Auth/Password/ResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PrivacyPolicyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Auth/PrivacyPolicyTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegisterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Auth/RegisterTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/TermsOfServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Auth/TermsOfServiceTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/VerifyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Auth/VerifyTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/HomeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/HomeTest.php -------------------------------------------------------------------------------- /tests/Feature/Navigation/AdminNavigationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Navigation/AdminNavigationTest.php -------------------------------------------------------------------------------- /tests/Feature/Navigation/AdminSidebarTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Navigation/AdminSidebarTest.php -------------------------------------------------------------------------------- /tests/Feature/Navigation/AppNavigationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Navigation/AppNavigationTest.php -------------------------------------------------------------------------------- /tests/Feature/Navigation/MainNavigationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/Navigation/MainNavigationTest.php -------------------------------------------------------------------------------- /tests/Feature/User/DashboardTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/User/DashboardTest.php -------------------------------------------------------------------------------- /tests/Feature/User/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/User/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/User/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/User/ProfileTest.php -------------------------------------------------------------------------------- /tests/Feature/User/SettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Feature/User/SettingsTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifbudimanar/lali/HEAD/vite.config.js --------------------------------------------------------------------------------