├── database ├── .gitignore ├── seeders │ ├── ProviderSeeder.php │ ├── NewsletterSeeder.php │ ├── ContactMessageSeeder.php │ ├── PostSeeder.php │ ├── TagSeeder.php │ ├── PhoneSeeder.php │ ├── CommentSeeder.php │ └── CategorySeeder.php └── factories │ └── ProviderFactory.php ├── resources ├── views │ ├── .gitkeep │ ├── vendor │ │ └── filament-language-switch │ │ │ ├── .gitkeep │ │ │ └── components │ │ │ └── flag.blade.php │ └── mail │ │ ├── invoice │ │ └── paid.blade.php │ │ └── user │ │ └── updated.blade.php └── js │ ├── Components │ ├── Layout │ │ └── SideBar.vue │ ├── Container.vue │ ├── Icons │ │ ├── IconTaskReporting.vue │ │ ├── IconPlay.vue │ │ ├── IconX.vue │ │ ├── IconBars.vue │ │ └── IconTaskInventory.vue │ ├── Forms │ │ ├── InputError.vue │ │ └── InputLabel.vue │ └── Blog │ │ └── Tag.vue │ ├── bootstrap.js │ ├── Mixins │ └── defaultLayoutMixin.js │ ├── Pages │ └── Post │ │ ├── EditPost.vue │ │ └── CreatePost.vue │ └── i18n.js ├── bootstrap ├── cache │ └── .gitignore └── providers.php ├── storage ├── logs │ └── .gitignore ├── app │ ├── private │ │ └── .gitignore │ ├── temp │ │ └── .gitignore │ ├── public │ │ ├── .gitignore │ │ └── test.jpg │ ├── .gitignore │ └── images │ │ ├── covers │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ ├── 9.jpg │ │ └── cta.jpg │ │ └── users │ │ ├── 01.jpg │ │ ├── 02.jpg │ │ ├── 03.jpg │ │ ├── 04.jpg │ │ ├── 05.jpg │ │ ├── 06.jpg │ │ ├── 07.jpg │ │ └── 16.jpg ├── framework │ ├── testing │ │ └── .gitignore │ ├── views │ │ └── .gitignore │ ├── cache │ │ ├── data │ │ │ └── .gitignore │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── .gitignore └── dotenv-editor │ └── .gitignore ├── public ├── robots.txt ├── favicon.ico ├── favicon.png ├── favicon.zip ├── favicon-96x96.png ├── apple-touch-icon.png ├── web-app-manifest-192x192.png ├── web-app-manifest-512x512.png ├── vendor │ └── log-viewer │ │ ├── img │ │ ├── log-viewer-128.png │ │ ├── log-viewer-32.png │ │ └── log-viewer-64.png │ │ └── mix-manifest.json ├── browserconfig.xml ├── index.php └── site.webmanifest ├── lang ├── .gitignore └── vendor │ ├── filament-panels │ ├── he │ │ ├── pages │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── global-search.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ ├── pl │ │ ├── pages │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── global-search.php │ ├── bn │ │ ├── pages │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── global-search.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ ├── ckb │ │ ├── pages │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── global-search.php │ ├── fa │ │ ├── pages │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── global-search.php │ ├── hi │ │ ├── pages │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── global-search.php │ ├── hy │ │ ├── pages │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── global-search.php │ ├── ku │ │ ├── pages │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── global-search.php │ ├── lv │ │ ├── pages │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── global-search.php │ ├── np │ │ ├── pages │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── global-search.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ ├── sw │ │ ├── pages │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── global-search.php │ ├── zh_CN │ │ ├── pages │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── global-search.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ ├── zh_TW │ │ ├── pages │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── global-search.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ ├── bs │ │ ├── pages │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── global-search.php │ ├── el │ │ ├── pages │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── global-search.php │ ├── hr │ │ ├── pages │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── global-search.php │ ├── my │ │ ├── pages │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── global-search.php │ ├── sq │ │ ├── pages │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── global-search.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ ├── tr │ │ ├── pages │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── global-search.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ ├── az │ │ ├── pages │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── global-search.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ ├── ja │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── ko │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── ar │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── bg │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── global-search.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── ca │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── cs │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── da │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── global-search.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── en │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── es │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── global-search.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── fi │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── fr │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── global-search.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── hu │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── id │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── it │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── global-search.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── ka │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── km │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── lt │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── ms │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── nl │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── global-search.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── no │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── ro │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── ru │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── sk │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── global-search.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── sl │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── global-search.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── sv │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── th │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── de │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── global-search.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── mn │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── pt_BR │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── global-search.php │ │ └── pages │ │ │ └── tenancy │ │ │ └── edit-tenant-profile.php │ ├── pt_PT │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── global-search.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── uk │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── global-search.php │ │ └── pages │ │ │ ├── tenancy │ │ │ └── edit-tenant-profile.php │ │ │ └── dashboard.php │ ├── uz │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ ├── global-search.php │ │ ├── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── pages │ │ │ └── tenancy │ │ │ └── edit-tenant-profile.php │ └── vi │ │ ├── resources │ │ └── pages │ │ │ ├── list-records.php │ │ │ └── view-record.php │ │ ├── unsaved-changes-alert.php │ │ ├── widgets │ │ ├── account-widget.php │ │ └── filament-info-widget.php │ │ ├── global-search.php │ │ └── pages │ │ ├── tenancy │ │ └── edit-tenant-profile.php │ │ └── dashboard.php │ └── filament-password-input │ ├── ar │ └── password.php │ ├── en │ └── password.php │ ├── pt_BR │ └── password.php │ └── pt_PT │ └── password.php ├── tests ├── Unit │ └── ExampleTest.php ├── Feature │ ├── FirstTest.php │ └── Auth │ │ └── RegistrationTest.php └── TestCase.php ├── docker ├── 8.0 │ ├── php.ini │ └── supervisord.conf ├── 8.1 │ ├── php.ini │ └── supervisord.conf ├── 8.2 │ ├── php.ini │ └── supervisord.conf ├── 8.3 │ ├── php.ini │ └── supervisord.conf ├── 8.4 │ ├── php.ini │ └── supervisord.conf ├── pgsql │ └── create-testing-database.sql ├── mysql │ └── create-testing-database.sh └── mariadb │ └── create-testing-database.sh ├── postcss.config.js ├── .prettierrc ├── SECURITY.md ├── .gitattributes ├── app ├── Filament │ ├── Clusters │ │ ├── Networking.php │ │ ├── Settings.php │ │ └── Networking │ │ │ └── Resources │ │ │ ├── PhoneResource │ │ │ └── Pages │ │ │ │ ├── CreatePhone.php │ │ │ │ └── ViewPhone.php │ │ │ ├── CommentResource │ │ │ └── Pages │ │ │ │ └── CreateComment.php │ │ │ └── NewsletterResource │ │ │ └── Pages │ │ │ └── CreateNewsletter.php │ └── Resources │ │ ├── TagResource │ │ └── Pages │ │ │ ├── CreateTag.php │ │ │ ├── ViewTag.php │ │ │ └── ListTags.php │ │ ├── PostResource │ │ └── Pages │ │ │ ├── CreatePost.php │ │ │ ├── ListPosts.php │ │ │ └── ViewPost.php │ │ ├── UserResource │ │ └── Pages │ │ │ ├── CreateUser.php │ │ │ ├── ViewUser.php │ │ │ └── ListUsers.php │ │ └── CategoryResource │ │ └── Pages │ │ ├── CreateCategory.php │ │ ├── ViewCategory.php │ │ └── ListCategories.php ├── Http │ └── Controllers │ │ └── Controller.php └── Listeners │ └── UserUpdatedNotifyUser.php ├── .htaccess ├── jsconfig.json ├── .editorconfig ├── routes └── console.php ├── artisan ├── .gitignore ├── .eslintrc.cjs └── config └── vue-i18n-generator.php /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/js/Components/Layout/SideBar.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/temp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-language-switch/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !test.jpg 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/dotenv-editor/.gitignore: -------------------------------------------------------------------------------- 1 | /backups 2 | * 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /lang/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # add everthing start with php_ and end with .josn 3 | php_*.json 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/favicon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/public/favicon.zip -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | livewire-tmp/ 2 | !images/ 3 | !public/ 4 | !private/ 5 | !temp/ 6 | !.gitignore 7 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /storage/app/public/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/public/test.jpg -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- 1 | toBeTrue(); 5 | }); 6 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/he/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'פאנל', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pl/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Panel', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /storage/app/images/covers/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/1.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/10.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/12.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/13.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/14.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/15.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/16.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/17.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/18.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/19.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/2.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/3.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/4.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/5.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/6.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/7.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/8.jpg -------------------------------------------------------------------------------- /storage/app/images/covers/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/9.jpg -------------------------------------------------------------------------------- /storage/app/images/users/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/users/01.jpg -------------------------------------------------------------------------------- /storage/app/images/users/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/users/02.jpg -------------------------------------------------------------------------------- /storage/app/images/users/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/users/03.jpg -------------------------------------------------------------------------------- /storage/app/images/users/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/users/04.jpg -------------------------------------------------------------------------------- /storage/app/images/users/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/users/05.jpg -------------------------------------------------------------------------------- /storage/app/images/users/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/users/06.jpg -------------------------------------------------------------------------------- /storage/app/images/users/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/users/07.jpg -------------------------------------------------------------------------------- /storage/app/images/users/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/users/16.jpg -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bn/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ড্যাশবোর্ড', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ckb/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'داشبۆرد', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fa/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'داشبورد', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hi/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'डैशबोर्ड', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hy/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Վահանակ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ku/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'داشبۆرد', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lv/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Panelis', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/np/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ड्यासबोर्ड', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sw/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashibodi', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_CN/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | '仪表板', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_TW/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | '主控台', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /public/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/public/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /public/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/public/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /storage/app/images/covers/cta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/storage/app/images/covers/cta.jpg -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bs/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nadzorna ploča', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/el/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Πίνακας ελέγχου', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hr/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nadzorna ploča', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/my/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ပင်မစာမျက်နှာ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sq/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Faqja Kryesore', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/tr/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Genel Bakış', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /docker/8.0/php.ini: -------------------------------------------------------------------------------- 1 | [PHP] 2 | post_max_size = 100M 3 | upload_max_filesize = 100M 4 | variables_order = EGPCS 5 | pcov.directory = . 6 | -------------------------------------------------------------------------------- /docker/8.1/php.ini: -------------------------------------------------------------------------------- 1 | [PHP] 2 | post_max_size = 100M 3 | upload_max_filesize = 100M 4 | variables_order = EGPCS 5 | pcov.directory = . 6 | -------------------------------------------------------------------------------- /docker/8.2/php.ini: -------------------------------------------------------------------------------- 1 | [PHP] 2 | post_max_size = 100M 3 | upload_max_filesize = 100M 4 | variables_order = EGPCS 5 | pcov.directory = . 6 | -------------------------------------------------------------------------------- /docker/8.3/php.ini: -------------------------------------------------------------------------------- 1 | [PHP] 2 | post_max_size = 100M 3 | upload_max_filesize = 100M 4 | variables_order = EGPCS 5 | pcov.directory = . 6 | -------------------------------------------------------------------------------- /docker/8.4/php.ini: -------------------------------------------------------------------------------- 1 | [PHP] 2 | post_max_size = 100M 3 | upload_max_filesize = 100M 4 | variables_order = EGPCS 5 | pcov.directory = . 6 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/az/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'İdarəetmə Paneli', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ja/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '一覧', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ko/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '목록', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ar/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'القائمة', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/az/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'List', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bg/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Списък', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bn/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'তালিকা', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bs/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ca/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Llistat', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/cs/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Přehled', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/da/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/el/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Λίστα', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/en/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'List', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/es/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listado', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fa/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'لیست', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fr/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/he/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'רשימה', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'सूची', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hr/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hu/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hy/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Ցանկ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/id/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Daftar', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/it/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ka/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'სია', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/km/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'បញ្ជី', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lt/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Sąrašas', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ms/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Senarai', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/my/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'စာရင်း', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/my/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'စစ်ဆေးပါ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/nl/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lijst', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/no/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/np/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'सूची', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pl/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ro/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listare', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ru/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Список', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sk/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Prehľad', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sl/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Seznam', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sq/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listo', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sv/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sw/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listi', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/th/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'รายการ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/tr/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_CN/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '列表', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_TW/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '清單', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ckb/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'تۆمارەکان', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/de/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Übersicht', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ku/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'تۆمارەکان', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lv/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Saraksts', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/mn/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Жагсаалт', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_BR/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listar', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_PT/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listagem', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uk/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Перегляд', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uz/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Ro\'yxat', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/vi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Danh sách', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ja/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | '未保存の変更があります。このページを離れてもよろしいですか?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /public/vendor/log-viewer/img/log-viewer-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/public/vendor/log-viewer/img/log-viewer-128.png -------------------------------------------------------------------------------- /public/vendor/log-viewer/img/log-viewer-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/public/vendor/log-viewer/img/log-viewer-32.png -------------------------------------------------------------------------------- /public/vendor/log-viewer/img/log-viewer-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdessamadbettal/lara4/HEAD/public/vendor/log-viewer/img/log-viewer-64.png -------------------------------------------------------------------------------- /resources/js/Components/Container.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /docker/pgsql/create-testing-database.sql: -------------------------------------------------------------------------------- 1 | SELECT 'CREATE DATABASE testing' 2 | WHERE NOT EXISTS (SELECT FROM pg_database WHERE datname = 'testing')\gexec 3 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ko/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | '작업 내용이 저장되지 않았습니다. 정말로 이 페이지를 나가시겠습니까?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- 1 | get('/'); 5 | 6 | $response->assertStatus(302); 7 | }); 8 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "plugins": [ 4 | "prettier-plugin-organize-imports", 5 | "prettier-plugin-tailwindcss" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | ## Reporting a Vulnerability 2 | 3 | If you discover any security related issues, please email abdessamadbattal@gmail.com instead of using the issue tracker. 4 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/cs/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Máte neuložené změny. Opravdu chcete opustit tuto stránku?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sk/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Máte neuložené zmeny. Naozaj chcete opustiť túto stránku?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/mn/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Танд хадгалаагүй мэдээллүүд байна. Та энэ хуудаснаас шилжих үү?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_TW/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | '檢視 :label', 6 | 7 | 'breadcrumb' => '檢視', 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/en/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'You have unsaved changes. Are you sure you want to leave this page?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hi/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label देखें', 6 | 7 | 'breadcrumb' => 'देखें', 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hy/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Դիտել :label', 6 | 7 | 'breadcrumb' => 'Դիտել', 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/it/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Hai delle modifiche non salvate. Vuoi davvero uscire da questa pagina?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sv/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Du har osparade ändringar. Är du säker på att du vill lämna sidan?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uk/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'У вас є незбережені дані. Ви впевнені, що хочете залишити цю сторінку?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ar/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'توجد لديك تغييرات غير محفوظة. هل أنت متأكد من أنك تريد مغادرة هذه الصفحة؟', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fi/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Sinulla on tallentamattomia muutoksia. Oletko varma että haluat poistua?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lt/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Jūs turite neišsaugotų pakeitimų. Ar tikrai norite išeiti iš šio puslapio?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/vi/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Bạn có thay đổi chưa lưu. Bạn có chắc chắn muốn rời khỏi trang này không?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/es/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Tienes cambios sin guardar. ¿Estás seguro de que quieres abandonar esta página?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/km/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'អ្នកមានការផ្លាស់ប្ដូរដែលមិនបានរក្សាទុក។ តើអ្នកប្រាកដថាចង់ចាកចេញពីទំព័រនេះទេ?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/no/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Du har endringer som ikke er lagret. Er du sikker på at du vil forlate siden?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sl/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Imate neshranjene spremembe. Ali ste prepričani, da želite zapustiti to stran?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ka/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'ცვლილებები არ არის დამახსოვრებული. დარწმუნებული ხართ, რომ გსურთ ამ გვერდის დატოვება?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/nl/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Je hebt niet-opgeslagen wijzigingen. Weet je zeker dat je deze pagina wilt verlaten?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_PT/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Existem alterações não guardadas. Tem a certeza que pretende sair desta página?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ru/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'У вас есть несохраненные изменения. Вы уверены, что хотите покинуть эту страницу?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/js/Mixins/defaultLayoutMixin.js: -------------------------------------------------------------------------------- 1 | import GeneralLayout from '@/Layouts/GeneralLayout.vue'; 2 | console.log('Default layout mixin applied'); 3 | export default { 4 | layout: GeneralLayout, 5 | }; 6 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | 'Sie haben ungespeicherte Änderungen. Sind Sie sicher, dass Sie diese Seite verlassen wollen?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fr/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Vous avez des modifications non sauvegardées. Êtes-vous sûr de vouloir quitter cette page ?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/id/unsaved-changes-alert.php: -------------------------------------------------------------------------------- 1 | 'Anda memiliki perubahan yang belum disimpan. Apakah Anda yakin ingin meninggalkan halaman ini?', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | 3 | *.blade.php diff=html 4 | *.css diff=css 5 | *.html diff=html 6 | *.md diff=markdown 7 | *.php diff=php 8 | 9 | /.github export-ignore 10 | CHANGELOG.md export-ignore 11 | .styleci.yml export-ignore 12 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ko/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => '전체 검색', 7 | 'placeholder' => '검색', 8 | ], 9 | 10 | 'no_results_message' => '검색 결과가 없습니다.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_CN/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => '全局搜索', 7 | 'placeholder' => '搜索', 8 | ], 9 | 10 | 'no_results_message' => '未找到搜索结果。', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_TW/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => '全域搜尋', 7 | 'placeholder' => '搜尋', 8 | ], 9 | 10 | 'no_results_message' => '無搜尋結果。', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /docker/mysql/create-testing-database.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | mysql --user=root --password="$MYSQL_ROOT_PASSWORD" <<-EOSQL 4 | CREATE DATABASE IF NOT EXISTS testing; 5 | GRANT ALL PRIVILEGES ON \`testing%\`.* TO '$MYSQL_USER'@'%'; 6 | EOSQL 7 | -------------------------------------------------------------------------------- /app/Filament/Clusters/Networking.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'グローバル検索', 7 | 'placeholder' => '検索', 8 | ], 9 | 10 | 'no_results_message' => '検索結果が見つかりませんでした。', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/th/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'ค้นหา', 7 | 'placeholder' => 'ค้นหา...', 8 | ], 9 | 10 | 'no_results_message' => 'ไม่มีผลลัพธ์', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /docker/mariadb/create-testing-database.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | /usr/bin/mariadb --user=root --password="$MYSQL_ROOT_PASSWORD" <<-EOSQL 4 | CREATE DATABASE IF NOT EXISTS testing; 5 | GRANT ALL PRIVILEGES ON \`testing%\`.* TO '$MYSQL_USER'@'%'; 6 | EOSQL 7 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/he/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'חיפוש גלובלי', 7 | 'placeholder' => 'חיפוש', 8 | ], 9 | 10 | 'no_results_message' => 'לא נמצאו תוצאות.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ja/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'ログアウト', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'ようこそ', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ko/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => '로그아웃', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => '어서오세요', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/no/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globalt søk', 7 | 'placeholder' => 'Søk', 8 | ], 9 | 10 | 'no_results_message' => 'Ingen resultater.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sv/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Global sökning', 7 | 'placeholder' => 'Sök', 8 | ], 9 | 10 | 'no_results_message' => 'Inga sökresultat.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/tr/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Genel arama', 7 | 'placeholder' => 'Ara', 8 | ], 9 | 10 | 'no_results_message' => 'Sonuç bulunamadı.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_CN/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => '退出登录', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => '欢迎', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_TW/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => '登出', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => '歡迎', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/az/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Ümumi axtarış', 7 | 'placeholder' => 'Axtar', 8 | ], 9 | 10 | 'no_results_message' => 'Nəticə tapılmadı.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bs/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Odjava', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Zdravo', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fa/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'خروج', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'خوش آمدید', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/he/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'התנתק', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'ברוך הבא', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hi/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'साइन आउट', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'स्वागत', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hu/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globális keresés', 7 | 'placeholder' => 'Keresés', 8 | ], 9 | 10 | 'no_results_message' => 'Nincs találat', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ru/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Глобальный поиск', 7 | 'placeholder' => 'Поиск', 8 | ], 9 | 10 | 'no_results_message' => 'Ничего не найдено.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sw/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Toka', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Karibu', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uk/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Вийти', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Вітаємо', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ar/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'بحث عام', 7 | 'placeholder' => 'بحث', 8 | ], 9 | 10 | 'no_results_message' => 'لم يتم العثور على نتائج عن البحث.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ar/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'تسجيل الخروج', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'مرحباً', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/az/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Çıxış', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Xoş gəldin', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bg/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Изход', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Добре дошли', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bn/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'সব জায়গায় খুঁজুন', 7 | 'placeholder' => 'খুঁজুন', 8 | ], 9 | 10 | 'no_results_message' => 'খুঁজে পাওয়া যায়নি।', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bn/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'সাইন আউট', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'স্বাগতম', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ca/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Cerca global', 7 | 'placeholder' => 'Cerca', 8 | ], 9 | 10 | 'no_results_message' => 'No s\'han trobat resultats.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/cs/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Vyhledávání', 7 | 'placeholder' => 'Hledat', 8 | ], 9 | 10 | 'no_results_message' => 'Nenalezeny žádné výsledky.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/cs/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Odhlásit se', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Vítejte', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/da/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Log ud', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Velkommen', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/de/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Abmelden', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Willkommen', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/en/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Global search', 7 | 'placeholder' => 'Search', 8 | ], 9 | 10 | 'no_results_message' => 'No search results found.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/en/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Sign out', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Welcome', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/es/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Salir', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bienvenida/o', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fi/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globaali haku', 7 | 'placeholder' => 'Etsi', 8 | ], 9 | 10 | 'no_results_message' => 'Hakutuloksia ei löytynyt.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fr/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Déconnexion', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bonjour', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hi/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'वैश्विक खोज', 7 | 'placeholder' => 'खोजें', 8 | ], 9 | 10 | 'no_results_message' => 'कोई खोज परिणाम नहीं मिला।', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hr/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Odjava', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Dobrodošli', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ka/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'გლობალური ძიება', 7 | 'placeholder' => 'ძიება', 8 | ], 9 | 10 | 'no_results_message' => 'შედეგები ვერ მოიძებნა.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ka/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'გასვლა', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'მოგესალმებით', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lv/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Iziet', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Laipni lūdzam', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/mn/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Бүгдээс хайх', 7 | 'placeholder' => 'Хайлт', 8 | ], 9 | 10 | 'no_results_message' => 'Хайлтын үр дүн олдсонгүй.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/mn/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Гарах', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Сайн байна уу?', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/my/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'ထွက်မည်', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'ကြိုဆိုပါတယ်', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/nl/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Uitloggen', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Welkom', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/no/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Logg ut', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Velkommen', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/np/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'सम्पूर्ण खोज', 7 | 'placeholder' => 'खोज', 8 | ], 9 | 10 | 'no_results_message' => 'कुनै खोज परिणाम फेला परेन।', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pl/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Wyloguj się', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Witaj', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_BR/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Logout', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bem-vindo', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sk/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Odhlásiť sa', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Vitajte', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sl/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Odjava', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Dobrodošli', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sq/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Kërkim global', 7 | 'placeholder' => 'Kërko', 8 | ], 9 | 10 | 'no_results_message' => 'Nuk u gjet asnjë result.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sq/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Dil', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Mirë se vini', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sv/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Logga ut', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Välkommen', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uz/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Global qidiruv', 7 | 'placeholder' => 'Qidirish', 8 | ], 9 | 10 | 'no_results_message' => 'Hech narsa topilmadi.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/vi/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Đăng xuất', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Xin chào', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/views/mail/invoice/paid.blade.php: -------------------------------------------------------------------------------- 1 | 2 | # Introduction 3 | 4 | The body of your message. 5 | 6 | 7 | Button Text 8 | 9 | 10 | Thanks,
11 | {{ config('app.name') }} 12 |
13 | -------------------------------------------------------------------------------- /resources/views/mail/user/updated.blade.php: -------------------------------------------------------------------------------- 1 | 2 | # Introduction 3 | 4 | The body of your message. 5 | 6 | 7 | Button Text 8 | 9 | 10 | Thanks,
11 | {{ config('app.name') }} 12 |
13 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteOptions inherit 2 | 3 | 4 | RewriteEngine on 5 | RewriteCond %{HTTP_HOST} ^www.Lara4.com 6 | RewriteRule (.*) https://Lara4.com/$1 [R=301,L] 7 | 8 | RewriteEngine On 9 | RewriteRule ^(.*) public/$1 [L] 10 | 11 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "paths": { 5 | "@/*": ["resources/js/*"], 6 | "ziggy-js": ["./vendor/tightenco/ziggy"] 7 | } 8 | }, 9 | "exclude": ["node_modules", "public"] 10 | } 11 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ckb/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'چوونەدەرەوە', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'بەخێربێیت', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/da/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Global søgning', 7 | 'placeholder' => 'Søg', 8 | ], 9 | 10 | 'no_results_message' => 'Ingen søgeresultater fundet.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/de/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globale Suche', 7 | 'placeholder' => 'Suchen', 8 | ], 9 | 10 | 'no_results_message' => 'Keine Ergebnisse gefunden.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/el/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Αποσύνδεση', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Καλώς ήρθες', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fi/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Kirjaudu ulos', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Tervetuloa', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hu/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Kijelentkezés', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Üdvözlünk', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hy/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Դուրս գալ', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Բարի գալուստ', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/id/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Pencarian global', 7 | 'placeholder' => 'Cari', 8 | ], 9 | 10 | 'no_results_message' => 'Pencarian tidak ditemukan.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/id/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Keluar', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Selamat Datang', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/it/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Disconnetti', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Benvenuto', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ku/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'چوونەدەرەوە', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'بەخێربێیت', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lt/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globali paieška', 7 | 'placeholder' => 'Paieška', 8 | ], 9 | 10 | 'no_results_message' => 'Paieškos rezultatų nėra.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lt/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Atsijungti', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Sveiki atvykę', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ms/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Carian global', 7 | 'placeholder' => 'Carian', 8 | ], 9 | 10 | 'no_results_message' => 'Tiada hasil carian ditemui.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ms/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Log keluar', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Selamat datang', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/nl/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globaal zoeken', 7 | 'placeholder' => 'Zoeken', 8 | ], 9 | 10 | 'no_results_message' => 'Geen resultaten gevonden.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ro/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Căutare globală', 7 | 'placeholder' => 'Căutare', 8 | ], 9 | 10 | 'no_results_message' => 'Nu s-au găsit rezultate', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ro/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Deconectare', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bun venit', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ru/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Выход', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Добро пожаловать', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sk/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Vyhľadávanie', 7 | 'placeholder' => 'Hľadať', 8 | ], 9 | 10 | 'no_results_message' => 'Nenašli sa žiadne výsledky.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sl/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globalno iskanje', 7 | 'placeholder' => 'Iskanje', 8 | ], 9 | 10 | 'no_results_message' => 'Ni rezultatov iskanja..', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/th/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'ออกจากระบบ', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'ยินดีต้อนรับ', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/tr/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Oturumu kapat', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Hoş geldin', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uz/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Chiqish', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Hush kelibsiz', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bg/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Глобално търсене', 7 | 'placeholder' => 'Търсене...', 8 | ], 9 | 10 | 'no_results_message' => 'Няма намерени резултати.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ca/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Tancar la sessió', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Benvingut/da', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/el/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Γενική αναζήτηση', 7 | 'placeholder' => 'Αναζήτηση', 8 | ], 9 | 10 | 'no_results_message' => 'Δεν βρέθηκαν αποτελέσματα.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/es/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Búsqueda global', 7 | 'placeholder' => 'Buscar', 8 | ], 9 | 10 | 'no_results_message' => 'No se han encontrado resultados.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hy/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Գլոբալ որոնում', 7 | 'placeholder' => 'Որոնել', 8 | ], 9 | 10 | 'no_results_message' => 'Որոնման արդյունքներ չեն գտնվել։', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ku/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'گەڕانی گشتی', 7 | 'placeholder' => 'گەڕان', 8 | ], 9 | 10 | 'no_results_message' => 'هیچ ئەنجامێک بۆ گەڕانەکەت نەدۆزرایەوە.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/np/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'साइन आउट गर्नुहोस्', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'स्वागतम्', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pl/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Wyszukiwanie globalne', 7 | 'placeholder' => 'Szukaj', 8 | ], 9 | 10 | 'no_results_message' => 'Nie znaleziono wyników.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_PT/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Terminar Sessão', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bem-vindo', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bs/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globalna pretraga', 7 | 'placeholder' => 'Tražite', 8 | ], 9 | 10 | 'no_results_message' => 'Nisu pronađeni rezultati pretrage.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ckb/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'گەڕانی گشتی', 7 | 'placeholder' => 'گەڕان', 8 | ], 9 | 10 | 'no_results_message' => 'هیچ ئەنجامێک بۆ گەڕانەکەت نەدۆزرایەوە.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fa/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'جستجو در کل سایت', 7 | 'placeholder' => 'جستجو', 8 | ], 9 | 10 | 'no_results_message' => 'نتیجه‌ای برای جستجوی شما یافت نشد.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lv/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Vispārēja meklēšana', 7 | 'placeholder' => 'Meklēt', 8 | ], 9 | 10 | 'no_results_message' => 'Meklēšanas rezultāti nav atrasti.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/my/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'ကမ္ဘာလုံးဆိုင်ရာ ရှာဖွေမှု', 7 | 'placeholder' => 'ရှာမယ်', 8 | ], 9 | 10 | 'no_results_message' => 'ရှာဖွေမှုရလဒ်များ မတွေ့ပါ', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_BR/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Pesquisa global', 7 | 'placeholder' => 'Pesquisar', 8 | ], 9 | 10 | 'no_results_message' => 'Nenhum resultado encontrado.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_PT/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Pesquisa global', 7 | 'placeholder' => 'Pesquisar', 8 | ], 9 | 10 | 'no_results_message' => 'Nenhum resultado encontrado.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uk/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Глобальний пошук', 7 | 'placeholder' => 'Пошук', 8 | ], 9 | 10 | 'no_results_message' => 'Не знайдено жодних результатів пошуку.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/vi/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Tìm kiếm toàn hệ thống', 7 | 'placeholder' => 'Tìm kiếm', 8 | ], 9 | 10 | 'no_results_message' => 'Không tìm thấy kết quả nào.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/it/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Ricerca globale', 7 | 'placeholder' => 'Ricerca', 8 | ], 9 | 10 | 'no_results_message' => 'Nessun risultato trovato per la ricerca.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/km/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'ការស្វែងរកក្នុងប្រព័ន្ធទូទៅ', 7 | 'placeholder' => 'ស្វែងរក', 8 | ], 9 | 10 | 'no_results_message' => 'រកមិនឃើញលទ្ធផលនៃការស្វែងរកទេ។', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/km/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'ចាកចេញពីកម្មវិធីប្រព័ន្ធ', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'សូមស្វាគមន៍', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sw/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Tafuta kote', 7 | 'placeholder' => 'Tafuta', 8 | ], 9 | 10 | 'no_results_message' => 'Hakuna matokeo ya utafutaji yaliyopatikana.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fr/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Recherche globale', 7 | 'placeholder' => 'Rechercher', 8 | ], 9 | 10 | 'no_results_message' => "Désolé, aucun résultat n'a été trouvé.", 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hr/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globalno pretraživanje', 7 | 'placeholder' => 'Pretraži', 8 | ], 9 | 10 | 'no_results_message' => 'Nema pronađenih rezultata pretraživanja.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ja/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label 詳細', 6 | 7 | 'breadcrumb' => '詳細', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => '詳細', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ko/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label 보기', 6 | 7 | 'breadcrumb' => '보기', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => '보기', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | 'عرض :label', 6 | 7 | 'breadcrumb' => 'عرض', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'عرض', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/da/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Vis :label', 6 | 7 | 'breadcrumb' => 'Vis', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Vis', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/en/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'View :label', 6 | 7 | 'breadcrumb' => 'View', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'View', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/es/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Ver :label', 6 | 7 | 'breadcrumb' => 'Ver', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Ver', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/mn/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Үзэх :label', 6 | 7 | 'breadcrumb' => 'Үзэх', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Үзэх', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/no/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Vis :label', 6 | 7 | 'breadcrumb' => 'Vis', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Vis', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sv/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Visa :label', 6 | 7 | 'breadcrumb' => 'Visa', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Visa', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/vi/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Xem :label', 6 | 7 | 'breadcrumb' => 'Xem', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Xem', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_CN/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label 详情', 6 | 7 | 'breadcrumb' => '详情', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => '详情', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bn/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label দেখুন', 6 | 7 | 'breadcrumb' => 'দেখুন', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'দেখুন', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ca/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Veure :label', 6 | 7 | 'breadcrumb' => 'Veure', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Veure', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ckb/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'بینینی :label', 6 | 7 | 'breadcrumb' => 'بینین', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'بینین', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fi/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Näytä :label', 6 | 7 | 'breadcrumb' => 'Näytä', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Näytä', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/he/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'תצוגת :label', 6 | 7 | 'breadcrumb' => 'הצגה', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'הצגה', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/id/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Lihat :label', 6 | 7 | 'breadcrumb' => 'Lihat', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Lihat', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ku/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'بینینی :label', 6 | 7 | 'breadcrumb' => 'بینین', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'بینین', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ms/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Lihat :label', 6 | 7 | 'breadcrumb' => 'Lihat', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Lihat', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sq/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Pamje :label', 6 | 7 | 'breadcrumb' => 'Pamje', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Pamje', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/az/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label göstər', 6 | 7 | 'breadcrumb' => 'Göstər', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Göstər', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bs/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Pogled :label', 6 | 7 | 'breadcrumb' => 'Pogled', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Pogled', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/de/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label ansehen', 6 | 7 | 'breadcrumb' => 'Ansehen', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Ansehen', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fa/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'مشاهده :label', 6 | 7 | 'breadcrumb' => 'مشاهده', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'مشاهده', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lv/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Skatīt :label', 6 | 7 | 'breadcrumb' => 'Skatīt', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Skatīt', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pl/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Podgląd :label', 6 | 7 | 'breadcrumb' => 'Podgląd', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Podgląd', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sk/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Zobraziť :label', 6 | 7 | 'breadcrumb' => 'Detail', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Zobraziť', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sl/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Prikaži :label', 6 | 7 | 'breadcrumb' => 'Prikaži', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Prikaži', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sw/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Angalia :label', 6 | 7 | 'breadcrumb' => 'Angalia', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Angalia', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/th/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label', 6 | 7 | 'breadcrumb' => 'รายละเอียด', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'รายละเอียด', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #2b5797 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bg/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Преглед на :label', 6 | 7 | 'breadcrumb' => 'Преглед', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Детайли', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/cs/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Zobrazit :label', 6 | 7 | 'breadcrumb' => 'Zobrazit', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Zobrazit', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fr/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Afficher :label', 6 | 7 | 'breadcrumb' => 'Afficher', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Afficher', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hr/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Pregled :label', 6 | 7 | 'breadcrumb' => 'Pregledaj', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Pregled', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/nl/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':Label bekijken', 6 | 7 | 'breadcrumb' => 'Bekijken', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Bekijken', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ru/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Просмотр :label', 6 | 7 | 'breadcrumb' => 'Просмотр', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Просмотр', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/tr/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label görüntüle', 6 | 7 | 'breadcrumb' => 'Görüntüle', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Görüntüle', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uk/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Перегляд :label', 6 | 7 | 'breadcrumb' => 'Перегляд', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Перегляд', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uz/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':labelni ko\'rish', 6 | 7 | 'breadcrumb' => 'Ko\'rish', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Ko\'rish', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/it/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Visualizza :label', 6 | 7 | 'breadcrumb' => 'Visualizza', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Visualizza', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lt/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Peržiūrėti :label', 6 | 7 | 'breadcrumb' => 'Peržiūrėti', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Peržiūrėti', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/np/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label हेर्नुहोस्', 6 | 7 | 'breadcrumb' => 'हेर्नुहोस्', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'हेर्नुहोस्', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hu/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label megtekintése', 6 | 7 | 'breadcrumb' => 'Megtekintés', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Megtekintés', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ka/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'ათვალიერებთ :label', 6 | 7 | 'breadcrumb' => 'დათვალიერება', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'დათვალიერება', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/km/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'ស្លាក​សញ្ញា :label', 6 | 7 | 'breadcrumb' => 'ស្លាក​សញ្ញា', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'ស្លាក​សញ្ញា', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_BR/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Visualizar :label', 6 | 7 | 'breadcrumb' => 'Visualizar', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Visualizar', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_PT/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Visualizar :label', 6 | 7 | 'breadcrumb' => 'Visualizar', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Visualizar', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ro/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Vizualizare :label', 6 | 7 | 'breadcrumb' => 'Vizualizare', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Vizualizare', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/js/Components/Icons/IconTaskReporting.vue: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/el/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Προεπισκόπηση :label', 6 | 7 | 'breadcrumb' => 'Προεπισκόπηση', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Προεπισκόπηση', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/el/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Οδηγός', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fi/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Ohjeet', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/he/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'תיעוד', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ja/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'ドキュメント', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ko/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => '도큐먼트', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/my/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'အညွန်း', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/np/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'कागजात', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uz/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Hujjat', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_CN/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => '文档', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ar/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'الوثائق', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/cs/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentace', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fa/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'مستندات', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'گیت‌هاب', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hi/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'प्रलेखन', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hy/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Փաստաթղթեր', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/id/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentasi', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/km/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'ចូលមើលឯកសារ', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ms/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentasi', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sw/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Nyaraka', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/vi/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Tài liệu', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_TW/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => '說明文件', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/az/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentasiya', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bg/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Документация', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bn/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'ব্যবহার গাইড', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'গিটহাব', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bs/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentacija', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ca/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentació', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ckb/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/da/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/de/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/en/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/es/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentación', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fr/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hr/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentacija', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hu/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentáció', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/it/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentazione', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ka/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'დოკუმენტაცია', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ku/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lt/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentacija', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lv/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentācija', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/mn/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Гарын авлага', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/nl/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentatie', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/no/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentasjon', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pl/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentacja', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_BR/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentação', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_PT/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentação', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ro/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentație', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ru/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Документация', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sk/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentácia', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sl/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentacija', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sq/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sv/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/th/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'เอกสารคู่มือ', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/tr/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokümantasyon', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uk/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Документація', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 4 7 | indent_style = space 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [docker-compose.yml] 18 | indent_size = 4 19 | -------------------------------------------------------------------------------- /resources/js/Components/Forms/InputError.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 16 | -------------------------------------------------------------------------------- /resources/js/Components/Icons/IconPlay.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /app/Filament/Resources/TagResource/Pages/CreateTag.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | #{{ name }} 4 | 5 | 6 | 7 | 15 | -------------------------------------------------------------------------------- /database/seeders/NewsletterSeeder.php: -------------------------------------------------------------------------------- 1 | 2 | defineProps({ 3 | value: { 4 | type: String, 5 | }, 6 | }); 7 | 8 | 9 | 15 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 8 | })->purpose('Display an inspiring quote')->hourly(); 9 | 10 | Schedule::command('generate-sitemap')->daily(); 11 | 12 | Schedule::command('backup:run --only-db')->daily(); 13 | -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource/Pages/CreateCategory.php: -------------------------------------------------------------------------------- 1 | handleCommand(new ArgvInput); 14 | 15 | exit($status); 16 | -------------------------------------------------------------------------------- /docker/8.0/supervisord.conf: -------------------------------------------------------------------------------- 1 | [supervisord] 2 | nodaemon=true 3 | user=root 4 | logfile=/var/log/supervisor/supervisord.log 5 | pidfile=/var/run/supervisord.pid 6 | 7 | [program:php] 8 | command=%(ENV_SUPERVISOR_PHP_COMMAND)s 9 | user=%(ENV_SUPERVISOR_PHP_USER)s 10 | environment=LARAVEL_SAIL="1" 11 | stdout_logfile=/dev/stdout 12 | stdout_logfile_maxbytes=0 13 | stderr_logfile=/dev/stderr 14 | stderr_logfile_maxbytes=0 15 | -------------------------------------------------------------------------------- /docker/8.1/supervisord.conf: -------------------------------------------------------------------------------- 1 | [supervisord] 2 | nodaemon=true 3 | user=root 4 | logfile=/var/log/supervisor/supervisord.log 5 | pidfile=/var/run/supervisord.pid 6 | 7 | [program:php] 8 | command=%(ENV_SUPERVISOR_PHP_COMMAND)s 9 | user=%(ENV_SUPERVISOR_PHP_USER)s 10 | environment=LARAVEL_SAIL="1" 11 | stdout_logfile=/dev/stdout 12 | stdout_logfile_maxbytes=0 13 | stderr_logfile=/dev/stderr 14 | stderr_logfile_maxbytes=0 15 | -------------------------------------------------------------------------------- /docker/8.2/supervisord.conf: -------------------------------------------------------------------------------- 1 | [supervisord] 2 | nodaemon=true 3 | user=root 4 | logfile=/var/log/supervisor/supervisord.log 5 | pidfile=/var/run/supervisord.pid 6 | 7 | [program:php] 8 | command=%(ENV_SUPERVISOR_PHP_COMMAND)s 9 | user=%(ENV_SUPERVISOR_PHP_USER)s 10 | environment=LARAVEL_SAIL="1" 11 | stdout_logfile=/dev/stdout 12 | stdout_logfile_maxbytes=0 13 | stderr_logfile=/dev/stderr 14 | stderr_logfile_maxbytes=0 15 | -------------------------------------------------------------------------------- /docker/8.3/supervisord.conf: -------------------------------------------------------------------------------- 1 | [supervisord] 2 | nodaemon=true 3 | user=root 4 | logfile=/var/log/supervisor/supervisord.log 5 | pidfile=/var/run/supervisord.pid 6 | 7 | [program:php] 8 | command=%(ENV_SUPERVISOR_PHP_COMMAND)s 9 | user=%(ENV_SUPERVISOR_PHP_USER)s 10 | environment=LARAVEL_SAIL="1" 11 | stdout_logfile=/dev/stdout 12 | stdout_logfile_maxbytes=0 13 | stderr_logfile=/dev/stderr 14 | stderr_logfile_maxbytes=0 15 | -------------------------------------------------------------------------------- /docker/8.4/supervisord.conf: -------------------------------------------------------------------------------- 1 | [supervisord] 2 | nodaemon=true 3 | user=root 4 | logfile=/var/log/supervisor/supervisord.log 5 | pidfile=/var/run/supervisord.pid 6 | 7 | [program:php] 8 | command=%(ENV_SUPERVISOR_PHP_COMMAND)s 9 | user=%(ENV_SUPERVISOR_PHP_USER)s 10 | environment=LARAVEL_SAIL="1" 11 | stdout_logfile=/dev/stdout 12 | stdout_logfile_maxbytes=0 13 | stderr_logfile=/dev/stderr 14 | stderr_logfile_maxbytes=0 15 | -------------------------------------------------------------------------------- /lang/vendor/filament-password-input/ar/password.php: -------------------------------------------------------------------------------- 1 | [ 8 | 9 | 'copy' => [ 10 | 'tooltip' => 'أنسخ', 11 | ], 12 | 13 | 'regenerate' => [ 14 | 'tooltip' => 'توليد كلمة مرور', 15 | 'success_message' => 'تم توليد كلمة المرور بنجاح!', 16 | ], 17 | 18 | ], 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /database/seeders/PostSeeder.php: -------------------------------------------------------------------------------- 1 | count(40)->create(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /database/seeders/TagSeeder.php: -------------------------------------------------------------------------------- 1 | count(10)->create(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- 1 | post('/register', [ 5 | 'name' => 'Test User', 6 | 'email' => 'test@example.com', 7 | 'password' => 'password', 8 | 'password_confirmation' => 'password', 9 | ]); 10 | 11 | $this->assertAuthenticated(); 12 | $response->assertRedirect('/dashboard'); 13 | }); 14 | -------------------------------------------------------------------------------- /database/seeders/PhoneSeeder.php: -------------------------------------------------------------------------------- 1 | count(10)->create(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/zh_CN/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => '保存', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => '已保存', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/cs/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Uložit', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Uloženo', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ja/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => '変更を保存', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => '保存しました', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ko/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => '변경 사항 저장', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => '저장 완료', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.phpunit.cache 2 | /bootstrap/ssr 3 | /node_modules 4 | /public/build 5 | /public/hot 6 | /public/storage 7 | /storage/*.key 8 | /storage/pail 9 | /vendor 10 | .env 11 | .env.backup 12 | .env.production 13 | .phpactor.json 14 | .phpunit.result.cache 15 | Homestead.json 16 | Homestead.yaml 17 | auth.json 18 | npm-debug.log 19 | yarn-error.log 20 | /public/sitemap.xml 21 | /.fleet 22 | /.idea 23 | /.vscode 24 | /.zed 25 | /.vite 26 | -------------------------------------------------------------------------------- /app/Filament/Clusters/Networking/Resources/PhoneResource/Pages/CreatePhone.php: -------------------------------------------------------------------------------- 1 | count(100)->create(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bg/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Запази', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Запазено', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/da/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Gem ændringer', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Gemt', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/en/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Save changes', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Saved', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/he/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'שמור שינויים', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'נשמר', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/id/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Simpan', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Disimpan', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lt/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Išsaugoti', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Išsaugota', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/vi/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Lưu thay đổi', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Đã lưu', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-password-input/en/password.php: -------------------------------------------------------------------------------- 1 | [ 8 | 9 | 'copy' => [ 10 | 'tooltip' => 'Copy to clipboard', 11 | ], 12 | 13 | 'regenerate' => [ 14 | 'tooltip' => 'Generate new password', 15 | 'success_message' => 'New password was generated!', 16 | ], 17 | 18 | ], 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ar/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'حفظ التغييرات', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'تم الحفظ', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ckb/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'نوێکردنەوە', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'نوێکرایەوە', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/de/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Speichern', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Gespeichert', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fa/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'ذخیره تغییرات', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'ذخیره شد', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fr/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Sauvegarder', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Sauvegardé', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/it/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Salva modifiche', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Salvato', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ku/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'نوێکردنەوە', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'نوێکرایەوە', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/no/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Lagre endringer', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Lagret', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pl/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Zapisz zmiany', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Zapisano', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sk/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Uložiť zmeny', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Uložené', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sq/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Ruaj ndryshimet', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Ruaj', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sv/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Spara ändringar', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Sparades', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uk/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Зберегти зміни', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Збережено', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /app/Filament/Clusters/Networking/Resources/CommentResource/Pages/CreateComment.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Desar canvis', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Canvis desats', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/es/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Guardar cambios', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Guardados', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hr/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Spremi promjene', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Spremljeno', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hu/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Változtatások mentése', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Mentve', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ka/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'ცვლილებების შენახვა', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'შენახულია', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ms/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Simpan perubahan', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Disimpan', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_BR/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Salvar alterações', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Salvo', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ru/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Сохранить изменения', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Сохранено', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sl/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Shrani spremembe', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Shranjeno', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/th/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'บันทึก', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'บันทึกข้อมูลเรียบร้อย', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-password-input/pt_BR/password.php: -------------------------------------------------------------------------------- 1 | [ 8 | 9 | 'copy' => [ 10 | 'tooltip' => 'Copiar para a área de transferência', 11 | ], 12 | 13 | 'regenerate' => [ 14 | 'tooltip' => 'Gerar nova senha', 15 | 'success_message' => 'Nova senha foi gerada!', 16 | ], 17 | 18 | ], 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fi/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Tallenna muutokset', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Tallennettu', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/km/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'រក្សាទុកការផ្លាស់ប្តូរ', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'បានរក្សាទុក', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/mn/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Өөрчлөлтийг хадгалах', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Хадгалагдсан', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/nl/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Wijzigingen opslaan', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Opgeslagen', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_PT/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Guardar alterações', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Guardado', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/tr/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Değişiklikleri kaydet', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Kaydedildi', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uz/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'O\'zgarishlarni saqlash', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Saqlandi', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lv/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Saglabāt izmaiņas', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Izmaiņas saglabātas', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ro/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Salvează modificările', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Salvat cu succes', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /public/vendor/log-viewer/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/app.js": "/app.js?id=6c51578cafcbf2f5e90fbf568a61ab8f", 3 | "/app.css": "/app.css?id=5593a0331dd40729ff41e32a6035d872", 4 | "/img/log-viewer-128.png": "/img/log-viewer-128.png?id=d576c6d2e16074d3f064e60fe4f35166", 5 | "/img/log-viewer-32.png": "/img/log-viewer-32.png?id=f8ec67d10f996aa8baf00df3b61eea6d", 6 | "/img/log-viewer-64.png": "/img/log-viewer-64.png?id=8902d596fc883ca9eb8105bb683568c6" 7 | } 8 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/az/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Dəyişiklikləri Yadda Saxla', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Yadda Saxlanıldı', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/np/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'परिवर्तनहरू सुरक्षित गर्नुहोस', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'सुरक्षित गरियो', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /app/Filament/Clusters/Networking/Resources/NewsletterResource/Pages/CreateNewsletter.php: -------------------------------------------------------------------------------- 1 | create(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /lang/vendor/filament-password-input/pt_PT/password.php: -------------------------------------------------------------------------------- 1 | [ 8 | 9 | 'copy' => [ 10 | 'tooltip' => 'Copiar para a área de transferência', 11 | ], 12 | 13 | 'regenerate' => [ 14 | 'tooltip' => 'Gerar nova palavra-passe', 15 | 'success_message' => 'Palavra-passe gerada com sucesso!', 16 | ], 17 | 18 | ], 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /resources/js/Components/Icons/IconX.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | /* eslint-env node */ 2 | require("@rushstack/eslint-patch/modern-module-resolution") 3 | 4 | module.exports = { 5 | root: true, 6 | extends: [ 7 | "plugin:vue/vue3-essential", 8 | "eslint:recommended", 9 | "@vue/eslint-config-prettier" 10 | ], 11 | parserOptions: { 12 | ecmaVersion: "latest" 13 | }, 14 | rules: { 15 | "vue/multi-word-component-names": "off", 16 | "no-undef": "off" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /resources/js/Components/Icons/IconBars.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /config/vue-i18n-generator.php: -------------------------------------------------------------------------------- 1 | php artisan vue:translations 11 | */ 12 | 13 | 'outputFile' => resource_path('js/i18n/locales.js'), 14 | ]; 15 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-language-switch/components/flag.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'src', 3 | 'alt' => '', 4 | 'circular' => false, 5 | 'switch' => false, 6 | ]) 7 | class([ 11 | 'object-cover object-center', 12 | 'rounded-full' => $circular, 13 | 'rounded-lg' => ! $circular && ! $switch, 14 | 'rounded-md' => ! $circular && $switch, 15 | ]) 16 | }} 17 | /> -------------------------------------------------------------------------------- /app/Filament/Resources/TagResource/Pages/ViewTag.php: -------------------------------------------------------------------------------- 1 | 2 | import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout.vue'; 3 | import { Head } from '@inertiajs/vue3'; 4 | import GeneralLayout from '@/Layouts/GeneralLayout.vue'; 5 | 6 | 7 | 18 | -------------------------------------------------------------------------------- /app/Filament/Resources/TagResource/Pages/ListTags.php: -------------------------------------------------------------------------------- 1 | 2 | import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout.vue'; 3 | import { Head } from '@inertiajs/vue3'; 4 | import GeneralLayout from '@/Layouts/GeneralLayout.vue'; 5 | 6 | 7 | 18 | -------------------------------------------------------------------------------- /app/Filament/Resources/PostResource/Pages/ListPosts.php: -------------------------------------------------------------------------------- 1 | { 11 | console.log('setLocale', locale); 12 | if (translations[locale]) { 13 | i18n.global.locale = locale; 14 | } else { 15 | console.error(`Locale ${locale} not found.`); 16 | } 17 | }; 18 | 19 | export default i18n; 20 | -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource/Pages/ViewCategory.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | class ProviderFactory extends Factory 11 | { 12 | /** 13 | * Define the model's default state. 14 | * 15 | * @return array 16 | */ 17 | public function definition(): array 18 | { 19 | return [ 20 | // 21 | ]; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- 1 | handleRequest(Request::capture()); 18 | -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource/Pages/ListCategories.php: -------------------------------------------------------------------------------- 1 | '대시보드', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => '필터', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => '필터', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => '적용', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Laravel Starter", 3 | "short_name": "Laravel Starter", 4 | "icons": [ 5 | { 6 | "src": "/web-app-manifest-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png", 9 | "purpose": "maskable" 10 | }, 11 | { 12 | "src": "/web-app-manifest-512x512.png", 13 | "sizes": "512x512", 14 | "type": "image/png", 15 | "purpose": "maskable" 16 | } 17 | ], 18 | "theme_color": "#ffffff", 19 | "background_color": "#ffffff", 20 | "display": "standalone" 21 | } 22 | -------------------------------------------------------------------------------- /resources/js/Components/Icons/IconTaskInventory.vue: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /app/Filament/Resources/PostResource/Pages/ViewPost.php: -------------------------------------------------------------------------------- 1 | 'ダッシュボード', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'フィルタ', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'フィルタ', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => '適用', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/cs/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nástěnka', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtr', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filtr', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Použít', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/de/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filter', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filter', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Übernehmen', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | ]; 33 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/no/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashbord', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtrer', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filter', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Bruk', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ar/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'لوحة التحكم', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'تصفية', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'تصفية', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'تطبيق', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/bg/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Табло', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Филтър', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Филтриране', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Приложи', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ca/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Escriptori', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtre', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filtre', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Aplicar', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/da/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtrer', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filter', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Anvend', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/en/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filter', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filter', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Apply', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/es/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Escritorio', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtro', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filtro', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Aplicar', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/id/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dasbor', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filter', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filter', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Terapkan', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/it/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtro', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filtro', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Applica', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ka/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'მიმოხილვა', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'ფილტრი', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'ფილტრი', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'შესრულება', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sk/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nástenka', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtre', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filtre', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Použiť', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sv/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filter', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filter', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Använd', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/vi/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Bảng điều khiển', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Bộ lọc', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Bộ lọc', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Áp dụng', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | ]; 33 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/fi/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Ohjausnäkymä', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Suodatin', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Suodatin', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Käytä', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/hu/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Vezérlőpult', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Szűrés', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Szűrés', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Alkalmazás', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/lt/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Pagrindinis puslapis', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtras', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filtras', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Taikyti', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | ]; 33 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ms/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Papan pemuka', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Penapis', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Penapis', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Mohon', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/nl/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filteren', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filteren', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Toepassen', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ro/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Panoul de control', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtru', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filtru', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Aplică', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/ru/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Инфопанель', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Фильтр', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Фильтр', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Применить', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/sl/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nadzorna plošča', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filter', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filter', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Uporabi', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/th/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'แดชบอร์ด', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'ตัวกรอง', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'ตัวกรอง', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'ใช้ตัวกรอง', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/uk/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Інфопанель', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Фільтр', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Фільтр', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Застосувати', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /app/Filament/Clusters/Networking/Resources/PhoneResource/Pages/ViewPhone.php: -------------------------------------------------------------------------------- 1 | 'Tableau de bord', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtrer', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filtrer', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Appliquer', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/km/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ផ្ទាំងគ្រប់គ្រងទូទៅ', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'តម្រង', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'តម្រង', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'អនុវត្ត', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/mn/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Хяналтын самбар', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Шүүлтүүр', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Шүүлтүүр', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Батлах', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /lang/vendor/filament-panels/pt_PT/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Painel de Controlo', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtro', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filtro', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Aplicar', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | --------------------------------------------------------------------------------