├── .prettierrc ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── bin └── build.js ├── bootstrap └── app.php ├── composer.json ├── composer.lock ├── mix-manifest.json ├── monorepo-builder.php ├── package-lock.json ├── package.json ├── packages ├── admin │ ├── .stubs.php │ ├── composer.json │ ├── config │ │ └── filament.php │ ├── dist │ │ ├── app.css │ │ ├── app.css.map │ │ ├── app.js │ │ ├── app.js.map │ │ ├── echo.js │ │ ├── echo.js.map │ │ └── mix-manifest.json │ ├── docs │ │ ├── 01-installation.md │ │ ├── 02-resources │ │ │ ├── 01-getting-started.md │ │ │ ├── 02-listing-records.md │ │ │ ├── 03-creating-records.md │ │ │ ├── 04-editing-records.md │ │ │ ├── 05-viewing-records.md │ │ │ ├── 06-deleting-records.md │ │ │ ├── 07-relation-managers.md │ │ │ ├── 08-global-search.md │ │ │ ├── 09-widgets.md │ │ │ ├── 10-custom-pages.md │ │ │ └── 11-security.md │ │ ├── 03-pages │ │ │ ├── 01-getting-started.md │ │ │ ├── 02-actions.md │ │ │ └── 03-widgets.md │ │ ├── 04-dashboard │ │ │ ├── 01-getting-started.md │ │ │ ├── 02-stats.md │ │ │ ├── 03-charts.md │ │ │ └── 04-tables.md │ │ ├── 05-navigation.md │ │ ├── 06-users.md │ │ ├── 07-notifications.md │ │ ├── 08-appearance.md │ │ ├── 09-plugins.md │ │ ├── 10-testing.md │ │ └── 11-upgrade-guide.md │ ├── resources │ │ ├── css │ │ │ └── app.css │ │ ├── js │ │ │ ├── app.js │ │ │ └── echo.js │ │ ├── lang │ │ │ ├── ar │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── bn │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── bs │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── ca │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── cs │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── da │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── de │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── el │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── en │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── es │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── eu │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── fa │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── fi │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── fr │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── he │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── hi │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── hu │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── hy │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── id │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── it │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── ja │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── km │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── ko │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── ku │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── lt │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── lv │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── mn │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── ms │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── my │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── nl │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── pl │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── pt_BR │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── pt_PT │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── ro │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── ru │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── sv │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── sw │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── tr │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── uk │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── vi │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ ├── zh_CN │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ │ └── pages │ │ │ │ │ │ ├── create-record.php │ │ │ │ │ │ ├── edit-record.php │ │ │ │ │ │ ├── list-records.php │ │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ │ ├── account-widget.php │ │ │ │ │ └── filament-info-widget.php │ │ │ └── zh_TW │ │ │ │ ├── global-search.php │ │ │ │ ├── layout.php │ │ │ │ ├── login.php │ │ │ │ ├── pages │ │ │ │ └── dashboard.php │ │ │ │ ├── resources │ │ │ │ └── pages │ │ │ │ │ ├── create-record.php │ │ │ │ │ ├── edit-record.php │ │ │ │ │ ├── list-records.php │ │ │ │ │ └── view-record.php │ │ │ │ └── widgets │ │ │ │ ├── account-widget.php │ │ │ │ └── filament-info-widget.php │ │ └── views │ │ │ ├── components │ │ │ ├── brand-icon.blade.php │ │ │ ├── brand.blade.php │ │ │ ├── button.blade.php │ │ │ ├── card │ │ │ │ ├── heading.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── dropdown │ │ │ │ ├── header.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ ├── item.blade.php │ │ │ │ └── list │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── item.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── form │ │ │ │ ├── actions.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── global-search │ │ │ │ ├── actions │ │ │ │ │ ├── action.blade.php │ │ │ │ │ └── index.blade.php │ │ │ │ ├── end.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ ├── input.blade.php │ │ │ │ ├── no-results-message.blade.php │ │ │ │ ├── result-group.blade.php │ │ │ │ ├── result.blade.php │ │ │ │ ├── results-container.blade.php │ │ │ │ └── start.blade.php │ │ │ ├── header │ │ │ │ ├── heading.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── subheading.blade.php │ │ │ ├── hr.blade.php │ │ │ ├── icon-button.blade.php │ │ │ ├── layouts │ │ │ │ ├── app.blade.php │ │ │ │ ├── app │ │ │ │ │ ├── sidebar │ │ │ │ │ │ ├── badge.blade.php │ │ │ │ │ │ ├── end.blade.php │ │ │ │ │ │ ├── footer.blade.php │ │ │ │ │ │ ├── group.blade.php │ │ │ │ │ │ ├── index.blade.php │ │ │ │ │ │ ├── item.blade.php │ │ │ │ │ │ └── start.blade.php │ │ │ │ │ └── topbar │ │ │ │ │ │ ├── breadcrumbs.blade.php │ │ │ │ │ │ ├── database-notifications-trigger.blade.php │ │ │ │ │ │ └── user-menu.blade.php │ │ │ │ ├── base.blade.php │ │ │ │ └── card.blade.php │ │ │ ├── link.blade.php │ │ │ ├── modal │ │ │ │ ├── actions.blade.php │ │ │ │ ├── heading.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── subheading.blade.php │ │ │ ├── notification-manager.blade.php │ │ │ ├── page.blade.php │ │ │ ├── pages │ │ │ │ └── actions │ │ │ │ │ ├── action.blade.php │ │ │ │ │ └── index.blade.php │ │ │ ├── resources │ │ │ │ └── relation-managers │ │ │ │ │ └── index.blade.php │ │ │ ├── stats │ │ │ │ ├── card.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── tabs │ │ │ │ ├── index.blade.php │ │ │ │ └── item.blade.php │ │ │ ├── topbar.blade.php │ │ │ ├── user-avatar.blade.php │ │ │ ├── widget.blade.php │ │ │ └── widgets.blade.php │ │ │ ├── global-search │ │ │ └── actions │ │ │ │ ├── button-action.blade.php │ │ │ │ ├── icon-button-action.blade.php │ │ │ │ └── link-action.blade.php │ │ │ ├── login.blade.php │ │ │ ├── pages │ │ │ ├── actions │ │ │ │ ├── button-action.blade.php │ │ │ │ ├── group.blade.php │ │ │ │ ├── grouped-action.blade.php │ │ │ │ ├── icon-button-action.blade.php │ │ │ │ ├── link-action.blade.php │ │ │ │ ├── modal │ │ │ │ │ └── actions │ │ │ │ │ │ └── button-action.blade.php │ │ │ │ └── select-action.blade.php │ │ │ └── dashboard.blade.php │ │ │ ├── resources │ │ │ ├── pages │ │ │ │ ├── create-record.blade.php │ │ │ │ ├── edit-record.blade.php │ │ │ │ ├── list-records.blade.php │ │ │ │ └── view-record.blade.php │ │ │ └── relation-manager.blade.php │ │ │ └── widgets │ │ │ ├── account-widget.blade.php │ │ │ ├── chart-widget.blade.php │ │ │ ├── filament-info-widget.blade.php │ │ │ ├── stats-overview-widget.blade.php │ │ │ ├── stats-overview-widget │ │ │ └── card.blade.php │ │ │ └── table-widget.blade.php │ ├── routes │ │ └── web.php │ ├── src │ │ ├── AvatarProviders │ │ │ ├── Contracts │ │ │ │ └── AvatarProvider.php │ │ │ └── UiAvatarsProvider.php │ │ ├── Commands │ │ │ ├── Aliases │ │ │ │ ├── MakeBelongsToManyCommand.php │ │ │ │ ├── MakeHasManyCommand.php │ │ │ │ ├── MakeHasManyThroughCommand.php │ │ │ │ ├── MakeMorphManyCommand.php │ │ │ │ ├── MakeMorphToManyCommand.php │ │ │ │ ├── MakePageCommand.php │ │ │ │ ├── MakeRelationManagerCommand.php │ │ │ │ ├── MakeResourceCommand.php │ │ │ │ ├── MakeUserCommand.php │ │ │ │ └── MakeWidgetCommand.php │ │ │ ├── Concerns │ │ │ │ ├── CanIndentStrings.php │ │ │ │ ├── CanManipulateFiles.php │ │ │ │ └── CanValidateInput.php │ │ │ ├── MakeBelongsToManyCommand.php │ │ │ ├── MakeHasManyCommand.php │ │ │ ├── MakeHasManyThroughCommand.php │ │ │ ├── MakeMorphManyCommand.php │ │ │ ├── MakeMorphToManyCommand.php │ │ │ ├── MakePageCommand.php │ │ │ ├── MakeRelationManagerCommand.php │ │ │ ├── MakeResourceCommand.php │ │ │ ├── MakeUserCommand.php │ │ │ └── MakeWidgetCommand.php │ │ ├── Events │ │ │ └── ServingFilament.php │ │ ├── Facades │ │ │ └── Filament.php │ │ ├── FilamentManager.php │ │ ├── FilamentServiceProvider.php │ │ ├── GlobalSearch │ │ │ ├── Actions │ │ │ │ └── Action.php │ │ │ ├── Contracts │ │ │ │ └── GlobalSearchProvider.php │ │ │ ├── DefaultGlobalSearchProvider.php │ │ │ ├── GlobalSearchResult.php │ │ │ └── GlobalSearchResults.php │ │ ├── Http │ │ │ ├── Controllers │ │ │ │ └── AssetController.php │ │ │ ├── Livewire │ │ │ │ ├── Auth │ │ │ │ │ └── Login.php │ │ │ │ ├── Concerns │ │ │ │ │ └── CanNotify.php │ │ │ │ ├── GlobalSearch.php │ │ │ │ └── Notifications.php │ │ │ ├── Middleware │ │ │ │ ├── Authenticate.php │ │ │ │ ├── DispatchServingFilamentEvent.php │ │ │ │ └── MirrorConfigToSubpackages.php │ │ │ └── Responses │ │ │ │ └── Auth │ │ │ │ ├── Contracts │ │ │ │ ├── LoginResponse.php │ │ │ │ └── LogoutResponse.php │ │ │ │ ├── LoginResponse.php │ │ │ │ └── LogoutResponse.php │ │ ├── Models │ │ │ └── Contracts │ │ │ │ ├── FilamentUser.php │ │ │ │ ├── HasAvatar.php │ │ │ │ └── HasName.php │ │ ├── Navigation │ │ │ ├── NavigationBuilder.php │ │ │ ├── NavigationGroup.php │ │ │ ├── NavigationItem.php │ │ │ └── UserMenuItem.php │ │ ├── Pages │ │ │ ├── Actions │ │ │ │ ├── Action.php │ │ │ │ ├── ActionGroup.php │ │ │ │ ├── ButtonAction.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── BelongsToLivewire.php │ │ │ │ │ └── HasId.php │ │ │ │ ├── CreateAction.php │ │ │ │ ├── DeleteAction.php │ │ │ │ ├── EditAction.php │ │ │ │ ├── ForceDeleteAction.php │ │ │ │ ├── Modal │ │ │ │ │ └── Actions │ │ │ │ │ │ ├── Action.php │ │ │ │ │ │ └── ButtonAction.php │ │ │ │ ├── ReplicateAction.php │ │ │ │ ├── RestoreAction.php │ │ │ │ ├── SelectAction.php │ │ │ │ └── ViewAction.php │ │ │ ├── Concerns │ │ │ │ ├── HasActions.php │ │ │ │ └── HasFormActions.php │ │ │ ├── Contracts │ │ │ │ └── HasFormActions.php │ │ │ ├── Dashboard.php │ │ │ └── Page.php │ │ ├── PluginServiceProvider.php │ │ ├── Resources │ │ │ ├── Form.php │ │ │ ├── Pages │ │ │ │ ├── Concerns │ │ │ │ │ ├── HasRecordBreadcrumb.php │ │ │ │ │ ├── HasRelationManagers.php │ │ │ │ │ ├── HasWizard.php │ │ │ │ │ ├── InteractsWithRecord.php │ │ │ │ │ └── UsesResourceForm.php │ │ │ │ ├── CreateRecord.php │ │ │ │ ├── CreateRecord │ │ │ │ │ └── Concerns │ │ │ │ │ │ └── HasWizard.php │ │ │ │ ├── EditRecord.php │ │ │ │ ├── EditRecord │ │ │ │ │ └── Concerns │ │ │ │ │ │ └── HasWizard.php │ │ │ │ ├── ListRecords.php │ │ │ │ ├── ListRecords │ │ │ │ │ └── Concerns │ │ │ │ │ │ ├── CanCreateRecords.php │ │ │ │ │ │ ├── CanDeleteRecords.php │ │ │ │ │ │ ├── CanEditRecords.php │ │ │ │ │ │ └── CanViewRecords.php │ │ │ │ ├── ManageRecords.php │ │ │ │ ├── Page.php │ │ │ │ └── ViewRecord.php │ │ │ ├── RelationManagers │ │ │ │ ├── BelongsToManyRelationManager.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── CanAssociateRecords.php │ │ │ │ │ ├── CanAttachRecords.php │ │ │ │ │ ├── CanCreateRecords.php │ │ │ │ │ ├── CanDeleteRecords.php │ │ │ │ │ ├── CanDetachRecords.php │ │ │ │ │ ├── CanDissociateRecords.php │ │ │ │ │ ├── CanEditRecords.php │ │ │ │ │ └── CanViewRecords.php │ │ │ │ ├── HasManyRelationManager.php │ │ │ │ ├── HasManyThroughRelationManager.php │ │ │ │ ├── MorphManyRelationManager.php │ │ │ │ ├── MorphToManyRelationManager.php │ │ │ │ ├── RelationGroup.php │ │ │ │ └── RelationManager.php │ │ │ ├── Resource.php │ │ │ └── Table.php │ │ ├── Testing │ │ │ └── TestsPageActions.php │ │ ├── Widgets │ │ │ ├── AccountWidget.php │ │ │ ├── BarChartWidget.php │ │ │ ├── BubbleChartWidget.php │ │ │ ├── ChartWidget.php │ │ │ ├── Concerns │ │ │ │ └── CanPoll.php │ │ │ ├── DoughnutChartWidget.php │ │ │ ├── FilamentInfoWidget.php │ │ │ ├── LineChartWidget.php │ │ │ ├── PieChartWidget.php │ │ │ ├── PolarAreaChartWidget.php │ │ │ ├── RadarChartWidget.php │ │ │ ├── ScatterChartWidget.php │ │ │ ├── StatsOverviewWidget.php │ │ │ ├── StatsOverviewWidget │ │ │ │ └── Card.php │ │ │ ├── TableWidget.php │ │ │ └── Widget.php │ │ └── helpers.php │ ├── stubs │ │ ├── ChartWidget.stub │ │ ├── CustomResourcePage.stub │ │ ├── Page.stub │ │ ├── PageView.stub │ │ ├── RelationManager.stub │ │ ├── Resource.stub │ │ ├── ResourceEditPage.stub │ │ ├── ResourceListPage.stub │ │ ├── ResourceManagePage.stub │ │ ├── ResourcePage.stub │ │ ├── ResourceViewPage.stub │ │ ├── StatsOverviewWidget.stub │ │ ├── TableWidget.stub │ │ ├── Widget.stub │ │ └── WidgetView.stub │ └── tailwind.config.js ├── forms │ ├── .stubs.php │ ├── composer.json │ ├── config │ │ └── forms.php │ ├── dist │ │ ├── module.esm.css │ │ └── module.esm.js │ ├── docs │ │ ├── 01-installation.md │ │ ├── 02-getting-started.md │ │ ├── 03-fields.md │ │ ├── 04-layout.md │ │ ├── 05-validation.md │ │ ├── 06-advanced.md │ │ └── 07-testing.md │ ├── resources │ │ ├── css │ │ │ └── components │ │ │ │ ├── color-picker.css │ │ │ │ ├── file-upload.css │ │ │ │ ├── rich-editor.css │ │ │ │ ├── select.css │ │ │ │ └── tags-input.css │ │ ├── js │ │ │ ├── components │ │ │ │ ├── color-picker.js │ │ │ │ ├── date-time-picker.js │ │ │ │ ├── file-upload.js │ │ │ │ ├── key-value.js │ │ │ │ ├── markdown-editor.js │ │ │ │ ├── rich-editor.js │ │ │ │ ├── select.js │ │ │ │ ├── tags-input.js │ │ │ │ ├── text-input.js │ │ │ │ └── textarea.js │ │ │ ├── index.js │ │ │ └── sortable.js │ │ ├── lang │ │ │ ├── ar │ │ │ │ └── components.php │ │ │ ├── bn │ │ │ │ └── components.php │ │ │ ├── bs │ │ │ │ └── components.php │ │ │ ├── ca │ │ │ │ └── components.php │ │ │ ├── cs │ │ │ │ └── components.php │ │ │ ├── cy │ │ │ │ └── components.php │ │ │ ├── da │ │ │ │ └── components.php │ │ │ ├── de │ │ │ │ └── components.php │ │ │ ├── en │ │ │ │ └── components.php │ │ │ ├── es │ │ │ │ └── components.php │ │ │ ├── eu │ │ │ │ └── components.php │ │ │ ├── fa │ │ │ │ └── components.php │ │ │ ├── fi │ │ │ │ └── components.php │ │ │ ├── fr │ │ │ │ └── components.php │ │ │ ├── he │ │ │ │ └── components.php │ │ │ ├── hi │ │ │ │ └── components.php │ │ │ ├── hu │ │ │ │ └── components.php │ │ │ ├── hy │ │ │ │ └── components.php │ │ │ ├── id │ │ │ │ └── components.php │ │ │ ├── it │ │ │ │ └── components.php │ │ │ ├── ja │ │ │ │ └── components.php │ │ │ ├── ka │ │ │ │ └── components.php │ │ │ ├── ku │ │ │ │ └── components.php │ │ │ ├── lt │ │ │ │ └── components.php │ │ │ ├── lv │ │ │ │ └── components.php │ │ │ ├── mn │ │ │ │ └── components.php │ │ │ ├── ms │ │ │ │ └── components.php │ │ │ ├── my │ │ │ │ └── components.php │ │ │ ├── nl │ │ │ │ └── components.php │ │ │ ├── pl │ │ │ │ └── components.php │ │ │ ├── pt_BR │ │ │ │ └── components.php │ │ │ ├── pt_PT │ │ │ │ └── components.php │ │ │ ├── ro │ │ │ │ └── components.php │ │ │ ├── ru │ │ │ │ └── components.php │ │ │ ├── sv │ │ │ │ └── components.php │ │ │ ├── sw │ │ │ │ └── components.php │ │ │ ├── tr │ │ │ │ └── components.php │ │ │ ├── uk │ │ │ │ └── components.php │ │ │ ├── vi │ │ │ │ └── components.php │ │ │ ├── zh_CN │ │ │ │ └── components.php │ │ │ └── zh_TW │ │ │ │ └── components.php │ │ └── views │ │ │ ├── component-container.blade.php │ │ │ └── components │ │ │ ├── actions │ │ │ ├── action.blade.php │ │ │ ├── icon-button-action.blade.php │ │ │ └── modal │ │ │ │ ├── actions │ │ │ │ └── button-action.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── builder.blade.php │ │ │ ├── builder │ │ │ ├── block-picker.blade.php │ │ │ └── block.blade.php │ │ │ ├── button.blade.php │ │ │ ├── card.blade.php │ │ │ ├── checkbox-list.blade.php │ │ │ ├── checkbox.blade.php │ │ │ ├── color-picker.blade.php │ │ │ ├── date-time-picker.blade.php │ │ │ ├── dropdown │ │ │ ├── header.blade.php │ │ │ ├── index.blade.php │ │ │ ├── item.blade.php │ │ │ └── list │ │ │ │ ├── index.blade.php │ │ │ │ └── item.blade.php │ │ │ ├── field-wrapper │ │ │ ├── error-message.blade.php │ │ │ ├── helper-text.blade.php │ │ │ ├── hint.blade.php │ │ │ ├── index.blade.php │ │ │ ├── inline.blade.php │ │ │ └── label.blade.php │ │ │ ├── fieldset.blade.php │ │ │ ├── file-upload.blade.php │ │ │ ├── grid.blade.php │ │ │ ├── group.blade.php │ │ │ ├── hidden.blade.php │ │ │ ├── hr.blade.php │ │ │ ├── icon-button.blade.php │ │ │ ├── key-value.blade.php │ │ │ ├── link.blade.php │ │ │ ├── markdown-editor.blade.php │ │ │ ├── markdown-editor │ │ │ └── toolbar-button.blade.php │ │ │ ├── modal │ │ │ ├── actions.blade.php │ │ │ ├── heading.blade.php │ │ │ ├── index.blade.php │ │ │ └── subheading.blade.php │ │ │ ├── multiple-file-upload.blade.php │ │ │ ├── placeholder.blade.php │ │ │ ├── radio.blade.php │ │ │ ├── repeater.blade.php │ │ │ ├── rich-editor.blade.php │ │ │ ├── rich-editor │ │ │ └── toolbar-button.blade.php │ │ │ ├── section.blade.php │ │ │ ├── select.blade.php │ │ │ ├── tabs.blade.php │ │ │ ├── tabs │ │ │ └── tab.blade.php │ │ │ ├── tags-input.blade.php │ │ │ ├── text-input.blade.php │ │ │ ├── textarea.blade.php │ │ │ ├── toggle.blade.php │ │ │ ├── wizard.blade.php │ │ │ └── wizard │ │ │ └── step.blade.php │ ├── src │ │ ├── Commands │ │ │ ├── Aliases │ │ │ │ ├── MakeFieldCommand.php │ │ │ │ └── MakeLayoutComponentCommand.php │ │ │ ├── Concerns │ │ │ │ ├── CanGenerateForms.php │ │ │ │ ├── CanManipulateFiles.php │ │ │ │ └── CanValidateInput.php │ │ │ ├── InstallCommand.php │ │ │ ├── MakeFieldCommand.php │ │ │ ├── MakeFormCommand.php │ │ │ └── MakeLayoutComponentCommand.php │ │ ├── ComponentContainer.php │ │ ├── Components │ │ │ ├── Actions │ │ │ │ ├── Action.php │ │ │ │ ├── Concerns │ │ │ │ │ └── BelongsToComponent.php │ │ │ │ └── Modal │ │ │ │ │ └── Actions │ │ │ │ │ └── Action.php │ │ │ ├── BaseFileUpload.php │ │ │ ├── BelongsToManyCheckboxList.php │ │ │ ├── BelongsToManyMultiSelect.php │ │ │ ├── BelongsToSelect.php │ │ │ ├── Builder.php │ │ │ ├── Builder │ │ │ │ └── Block.php │ │ │ ├── Card.php │ │ │ ├── Checkbox.php │ │ │ ├── CheckboxList.php │ │ │ ├── ColorPicker.php │ │ │ ├── Component.php │ │ │ ├── Concerns │ │ │ │ ├── BelongsToContainer.php │ │ │ │ ├── BelongsToModel.php │ │ │ │ ├── CanAllowHtml.php │ │ │ │ ├── CanBeAccepted.php │ │ │ │ ├── CanBeAutocapitalized.php │ │ │ │ ├── CanBeAutocompleted.php │ │ │ │ ├── CanBeAutofocused.php │ │ │ │ ├── CanBeCloned.php │ │ │ │ ├── CanBeCollapsed.php │ │ │ │ ├── CanBeCompacted.php │ │ │ │ ├── CanBeConcealed.php │ │ │ │ ├── CanBeDisabled.php │ │ │ │ ├── CanBeHidden.php │ │ │ │ ├── CanBeInline.php │ │ │ │ ├── CanBeLengthConstrained.php │ │ │ │ ├── CanBePreloaded.php │ │ │ │ ├── CanBeSearchable.php │ │ │ │ ├── CanBeValidated.php │ │ │ │ ├── CanDisableOptions.php │ │ │ │ ├── CanDisablePlaceholderSelection.php │ │ │ │ ├── CanLimitItemsLength.php │ │ │ │ ├── CanSpanColumns.php │ │ │ │ ├── Cloneable.php │ │ │ │ ├── EntanglesStateWithSingularRelationship.php │ │ │ │ ├── HasActions.php │ │ │ │ ├── HasAffixes.php │ │ │ │ ├── HasChildComponents.php │ │ │ │ ├── HasContainerGridLayout.php │ │ │ │ ├── HasExtraAlpineAttributes.php │ │ │ │ ├── HasExtraAttributes.php │ │ │ │ ├── HasExtraInputAttributes.php │ │ │ │ ├── HasFieldWrapper.php │ │ │ │ ├── HasFileAttachments.php │ │ │ │ ├── HasGridDirection.php │ │ │ │ ├── HasHelperText.php │ │ │ │ ├── HasHint.php │ │ │ │ ├── HasId.php │ │ │ │ ├── HasInlineLabel.php │ │ │ │ ├── HasInputMode.php │ │ │ │ ├── HasLabel.php │ │ │ │ ├── HasLoadingMessage.php │ │ │ │ ├── HasMaxWidth.php │ │ │ │ ├── HasMeta.php │ │ │ │ ├── HasName.php │ │ │ │ ├── HasNestedRecursiveValidationRules.php │ │ │ │ ├── HasOptions.php │ │ │ │ ├── HasPlaceholder.php │ │ │ │ ├── HasState.php │ │ │ │ ├── HasStep.php │ │ │ │ ├── HasToggleColors.php │ │ │ │ ├── HasToggleIcons.php │ │ │ │ ├── InteractsWithToolbarButtons.php │ │ │ │ └── ListensToEvents.php │ │ │ ├── Contracts │ │ │ │ ├── CanBeLengthConstrained.php │ │ │ │ ├── CanConcealComponents.php │ │ │ │ ├── CanEntangleWithSingularRelationships.php │ │ │ │ ├── CanHaveNumericState.php │ │ │ │ ├── HasFileAttachments.php │ │ │ │ ├── HasNestedRecursiveValidationRules.php │ │ │ │ └── HasValidationRules.php │ │ │ ├── DatePicker.php │ │ │ ├── DateTimePicker.php │ │ │ ├── Field.php │ │ │ ├── Fieldset.php │ │ │ ├── FileUpload.php │ │ │ ├── Grid.php │ │ │ ├── Group.php │ │ │ ├── HasManyRepeater.php │ │ │ ├── Hidden.php │ │ │ ├── KeyValue.php │ │ │ ├── MarkdownEditor.php │ │ │ ├── MorphManyRepeater.php │ │ │ ├── MorphToSelect.php │ │ │ ├── MorphToSelect │ │ │ │ └── Type.php │ │ │ ├── MultiSelect.php │ │ │ ├── MultipleFileUpload.php │ │ │ ├── Placeholder.php │ │ │ ├── Radio.php │ │ │ ├── RelationshipRepeater.php │ │ │ ├── Repeater.php │ │ │ ├── RichEditor.php │ │ │ ├── Section.php │ │ │ ├── Select.php │ │ │ ├── Tabs.php │ │ │ ├── Tabs │ │ │ │ └── Tab.php │ │ │ ├── TagsInput.php │ │ │ ├── TextInput.php │ │ │ ├── TextInput │ │ │ │ └── Mask.php │ │ │ ├── Textarea.php │ │ │ ├── TimePicker.php │ │ │ ├── Toggle.php │ │ │ ├── View.php │ │ │ ├── ViewField.php │ │ │ ├── Wizard.php │ │ │ └── Wizard │ │ │ │ └── Step.php │ │ ├── Concerns │ │ │ ├── BelongsToLivewire.php │ │ │ ├── BelongsToModel.php │ │ │ ├── BelongsToParentComponent.php │ │ │ ├── CanBeDisabled.php │ │ │ ├── CanBeHidden.php │ │ │ ├── CanBeValidated.php │ │ │ ├── Cloneable.php │ │ │ ├── HasColumns.php │ │ │ ├── HasComponents.php │ │ │ ├── HasContext.php │ │ │ ├── HasFieldWrapper.php │ │ │ ├── HasFormComponentActions.php │ │ │ ├── HasInlineLabels.php │ │ │ ├── HasState.php │ │ │ ├── HasStateBindingModifiers.php │ │ │ ├── InteractsWithForms.php │ │ │ ├── ListensToEvents.php │ │ │ ├── SupportsComponentFileAttachments.php │ │ │ ├── SupportsFileUploadFields.php │ │ │ └── SupportsSelectFields.php │ │ ├── Contracts │ │ │ └── HasForms.php │ │ ├── FormsComponent.php │ │ ├── FormsServiceProvider.php │ │ ├── Testing │ │ │ └── TestsForms.php │ │ └── helpers.php │ └── stubs │ │ ├── CreateForm.stub │ │ ├── EditForm.stub │ │ ├── Field.stub │ │ ├── FieldView.stub │ │ ├── Form.stub │ │ ├── FormView.stub │ │ ├── LayoutComponent.stub │ │ ├── LayoutComponentView.stub │ │ └── scaffolding │ │ ├── postcss.config.js │ │ ├── resources │ │ ├── css │ │ │ └── app.css │ │ ├── js │ │ │ └── app.js │ │ └── views │ │ │ └── layouts │ │ │ └── app.blade.php │ │ ├── tailwind.config.js │ │ └── vite.config.js ├── notifications │ ├── .stubs.php │ ├── composer.json │ ├── config │ │ └── notifications.php │ ├── dist │ │ └── module.esm.js │ ├── docs │ │ ├── 01-installation.md │ │ ├── 02-sending-notifications.md │ │ ├── 03-database-notifications.md │ │ ├── 04-broadcast-notifications.md │ │ ├── 05-customizing-notifications.md │ │ └── 06-testing.md │ ├── resources │ │ ├── js │ │ │ ├── Notification.js │ │ │ ├── components │ │ │ │ └── notification.js │ │ │ └── index.js │ │ ├── lang │ │ │ ├── ar │ │ │ │ └── database.php │ │ │ ├── bn │ │ │ │ └── database.php │ │ │ ├── bs │ │ │ │ └── database.php │ │ │ ├── cs │ │ │ │ └── database.php │ │ │ ├── cy │ │ │ │ └── database.php │ │ │ ├── da │ │ │ │ └── database.php │ │ │ ├── de │ │ │ │ └── database.php │ │ │ ├── en │ │ │ │ └── database.php │ │ │ ├── es │ │ │ │ └── database.php │ │ │ ├── eu │ │ │ │ └── database.php │ │ │ ├── fa │ │ │ │ └── database.php │ │ │ ├── fi │ │ │ │ └── database.php │ │ │ ├── fr │ │ │ │ └── database.php │ │ │ ├── he │ │ │ │ └── database.php │ │ │ ├── id │ │ │ │ └── database.php │ │ │ ├── it │ │ │ │ └── database.php │ │ │ ├── ja │ │ │ │ └── database.php │ │ │ ├── ku │ │ │ │ └── database.php │ │ │ ├── lv │ │ │ │ └── database.php │ │ │ ├── ms │ │ │ │ └── database.php │ │ │ ├── nl │ │ │ │ └── database.php │ │ │ ├── pl │ │ │ │ └── database.php │ │ │ ├── pt_BR │ │ │ │ └── database.php │ │ │ ├── ro │ │ │ │ └── database.php │ │ │ ├── ru │ │ │ │ └── database.php │ │ │ ├── sv │ │ │ │ └── database.php │ │ │ ├── sw │ │ │ │ └── database.php │ │ │ ├── tr │ │ │ │ └── database.php │ │ │ ├── uk │ │ │ │ └── database.php │ │ │ └── vi │ │ │ │ └── database.php │ │ └── views │ │ │ ├── actions │ │ │ ├── button-action.blade.php │ │ │ ├── group.blade.php │ │ │ ├── grouped-action.blade.php │ │ │ └── link-action.blade.php │ │ │ ├── components │ │ │ ├── actions │ │ │ │ ├── action.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── body.blade.php │ │ │ ├── button.blade.php │ │ │ ├── close-button.blade.php │ │ │ ├── database │ │ │ │ ├── index.blade.php │ │ │ │ ├── modal │ │ │ │ │ ├── actions.blade.php │ │ │ │ │ ├── empty-state.blade.php │ │ │ │ │ ├── heading.blade.php │ │ │ │ │ └── index.blade.php │ │ │ │ └── trigger.blade.php │ │ │ ├── date.blade.php │ │ │ ├── dropdown │ │ │ │ ├── header.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ ├── item.blade.php │ │ │ │ └── list │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── item.blade.php │ │ │ ├── echo.blade.php │ │ │ ├── hr.blade.php │ │ │ ├── icon.blade.php │ │ │ ├── link.blade.php │ │ │ ├── modal │ │ │ │ ├── heading.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── subheading.blade.php │ │ │ ├── notification.blade.php │ │ │ └── title.blade.php │ │ │ ├── notification.blade.php │ │ │ └── notifications.blade.php │ ├── src │ │ ├── Actions │ │ │ ├── Action.php │ │ │ ├── ActionGroup.php │ │ │ └── Concerns │ │ │ │ └── CanCloseNotification.php │ │ ├── BroadcastNotification.php │ │ ├── Collection.php │ │ ├── Commands │ │ │ └── InstallCommand.php │ │ ├── Concerns │ │ │ ├── CanBeInline.php │ │ │ ├── HasActions.php │ │ │ ├── HasBody.php │ │ │ ├── HasDate.php │ │ │ ├── HasDuration.php │ │ │ ├── HasIcon.php │ │ │ ├── HasId.php │ │ │ └── HasTitle.php │ │ ├── DatabaseNotification.php │ │ ├── Events │ │ │ └── DatabaseNotificationsSent.php │ │ ├── Http │ │ │ └── Livewire │ │ │ │ └── Notifications.php │ │ ├── Notification.php │ │ ├── NotificationsServiceProvider.php │ │ └── Testing │ │ │ ├── Autoload.php │ │ │ └── TestsNotifications.php │ └── stubs │ │ └── scaffolding │ │ ├── postcss.config.js │ │ ├── resources │ │ ├── css │ │ │ └── app.css │ │ ├── js │ │ │ └── app.js │ │ └── views │ │ │ └── layouts │ │ │ └── app.blade.php │ │ ├── tailwind.config.js │ │ └── vite.config.js ├── spatie-laravel-media-library-plugin │ ├── composer.json │ ├── docs │ │ ├── 01-installation.md │ │ ├── 02-form-components.md │ │ └── 03-table-columns.md │ └── src │ │ ├── Forms │ │ └── Components │ │ │ ├── SpatieMediaLibraryFileUpload.php │ │ │ └── SpatieMediaLibraryMultipleFileUpload.php │ │ └── Tables │ │ └── Columns │ │ └── SpatieMediaLibraryImageColumn.php ├── spatie-laravel-settings-plugin │ ├── composer.json │ ├── docs │ │ ├── 01-installation.md │ │ └── 02-getting-started.md │ ├── resources │ │ ├── lang │ │ │ ├── ar │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── bn │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── da │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── de │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── en │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── es │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── eu │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── fa │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── fi │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── he │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── hu │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── hy │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── id │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── it │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── ja │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── ku │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── lt │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── ms │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── nl │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── pt_BR │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── ro │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── ru │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── sv │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── tr │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── uk │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── vi │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ ├── zh_CN │ │ │ │ └── pages │ │ │ │ │ └── settings-page.php │ │ │ └── zh_TW │ │ │ │ └── pages │ │ │ │ └── settings-page.php │ │ └── views │ │ │ └── pages │ │ │ └── settings-page.blade.php │ ├── src │ │ ├── Commands │ │ │ ├── Aliases │ │ │ │ └── MakeSettingsPageCommand.php │ │ │ └── MakeSettingsPageCommand.php │ │ ├── Pages │ │ │ └── SettingsPage.php │ │ └── SpatieLaravelSettingsPluginServiceProvider.php │ └── stubs │ │ └── SettingsPage.stub ├── spatie-laravel-tags-plugin │ ├── composer.json │ ├── docs │ │ ├── 01-installation.md │ │ ├── 02-form-components.md │ │ └── 03-table-columns.md │ └── src │ │ ├── Forms │ │ └── Components │ │ │ └── SpatieTagsInput.php │ │ └── Tables │ │ └── Columns │ │ └── SpatieTagsColumn.php ├── spatie-laravel-translatable-plugin │ ├── composer.json │ ├── config │ │ └── filament-spatie-laravel-translatable-plugin.php │ ├── docs │ │ ├── 01-installation.md │ │ └── 02-getting-started.md │ ├── resources │ │ └── lang │ │ │ ├── ar │ │ │ └── actions.php │ │ │ ├── bn │ │ │ └── actions.php │ │ │ ├── ca │ │ │ └── actions.php │ │ │ ├── da │ │ │ └── actions.php │ │ │ ├── de │ │ │ └── actions.php │ │ │ ├── en │ │ │ └── actions.php │ │ │ ├── es │ │ │ └── actions.php │ │ │ ├── eu │ │ │ └── actions.php │ │ │ ├── fa │ │ │ └── actions.php │ │ │ ├── fi │ │ │ └── actions.php │ │ │ ├── he │ │ │ └── actions.php │ │ │ ├── hu │ │ │ └── actions.php │ │ │ ├── hy │ │ │ └── actions.php │ │ │ ├── id │ │ │ └── actions.php │ │ │ ├── it │ │ │ └── actions.php │ │ │ ├── ja │ │ │ └── actions.php │ │ │ ├── ku │ │ │ └── actions.php │ │ │ ├── lt │ │ │ └── actions.php │ │ │ ├── ms │ │ │ └── actions.php │ │ │ ├── nl │ │ │ └── actions.php │ │ │ ├── pt_BR │ │ │ └── actions.php │ │ │ ├── ro │ │ │ └── actions.php │ │ │ ├── ru │ │ │ └── actions.php │ │ │ ├── sv │ │ │ └── actions.php │ │ │ ├── tr │ │ │ └── actions.php │ │ │ ├── uk │ │ │ └── actions.php │ │ │ ├── vi │ │ │ └── actions.php │ │ │ ├── zh_CN │ │ │ └── actions.php │ │ │ └── zh_TW │ │ │ └── actions.php │ └── src │ │ ├── Facades │ │ └── SpatieLaravelTranslatablePlugin.php │ │ ├── Pages │ │ └── Actions │ │ │ └── LocaleSwitcher.php │ │ ├── Resources │ │ ├── Concerns │ │ │ └── Translatable.php │ │ └── Pages │ │ │ ├── Concerns │ │ │ ├── HasActiveFormLocaleSwitcher.php │ │ │ └── HasActiveLocaleSwitcher.php │ │ │ ├── CreateRecord │ │ │ └── Concerns │ │ │ │ └── Translatable.php │ │ │ ├── EditRecord │ │ │ └── Concerns │ │ │ │ └── Translatable.php │ │ │ ├── ListRecords │ │ │ └── Concerns │ │ │ │ └── Translatable.php │ │ │ └── ViewRecord │ │ │ └── Concerns │ │ │ └── Translatable.php │ │ ├── SpatieLaravelTranslatablePluginManager.php │ │ └── SpatieLaravelTranslatablePluginServiceProvider.php ├── support │ ├── composer.json │ ├── config │ │ ├── filament-support.php │ │ └── html-sanitizer.php │ ├── resources │ │ ├── lang │ │ │ ├── ar │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ └── button.php │ │ │ ├── bn │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── bs │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── ca │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── cs │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ └── button.php │ │ │ ├── da │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── de │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── en │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── es │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── eu │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── fa │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ └── button.php │ │ │ ├── fi │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── fr │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ └── button.php │ │ │ ├── he │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── hi │ │ │ │ └── actions │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── edit.php │ │ │ │ │ └── modal.php │ │ │ ├── hu │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ └── button.php │ │ │ ├── hy │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ └── button.php │ │ │ ├── id │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── it │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ └── button.php │ │ │ ├── ja │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── kh │ │ │ │ └── actions │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ └── edit.php │ │ │ ├── ko │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── ku │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── lt │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── lv │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── mn │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── ms │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── my │ │ │ │ └── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ └── modal.php │ │ │ ├── nl │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ └── button.php │ │ │ ├── pl │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ └── button.php │ │ │ ├── pt_BR │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ └── button.php │ │ │ ├── pt_PT │ │ │ │ ├── actions │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── modal.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ └── button.php │ │ │ ├── ro │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ └── button.php │ │ │ ├── ru │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ └── button.php │ │ │ ├── sv │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── sw │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── tr │ │ │ │ └── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ ├── uk │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ └── button.php │ │ │ ├── vi │ │ │ │ ├── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ │ ├── button.php │ │ │ │ │ └── modal.php │ │ │ ├── zh_CN │ │ │ │ └── actions │ │ │ │ │ ├── associate.php │ │ │ │ │ ├── attach.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── delete.php │ │ │ │ │ ├── detach.php │ │ │ │ │ ├── dissociate.php │ │ │ │ │ ├── edit.php │ │ │ │ │ ├── force-delete.php │ │ │ │ │ ├── group.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── replicate.php │ │ │ │ │ ├── restore.php │ │ │ │ │ └── view.php │ │ │ └── zh_TW │ │ │ │ ├── actions │ │ │ │ ├── associate.php │ │ │ │ ├── attach.php │ │ │ │ ├── create.php │ │ │ │ ├── delete.php │ │ │ │ ├── detach.php │ │ │ │ ├── dissociate.php │ │ │ │ ├── edit.php │ │ │ │ ├── force-delete.php │ │ │ │ ├── group.php │ │ │ │ ├── modal.php │ │ │ │ ├── replicate.php │ │ │ │ ├── restore.php │ │ │ │ └── view.php │ │ │ │ └── components │ │ │ │ └── button.php │ │ └── views │ │ │ └── components │ │ │ ├── actions │ │ │ └── group.blade.php │ │ │ ├── button.blade.php │ │ │ ├── dropdown │ │ │ ├── header.blade.php │ │ │ ├── index.blade.php │ │ │ ├── item.blade.php │ │ │ └── list │ │ │ │ ├── index.blade.php │ │ │ │ └── item.blade.php │ │ │ ├── grid │ │ │ ├── column.blade.php │ │ │ └── index.blade.php │ │ │ ├── hr.blade.php │ │ │ ├── icon-button.blade.php │ │ │ ├── link.blade.php │ │ │ ├── loading-indicator.blade.php │ │ │ └── modal │ │ │ ├── actions.blade.php │ │ │ ├── heading.blade.php │ │ │ ├── index.blade.php │ │ │ └── subheading.blade.php │ └── src │ │ ├── Actions │ │ ├── Action.php │ │ ├── ActionGroup.php │ │ ├── BaseAction.php │ │ ├── Concerns │ │ │ ├── CanBeDisabled.php │ │ │ ├── CanBeHidden.php │ │ │ ├── CanBeMounted.php │ │ │ ├── CanBeOutlined.php │ │ │ ├── CanCustomizeProcess.php │ │ │ ├── CanEmitEvent.php │ │ │ ├── CanNotify.php │ │ │ ├── CanOpenModal.php │ │ │ ├── CanOpenUrl.php │ │ │ ├── CanRedirect.php │ │ │ ├── CanReplicateRecords.php │ │ │ ├── CanRequireConfirmation.php │ │ │ ├── CanSubmitForm.php │ │ │ ├── HasAction.php │ │ │ ├── HasArguments.php │ │ │ ├── HasColor.php │ │ │ ├── HasForm.php │ │ │ ├── HasGroupedIcon.php │ │ │ ├── HasIcon.php │ │ │ ├── HasKeyBindings.php │ │ │ ├── HasLabel.php │ │ │ ├── HasLifecycleHooks.php │ │ │ ├── HasName.php │ │ │ ├── HasSize.php │ │ │ ├── HasTooltip.php │ │ │ ├── HasWizard.php │ │ │ └── InteractsWithRecord.php │ │ ├── Contracts │ │ │ ├── Groupable.php │ │ │ ├── HasRecord.php │ │ │ └── ReplicatesRecords.php │ │ ├── Exceptions │ │ │ └── Hold.php │ │ └── Modal │ │ │ └── Actions │ │ │ ├── Action.php │ │ │ └── Concerns │ │ │ ├── CanCancelAction.php │ │ │ └── HasAction.php │ │ ├── Commands │ │ ├── CheckTranslationsCommand.php │ │ ├── Concerns │ │ │ ├── CanIndentStrings.php │ │ │ ├── CanManipulateFiles.php │ │ │ ├── CanReadModelSchemas.php │ │ │ └── CanValidateInput.php │ │ └── UpgradeCommand.php │ │ ├── Components │ │ ├── Component.php │ │ └── ViewComponent.php │ │ ├── Concerns │ │ ├── Configurable.php │ │ ├── EvaluatesClosures.php │ │ ├── HasExtraAlpineAttributes.php │ │ └── HasExtraAttributes.php │ │ ├── Exceptions │ │ ├── Cancel.php │ │ └── Halt.php │ │ ├── SupportServiceProvider.php │ │ ├── Testing │ │ └── TestsActions.php │ │ └── helpers.php └── tables │ ├── .stubs.php │ ├── composer.json │ ├── config │ └── tables.php │ ├── docs │ ├── 01-installation.md │ ├── 02-getting-started.md │ ├── 03-columns │ │ ├── 01-getting-started.md │ │ ├── 02-text.md │ │ ├── 03-icon.md │ │ ├── 04-image.md │ │ ├── 05-badge.md │ │ ├── 06-tags.md │ │ ├── 07-color.md │ │ ├── 08-select.md │ │ ├── 09-toggle.md │ │ ├── 10-text-input.md │ │ ├── 11-checkbox.md │ │ ├── 12-custom.md │ │ └── 13-relationships.md │ ├── 04-filters.md │ ├── 05-actions.md │ ├── 06-layout.md │ └── 07-testing.md │ ├── resources │ ├── lang │ │ ├── ar │ │ │ └── table.php │ │ ├── bn │ │ │ └── table.php │ │ ├── bs │ │ │ └── table.php │ │ ├── ca │ │ │ └── table.php │ │ ├── cs │ │ │ └── table.php │ │ ├── cy │ │ │ └── table.php │ │ ├── da │ │ │ └── table.php │ │ ├── de │ │ │ └── table.php │ │ ├── en │ │ │ └── table.php │ │ ├── es │ │ │ └── table.php │ │ ├── eu │ │ │ └── table.php │ │ ├── fa │ │ │ └── table.php │ │ ├── fi │ │ │ └── table.php │ │ ├── fr │ │ │ └── table.php │ │ ├── he │ │ │ └── table.php │ │ ├── hi │ │ │ └── table.php │ │ ├── hu │ │ │ └── table.php │ │ ├── hy │ │ │ └── table.php │ │ ├── id │ │ │ └── table.php │ │ ├── it │ │ │ └── table.php │ │ ├── ja │ │ │ └── table.php │ │ ├── ka │ │ │ └── table.php │ │ ├── ku │ │ │ └── table.php │ │ ├── lt │ │ │ └── table.php │ │ ├── lv │ │ │ └── table.php │ │ ├── mn │ │ │ └── table.php │ │ ├── ms │ │ │ └── table.php │ │ ├── nl │ │ │ └── table.php │ │ ├── pl │ │ │ └── table.php │ │ ├── pt_BR │ │ │ └── table.php │ │ ├── pt_PT │ │ │ └── table.php │ │ ├── ro │ │ │ └── table.php │ │ ├── ru │ │ │ └── table.php │ │ ├── sv │ │ │ └── table.php │ │ ├── sw │ │ │ └── table.php │ │ ├── tr │ │ │ └── table.php │ │ ├── uk │ │ │ └── table.php │ │ ├── vi │ │ │ └── table.php │ │ ├── zh_CN │ │ │ └── table.php │ │ └── zh_TW │ │ │ └── table.php │ └── views │ │ ├── actions │ │ ├── bulk-action.blade.php │ │ ├── button-action.blade.php │ │ ├── group.blade.php │ │ ├── grouped-action.blade.php │ │ ├── icon-button-action.blade.php │ │ ├── link-action.blade.php │ │ └── modal │ │ │ └── actions │ │ │ └── button-action.blade.php │ │ ├── columns │ │ ├── badge-column.blade.php │ │ ├── checkbox-column.blade.php │ │ ├── color-column.blade.php │ │ ├── icon-column.blade.php │ │ ├── image-column.blade.php │ │ ├── layout │ │ │ ├── grid.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── split.blade.php │ │ │ └── stack.blade.php │ │ ├── select-column.blade.php │ │ ├── tags-column.blade.php │ │ ├── text-column.blade.php │ │ ├── text-input-column.blade.php │ │ └── toggle-column.blade.php │ │ ├── components │ │ ├── actions │ │ │ ├── action.blade.php │ │ │ ├── cell.blade.php │ │ │ └── index.blade.php │ │ ├── bulk-actions │ │ │ ├── index.blade.php │ │ │ └── trigger.blade.php │ │ ├── button.blade.php │ │ ├── cell.blade.php │ │ ├── checkbox │ │ │ ├── cell.blade.php │ │ │ └── index.blade.php │ │ ├── columns │ │ │ ├── column.blade.php │ │ │ └── layout.blade.php │ │ ├── container.blade.php │ │ ├── dropdown │ │ │ ├── header.blade.php │ │ │ ├── index.blade.php │ │ │ ├── item.blade.php │ │ │ └── list │ │ │ │ ├── index.blade.php │ │ │ │ └── item.blade.php │ │ ├── empty-state │ │ │ ├── description.blade.php │ │ │ ├── heading.blade.php │ │ │ └── index.blade.php │ │ ├── filters │ │ │ ├── index.blade.php │ │ │ ├── indicators.blade.php │ │ │ ├── popover.blade.php │ │ │ └── trigger.blade.php │ │ ├── header-cell.blade.php │ │ ├── header │ │ │ ├── description.blade.php │ │ │ ├── heading.blade.php │ │ │ └── index.blade.php │ │ ├── hr.blade.php │ │ ├── icon-button.blade.php │ │ ├── link.blade.php │ │ ├── loading-cell.blade.php │ │ ├── modal │ │ │ ├── actions.blade.php │ │ │ ├── heading.blade.php │ │ │ ├── index.blade.php │ │ │ └── subheading.blade.php │ │ ├── pagination │ │ │ ├── index.blade.php │ │ │ ├── item.blade.php │ │ │ └── records-per-page-selector.blade.php │ │ ├── reorder │ │ │ ├── cell.blade.php │ │ │ ├── handle.blade.php │ │ │ ├── indicator.blade.php │ │ │ └── trigger.blade.php │ │ ├── row.blade.php │ │ ├── search-input.blade.php │ │ ├── selection-indicator.blade.php │ │ ├── table.blade.php │ │ └── toggleable │ │ │ ├── index.blade.php │ │ │ └── trigger.blade.php │ │ └── index.blade.php │ ├── src │ ├── Actions │ │ ├── Action.php │ │ ├── ActionGroup.php │ │ ├── AssociateAction.php │ │ ├── AttachAction.php │ │ ├── BulkAction.php │ │ ├── ButtonAction.php │ │ ├── Concerns │ │ │ ├── BelongsToTable.php │ │ │ ├── CanDeselectRecordsAfterCompletion.php │ │ │ ├── InteractsWithRecords.php │ │ │ └── InteractsWithRelationship.php │ │ ├── CreateAction.php │ │ ├── DeleteAction.php │ │ ├── DeleteBulkAction.php │ │ ├── DetachAction.php │ │ ├── DetachBulkAction.php │ │ ├── DissociateAction.php │ │ ├── DissociateBulkAction.php │ │ ├── EditAction.php │ │ ├── ForceDeleteAction.php │ │ ├── ForceDeleteBulkAction.php │ │ ├── IconButtonAction.php │ │ ├── LinkAction.php │ │ ├── Modal │ │ │ └── Actions │ │ │ │ ├── Action.php │ │ │ │ └── ButtonAction.php │ │ ├── Position.php │ │ ├── RecordCheckboxPosition.php │ │ ├── ReplicateAction.php │ │ ├── RestoreAction.php │ │ ├── RestoreBulkAction.php │ │ └── ViewAction.php │ ├── Columns │ │ ├── BadgeColumn.php │ │ ├── BooleanColumn.php │ │ ├── CheckboxColumn.php │ │ ├── ColorColumn.php │ │ ├── Column.php │ │ ├── Concerns │ │ │ ├── BelongsToLayout.php │ │ │ ├── BelongsToTable.php │ │ │ ├── CanAggregateRelatedModels.php │ │ │ ├── CanBeCopied.php │ │ │ ├── CanBeDisabled.php │ │ │ ├── CanBeHidden.php │ │ │ ├── CanBeInline.php │ │ │ ├── CanBeSearchable.php │ │ │ ├── CanBeSortable.php │ │ │ ├── CanBeToggled.php │ │ │ ├── CanBeValidated.php │ │ │ ├── CanCallAction.php │ │ │ ├── CanFormatState.php │ │ │ ├── CanGrow.php │ │ │ ├── CanOpenUrl.php │ │ │ ├── CanSpanColumns.php │ │ │ ├── CanUpdateState.php │ │ │ ├── HasAlignment.php │ │ │ ├── HasColor.php │ │ │ ├── HasColors.php │ │ │ ├── HasDescription.php │ │ │ ├── HasExtraAttributes.php │ │ │ ├── HasExtraCellAttributes.php │ │ │ ├── HasExtraHeaderAttributes.php │ │ │ ├── HasFontFamily.php │ │ │ ├── HasIcon.php │ │ │ ├── HasIcons.php │ │ │ ├── HasLabel.php │ │ │ ├── HasName.php │ │ │ ├── HasRecord.php │ │ │ ├── HasRowLoopObject.php │ │ │ ├── HasSize.php │ │ │ ├── HasSpace.php │ │ │ ├── HasState.php │ │ │ ├── HasTooltip.php │ │ │ ├── HasWeight.php │ │ │ └── InteractsWithTableQuery.php │ │ ├── Contracts │ │ │ └── Editable.php │ │ ├── IconColumn.php │ │ ├── ImageColumn.php │ │ ├── Layout │ │ │ ├── Component.php │ │ │ ├── Grid.php │ │ │ ├── Panel.php │ │ │ ├── Split.php │ │ │ ├── Stack.php │ │ │ └── View.php │ │ ├── SelectColumn.php │ │ ├── TagsColumn.php │ │ ├── TextColumn.php │ │ ├── TextInputColumn.php │ │ ├── ToggleColumn.php │ │ └── ViewColumn.php │ ├── Commands │ │ ├── Aliases │ │ │ └── MakeColumnCommand.php │ │ ├── Concerns │ │ │ ├── CanGenerateTables.php │ │ │ ├── CanManipulateFiles.php │ │ │ └── CanValidateInput.php │ │ ├── InstallCommand.php │ │ ├── MakeColumnCommand.php │ │ └── MakeTableCommand.php │ ├── Concerns │ │ ├── BelongsToLivewire.php │ │ ├── CanBeStriped.php │ │ ├── CanDeferLoading.php │ │ ├── CanPaginateRecords.php │ │ ├── CanPollRecords.php │ │ ├── CanReorderRecords.php │ │ ├── CanSearchRecords.php │ │ ├── CanSelectRecords.php │ │ ├── CanSortRecords.php │ │ ├── CanToggleColumns.php │ │ ├── HasActions.php │ │ ├── HasBulkActions.php │ │ ├── HasColumns.php │ │ ├── HasContent.php │ │ ├── HasEmptyState.php │ │ ├── HasFilters.php │ │ ├── HasHeader.php │ │ ├── HasRecordAction.php │ │ ├── HasRecordClasses.php │ │ ├── HasRecordUrl.php │ │ ├── HasRecords.php │ │ └── InteractsWithTable.php │ ├── Contracts │ │ ├── HasRelationshipTable.php │ │ ├── HasTable.php │ │ └── RendersFormComponentActionModal.php │ ├── Filters │ │ ├── BaseFilter.php │ │ ├── Concerns │ │ │ ├── BelongsToTable.php │ │ │ ├── CanBeHidden.php │ │ │ ├── CanSpanColumns.php │ │ │ ├── HasColumns.php │ │ │ ├── HasDefaultState.php │ │ │ ├── HasFormSchema.php │ │ │ ├── HasIndicators.php │ │ │ ├── HasLabel.php │ │ │ ├── HasName.php │ │ │ ├── HasOptions.php │ │ │ ├── HasPlaceholder.php │ │ │ ├── HasRelationship.php │ │ │ └── InteractsWithTableQuery.php │ │ ├── Filter.php │ │ ├── Layout.php │ │ ├── MultiSelectFilter.php │ │ ├── SelectFilter.php │ │ ├── TernaryFilter.php │ │ └── TrashedFilter.php │ ├── Table.php │ ├── TableComponent.php │ ├── TablesServiceProvider.php │ └── Testing │ │ ├── TestsActions.php │ │ ├── TestsBulkActions.php │ │ ├── TestsColumns.php │ │ ├── TestsFilters.php │ │ └── TestsRecords.php │ └── stubs │ ├── Column.stub │ ├── ColumnView.stub │ ├── Table.stub │ ├── TableView.stub │ └── scaffolding │ ├── postcss.config.js │ ├── resources │ ├── css │ │ └── app.css │ ├── js │ │ └── app.js │ └── views │ │ └── layouts │ │ └── app.blade.php │ ├── tailwind.config.js │ └── vite.config.js ├── phpstan.neon.dist ├── pint.json └── webpack.mix.js /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false, 3 | "singleQuote": true, 4 | "tailwindConfig": "./packages/admin/tailwind.config.js", 5 | "trailingComma": "all" 6 | } 7 | -------------------------------------------------------------------------------- /mix-manifest.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /packages/admin/dist/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/app.js": "/app.js?id=03a11a23dff55b7fe95e674320bd59ca", 3 | "/echo.js": "/echo.js?id=19f331c9f76ec80cb5e5e344fef18d68", 4 | "/app.css": "/app.css?id=e13906e1d62f9b0f7f2d8f174311e258" 5 | } 6 | -------------------------------------------------------------------------------- /packages/admin/resources/js/echo.js: -------------------------------------------------------------------------------- 1 | import Echo from 'laravel-echo' 2 | import Pusher from 'pusher-js' 3 | 4 | window.EchoFactory = Echo 5 | window.Pusher = Pusher 6 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ar/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'البحث العام', 7 | 'placeholder' => 'البحث', 8 | ], 9 | 10 | 'no_results_message' => 'لم يتم العثور على نتائج عن البحث.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ar/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'لوحة التحكم', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ar/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'القائمة', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ar/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'عرض :label', 6 | 7 | 'breadcrumb' => 'عرض', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'عرض', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ar/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'تسجيل الخروج', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'مرحبا, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ar/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'التوثيق', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/bn/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'সব জায়গায় খুঁজুন', 7 | 'placeholder' => 'খুঁজুন', 8 | ], 9 | 10 | 'no_results_message' => 'খুঁজে পাওয়া যায়নি।', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/bn/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ড্যাশবোর্ড', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/bn/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'তালিকা', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/bn/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label দেখুন', 6 | 7 | 'breadcrumb' => 'দেখুন', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'দেখুন', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/bn/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'সাইন আউট', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'স্বাগতম, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/bn/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'ব্যবহার গাইড', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'গিটহাব', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/bs/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nadzorna ploča', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/bs/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/bs/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Pogled :label', 6 | 7 | 'breadcrumb' => 'Pogled', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Pogled', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/bs/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Odjava', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Zdravo, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/bs/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Dokumentacija', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ca/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Escriptori', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ca/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Llistat', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ca/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Veure :label', 6 | 7 | 'breadcrumb' => 'Veure', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Veure', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ca/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Sortir', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Benvinguda/ut, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ca/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Documentació', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/cs/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nástěnka', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/cs/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Přehled', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/cs/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Zobrazit :label', 6 | 7 | 'breadcrumb' => 'Zobrazit', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Zobrazit', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/cs/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Odhlásit se', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Vítejte, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/cs/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Dokumentace', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/da/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/da/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/da/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Vis :label', 6 | 7 | 'breadcrumb' => 'Vis', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Vis', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/da/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Log ud', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Velkommen, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/da/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Dokumentation', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/de/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globale Suche', 7 | 'placeholder' => 'Suchen', 8 | ], 9 | 10 | 'no_results_message' => 'Keine Ergebnisse gefunden.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/de/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/de/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Übersicht', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/de/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label ansehen', 6 | 7 | 'breadcrumb' => 'Ansehen', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Ansehen', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/de/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Abmelden', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Willkommen, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/de/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Dokumentation', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/el/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Γενική αναζήτηση', 7 | 'placeholder' => 'Αναζήτηση', 8 | ], 9 | 10 | 'no_results_message' => 'Δεν βρέθηκαν αποτελέσματα.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/el/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Πίνακας ελέγχου', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/el/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Λίστα', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/el/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Προεπισκόπηση :label', 6 | 7 | 'breadcrumb' => 'Προεπισκόπηση', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Προεπισκόπηση', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/el/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Αποσύνδεση', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Καλώς ήρθες, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/el/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Οδηγός', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/en/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/en/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'List', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/en/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'View :label', 6 | 7 | 'breadcrumb' => 'View', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'View', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/en/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Sign out', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Welcome, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/en/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Documentation', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/es/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Escritorio', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/es/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listado', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/es/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Ver :label', 6 | 7 | 'breadcrumb' => 'Ver', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Ver', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/es/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Salir', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bienvenida/o, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/es/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Documentación', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/eu/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Bilaketa globala', 7 | 'placeholder' => 'Bilatu', 8 | ], 9 | 10 | 'no_results_message' => 'Ez da emaitzarik aurkitu.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/eu/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Idazmahai', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/eu/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Zerrenda', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/eu/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Ikusi :label', 6 | 7 | 'breadcrumb' => 'Ikusi', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Ikusi', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/eu/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Irten', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Ongi etorri, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/eu/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Dokumentazioa', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fa/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'جستجو در کل سایت', 7 | 'placeholder' => 'جستجو', 8 | ], 9 | 10 | 'no_results_message' => 'نتیجه‌ای برای جستجو شما یافت نشد.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fa/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'داشبورد', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fa/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'لیست', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fa/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'مشاهده :label', 6 | 7 | 'breadcrumb' => 'مشاهده', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'مشاهده', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fa/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'خروج', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => ':user خوش آمدید.', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fa/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'مستندات', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'گیت‌هاب', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fi/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Ohjausnäkymä', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fi/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Näytä :label', 6 | 7 | 'breadcrumb' => 'Näytä', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Näytä', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fi/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Kirjaudu ulos', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Tervetuloa, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fi/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Ohjeet', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fr/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Tableau de bord', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fr/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fr/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Afficher :label', 6 | 7 | 'breadcrumb' => 'Afficher', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Afficher', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fr/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Déconnexion', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bonjour :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/fr/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Documentation', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/he/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'חיפוש גלובלי', 7 | 'placeholder' => 'חיפוש', 8 | ], 9 | 10 | 'no_results_message' => 'לא נמצאו תוצאות.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/he/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'פנאל', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/he/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'רשימה', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/he/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'תצוגת :label', 6 | 7 | 'breadcrumb' => 'הצגה', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'הצגה', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/he/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'התנתק', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'ברוך הבא :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/he/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'תיעוד', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hi/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'वैश्विक खोज', 7 | 'placeholder' => 'खोजें', 8 | ], 9 | 10 | 'no_results_message' => 'कोई खोज परिणाम नहीं मिला।', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hi/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'डैशबोर्ड', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'सूची', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hi/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label देखें', 6 | 7 | 'breadcrumb' => 'देखें', 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hi/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'साइन आउट', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'स्वागत, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hi/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'प्रलेखन', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hu/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globális keresés', 7 | 'placeholder' => 'Keres', 8 | ], 9 | 10 | 'no_results_message' => 'Nincs találat', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hu/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Vezérlőpult', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hu/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hu/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label megtekintése', 6 | 7 | 'breadcrumb' => 'Megtekintés', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Megtekintés', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hu/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Kijelentkezés', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Üdv, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hu/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Dokumentáció', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hy/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Գլոբալ որոնում', 7 | 'placeholder' => 'Որոնել', 8 | ], 9 | 10 | 'no_results_message' => 'Որոնման արդյունքներ չեն գտնվել։', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hy/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Վահանակ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hy/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Ցանկ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hy/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Դիտել :label', 6 | 7 | 'breadcrumb' => 'Դիտել', 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hy/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Դուրս գալ', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Բարի գալուստ, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/hy/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Փաստաթղթեր', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/id/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Pencarian global', 7 | 'placeholder' => 'Cari', 8 | ], 9 | 10 | 'no_results_message' => 'Pencarian tidak ditemukan.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/id/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dasbor', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/id/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Daftar', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/id/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Lihat :label', 6 | 7 | 'breadcrumb' => 'Lihat', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Lihat', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/id/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Keluar', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Selamat Datang, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/id/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Dokumentasi', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/it/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Pannello', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/it/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/it/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Guarda :label', 6 | 7 | 'breadcrumb' => 'Guarda', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Guarda', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/it/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Disconnetti', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Benvenuto, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/it/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Documentazione', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ja/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'グローバル検索', 7 | 'placeholder' => '検索', 8 | ], 9 | 10 | 'no_results_message' => '検索結果が見つかりませんでした。', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ja/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ダッシュボード', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ja/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '一覧', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ja/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label詳細', 6 | 7 | 'breadcrumb' => '詳細', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => '詳細', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ja/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'ログアウト', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'ようこそ, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ja/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Documentation', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/km/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'ការស្វែងរកក្នុងប្រព័ន្ធទូទៅ', 7 | 'placeholder' => 'ស្វែងរក', 8 | ], 9 | 10 | 'no_results_message' => 'រកមិនឃើញលទ្ធផលនៃការស្វែងរកទេ។', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/km/layout.php: -------------------------------------------------------------------------------- 1 | 'ទិសដៅពីឆ្វេងទៅស្ដាំ', 6 | 7 | 'buttons' => [ 8 | 'logout' => [ 9 | 'label' => 'ចាកចេញពីកម្មវិធីប្រព័ន្ធ', 10 | ], 11 | 12 | 'user_menu' => [ 13 | 'label' => 'ម៉ឺនុយអ្នកប្រើ', 14 | ], 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/km/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ផ្ទាំងគ្រប់គ្រងទូទៅ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/km/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'បញ្ជី', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/km/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'ស្លាក​សញ្ញា :label', 6 | 7 | 'breadcrumb' => 'ស្លាក​សញ្ញា', 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/km/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'ចាកចេញពីកម្មវិធីប្រព័ន្ធ', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'សូមស្វាគមន៍, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/km/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'ចូលមើលឯកសារ', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ko/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => '전체 검색', 7 | 'placeholder' => '검색', 8 | ], 9 | 10 | 'no_results_message' => '검색 결과가 없습니다.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ko/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | '대시보드', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ko/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '목록', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ko/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label 보기', 6 | 7 | 'breadcrumb' => '보기', 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ko/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => '로그아웃', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => '어서오세요, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ko/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => '도큐먼트', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ku/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'گەڕانی گشتی', 7 | 'placeholder' => 'گەڕان', 8 | ], 9 | 10 | 'no_results_message' => 'هیچ ئەنجامێک نەدۆزرایەوە بۆ گەڕانەکەت.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ku/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'داشبۆرد', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ku/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'لیست', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ku/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'سەیرکردن :label', 6 | 7 | 'breadcrumb' => 'سەیرکردن', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'بینین', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ku/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'چوونەدەرەوە', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'بەخێربێیت، :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ku/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'پەڕگەی یارماتیدەر', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'گیت هەب', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/lt/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Pagrindinis puslapis', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/lt/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Sąrašas', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/lt/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Peržiūrėti :label', 6 | 7 | 'breadcrumb' => 'Peržiūrėti', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Peržiūrėti', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/lt/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Atsijungti', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Sveiki atvykę, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/lt/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Dokumentacija', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/lv/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Panelis', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/lv/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Saraksts', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/lv/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Skatīt :label', 6 | 7 | 'breadcrumb' => 'Skatīt', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Skatīt', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/lv/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Iziet', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Laipni lūdzam, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/lv/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Dokumentācija', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/mn/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Глобал хайлт', 7 | 'placeholder' => 'хайлт', 8 | ], 9 | 10 | 'no_results_message' => 'Илэрц олдсонгүй.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/mn/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Хянах самбар', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/mn/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Жагсаалт', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/mn/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Харах :label', 6 | 7 | 'breadcrumb' => 'Харах', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Харах', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/mn/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Гарах', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Тавтай морилно уу, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/mn/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Ашиглах заавар', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ms/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Papan pemuka', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ms/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Senarai', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ms/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Lihat :label', 6 | 7 | 'breadcrumb' => 'Lihat', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Lihat', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ms/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Log keluar', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Selamat datang, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ms/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Dokumentasi', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/my/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'ကမ္ဘာလုံးဆိုင်ရာ ရှာဖွေမှု', 7 | 'placeholder' => 'ရှာမယ်', 8 | ], 9 | 10 | 'no_results_message' => 'ရှာဖွေမှုရလဒ်များ မတွေ့ပါ', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/my/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ပင်မစာမျက်နှာ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/my/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'စာရင်း', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/my/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'စစ်ဆေးပါ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/my/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'ထွက်မည်', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'ကြိုဆိုပါတယ် :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/my/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'အညွန်း', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/nl/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globaal zoeken', 7 | 'placeholder' => 'Zoeken', 8 | ], 9 | 10 | 'no_results_message' => 'Geen resultaten gevonden.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/nl/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/nl/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lijst', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/nl/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':Label bekijken', 6 | 7 | 'breadcrumb' => 'Bekijken', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Bekijken', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/nl/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Uitloggen', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Welkom, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/nl/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Documentatie', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pl/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pl/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pl/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Podgląd :label', 6 | 7 | 'breadcrumb' => 'Podgląd', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Podgląd', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pl/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Wyloguj się', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Witaj, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pl/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Dokumentacja', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pt_BR/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Painel de Controle', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pt_BR/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listar', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pt_BR/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Mostrar :label', 6 | 7 | 'breadcrumb' => 'Mostrar', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Mostrar', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pt_BR/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Logout', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bem-vindo, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pt_BR/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Documentação', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pt_PT/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Painel de Controlo', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pt_PT/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listar', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pt_PT/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Mostrar :label', 6 | 7 | 'breadcrumb' => 'Mostrar', 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pt_PT/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Terminar Sessão', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bem-vindo, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/pt_PT/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Documentação', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ro/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Panoul de control', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ro/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listare', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ro/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Vizualizare :label', 6 | 7 | 'breadcrumb' => 'Vizualizare', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Vizualizare', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ro/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Deconectare', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bun venit, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ro/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Documentație', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ru/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Глобальный поиск', 7 | 'placeholder' => 'Поиск', 8 | ], 9 | 10 | 'no_results_message' => 'Ничего не найдено.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ru/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Дашборд', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ru/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Список', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ru/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Просмотр :label', 6 | 7 | 'breadcrumb' => 'Просмотр', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Просмотр', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ru/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Выход', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Добро пожаловать, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/ru/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Документация', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/sv/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/sv/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/sv/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Visa :label', 6 | 7 | 'breadcrumb' => 'Visa', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Visa', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/sv/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Logga ut', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Välkommen, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/sv/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Dokumentation', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/sw/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashibodi', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/sw/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listi', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/sw/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Angalia :label', 6 | 7 | 'breadcrumb' => 'Angalia', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Angalia', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/sw/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Toka', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Karibu, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/sw/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Nyaraka', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/tr/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Genel arama', 7 | 'placeholder' => 'Ara', 8 | ], 9 | 10 | 'no_results_message' => 'Sonuç bulunamadı.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/tr/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Panel', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/tr/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/tr/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label görüntüle', 6 | 7 | 'breadcrumb' => 'Görüntüle', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Görüntüle', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/tr/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Oturumu kapat', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Hoş geldin, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/tr/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Dökümantasyon', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/uk/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Глобальний пошук', 7 | 'placeholder' => 'Пошук', 8 | ], 9 | 10 | 'no_results_message' => 'Не знайдено жодних результатів пошуку.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/uk/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Дешборд', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/uk/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Перегляд', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/uk/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Перегляд :label', 6 | 7 | 'breadcrumb' => 'Перегляд', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Перегляд', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/uk/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Вийти', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Вітаємо, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/uk/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Документація', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/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 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/vi/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Bảng điều khiển', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/vi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Danh sách', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/vi/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Xem :label', 6 | 7 | 'breadcrumb' => 'Xem', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Xem', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/vi/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Đăng xuất', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Chào, :user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/vi/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => 'Tài liệu', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/zh_CN/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => '全局搜索', 7 | 'placeholder' => '搜索', 8 | ], 9 | 10 | 'no_results_message' => '未找到搜索结果。', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/zh_CN/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | '仪表板', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/zh_CN/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '列表', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/zh_CN/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label 详情', 6 | 7 | 'breadcrumb' => '详情', 8 | 9 | 'form' => [ 10 | 11 | 'tab' => [ 12 | 'label' => '视图', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/zh_CN/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => '退出登录', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => '欢迎,:user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/zh_CN/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => '文档', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/zh_TW/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => '全域搜尋', 7 | 'placeholder' => '搜尋', 8 | ], 9 | 10 | 'no_results_message' => '無搜尋結果。', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/zh_TW/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | '主控台', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/zh_TW/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '清單', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/zh_TW/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | '檢視 :label', 6 | 7 | 'breadcrumb' => '檢視', 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/zh_TW/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => '登出', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => '歡迎,:user', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/admin/resources/lang/zh_TW/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'visit_documentation' => [ 8 | 'label' => '說明文件', 9 | ], 10 | 11 | 'visit_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/brand.blade.php: -------------------------------------------------------------------------------- 1 | @if (filled($brand = config('filament.brand'))) 2 |
config('filament.dark_mode'), 5 | ])> 6 | {{ $brand }} 7 |
8 | @endif 9 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/button.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/card/heading.blade.php: -------------------------------------------------------------------------------- 1 |

class(['text-xl font-semibold tracking-tight filament-card-heading']) }}> 2 | {{ $slot }} 3 |

4 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/dropdown/header.blade.php: -------------------------------------------------------------------------------- 1 | @captureSlots([ 2 | 'detail', 3 | ]) 4 | 5 | 9 | {{ $slot }} 10 | 11 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/dropdown/index.blade.php: -------------------------------------------------------------------------------- 1 | @captureSlots([ 2 | 'trigger', 3 | ]) 4 | 5 | 9 | {{ $slot }} 10 | 11 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/dropdown/item.blade.php: -------------------------------------------------------------------------------- 1 | @captureSlots([ 2 | 'detail', 3 | ]) 4 | 5 | 6 | {{ $slot }} 7 | 8 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/dropdown/list/index.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/global-search/actions/index.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'actions', 3 | ]) 4 | 5 |
class('filament-global-search-actions mt-4 flex gap-3') }}> 6 | @foreach ($actions as $action) 7 | @unless ($action->isHidden()) 8 | {{ $action }} 9 | @endunless 10 | @endforeach 11 |
12 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/global-search/end.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appledesire/Laravel_sample_admin_panel/5b02f1e36e243083403f64cfa7e9ddecc059a9d8/packages/admin/resources/views/components/global-search/end.blade.php -------------------------------------------------------------------------------- /packages/admin/resources/views/components/global-search/no-results-message.blade.php: -------------------------------------------------------------------------------- 1 |
class([ 2 | 'filament-global-search-no-results-message px-6 py-4', 3 | 'dark:text-gray-200' => config('filament.dark_mode'), 4 | ]) }}> 5 | {{ __('filament::global-search.no_results_message') }} 6 |
7 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/global-search/start.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appledesire/Laravel_sample_admin_panel/5b02f1e36e243083403f64cfa7e9ddecc059a9d8/packages/admin/resources/views/components/global-search/start.blade.php -------------------------------------------------------------------------------- /packages/admin/resources/views/components/header/heading.blade.php: -------------------------------------------------------------------------------- 1 |

class(['filament-header-heading text-2xl font-bold tracking-tight']) }}> 2 | {{ $slot }} 3 |

4 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/header/subheading.blade.php: -------------------------------------------------------------------------------- 1 |

class(['filament-header-subheading max-w-2xl tracking-tight text-gray-500']) }}> 2 | {{ $slot }} 3 |

4 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/hr.blade.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/icon-button.blade.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/layouts/app/sidebar/end.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appledesire/Laravel_sample_admin_panel/5b02f1e36e243083403f64cfa7e9ddecc059a9d8/packages/admin/resources/views/components/layouts/app/sidebar/end.blade.php -------------------------------------------------------------------------------- /packages/admin/resources/views/components/layouts/app/sidebar/footer.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/layouts/app/sidebar/start.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appledesire/Laravel_sample_admin_panel/5b02f1e36e243083403f64cfa7e9ddecc059a9d8/packages/admin/resources/views/components/layouts/app/sidebar/start.blade.php -------------------------------------------------------------------------------- /packages/admin/resources/views/components/link.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/modal/actions.blade.php: -------------------------------------------------------------------------------- 1 | 6 | {{ $slot }} 7 | 8 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/modal/heading.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/modal/subheading.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/notification-manager.blade.php: -------------------------------------------------------------------------------- 1 | @php 2 | /** @deprecated */ 3 | @endphp 4 | -------------------------------------------------------------------------------- /packages/admin/resources/views/components/tabs/index.blade.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /packages/admin/resources/views/global-search/actions/icon-button-action.blade.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /packages/admin/resources/views/global-search/actions/link-action.blade.php: -------------------------------------------------------------------------------- 1 | 7 | {{ $getLabel() }} 8 | 9 | -------------------------------------------------------------------------------- /packages/admin/resources/views/login.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{ $this->form }} 3 | 4 | 5 | {{ __('filament::login.buttons.submit.label') }} 6 | 7 |
8 | -------------------------------------------------------------------------------- /packages/admin/resources/views/pages/actions/button-action.blade.php: -------------------------------------------------------------------------------- 1 | 8 | {{ $getLabel() }} 9 | 10 | -------------------------------------------------------------------------------- /packages/admin/resources/views/pages/actions/group.blade.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /packages/admin/resources/views/pages/actions/grouped-action.blade.php: -------------------------------------------------------------------------------- 1 | 7 | {{ $getLabel() }} 8 | 9 | -------------------------------------------------------------------------------- /packages/admin/resources/views/pages/actions/icon-button-action.blade.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /packages/admin/resources/views/pages/actions/link-action.blade.php: -------------------------------------------------------------------------------- 1 | 7 | {{ $getLabel() }} 8 | 9 | -------------------------------------------------------------------------------- /packages/admin/resources/views/pages/dashboard.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /packages/admin/resources/views/resources/relation-manager.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{ \Filament\Facades\Filament::renderHook('resource.relation-manager.start') }} 3 | 4 | {{ $this->table }} 5 | 6 | {{ \Filament\Facades\Filament::renderHook('resource.relation-manager.end') }} 7 |
8 | -------------------------------------------------------------------------------- /packages/admin/resources/views/widgets/table-widget.blade.php: -------------------------------------------------------------------------------- 1 | 2 | {{ $this->table }} 3 | 4 | -------------------------------------------------------------------------------- /packages/admin/src/AvatarProviders/Contracts/AvatarProvider.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /packages/admin/stubs/ResourcePage.stub: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{-- Widget content --}} 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/forms/resources/css/components/tags-input.css: -------------------------------------------------------------------------------- 1 | .webkit-calendar-picker-indicator\:opacity-0::-webkit-calendar-picker-indicator { 2 | @apply opacity-0; 3 | } 4 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/actions/icon-button-action.blade.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/builder/block.blade.php: -------------------------------------------------------------------------------- 1 |
merge($getExtraAttributes())->class(['filament-forms-builder-component-block py-8']) }}> 2 | {{ $getChildComponentContainer() }} 3 |
4 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/button.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/dropdown/header.blade.php: -------------------------------------------------------------------------------- 1 | @captureSlots([ 2 | 'detail', 3 | ]) 4 | 5 | 9 | {{ $slot }} 10 | 11 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/dropdown/index.blade.php: -------------------------------------------------------------------------------- 1 | @captureSlots([ 2 | 'trigger', 3 | ]) 4 | 5 | 9 | {{ $slot }} 10 | 11 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/dropdown/item.blade.php: -------------------------------------------------------------------------------- 1 | @captureSlots([ 2 | 'detail', 3 | ]) 4 | 5 | 6 | {{ $slot }} 7 | 8 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/dropdown/list/index.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/dropdown/list/item.blade.php: -------------------------------------------------------------------------------- 1 | @captureSlots([ 2 | 'detail', 3 | ]) 4 | 5 | 9 | {{ $slot }} 10 | 11 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/field-wrapper/error-message.blade.php: -------------------------------------------------------------------------------- 1 |

class([ 4 | 'filament-forms-field-wrapper-error-message text-sm text-danger-600', 5 | 'dark:text-danger-400' => config('forms.dark_mode'), 6 | ]) }} 7 | > 8 | {{ $slot }} 9 |

10 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/field-wrapper/helper-text.blade.php: -------------------------------------------------------------------------------- 1 |
class([ 2 | 'filament-forms-field-wrapper-helper-text text-sm text-gray-600', 3 | 'dark:text-gray-300' => config('forms.dark_mode'), 4 | ]) }}> 5 | {{ $slot }} 6 |
7 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/grid.blade.php: -------------------------------------------------------------------------------- 1 |
merge($getExtraAttributes()) }}> 2 | {{ $getChildComponentContainer() }} 3 |
4 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/group.blade.php: -------------------------------------------------------------------------------- 1 |
merge($getExtraAttributes()) }}> 2 | {{ $getChildComponentContainer() }} 3 |
4 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/hr.blade.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/icon-button.blade.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/link.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/modal/actions.blade.php: -------------------------------------------------------------------------------- 1 | 6 | {{ $slot }} 7 | 8 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/modal/heading.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/modal/subheading.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/forms/resources/views/components/multiple-file-upload.blade.php: -------------------------------------------------------------------------------- 1 | {{ $getChildComponentContainer() }} 2 | -------------------------------------------------------------------------------- /packages/forms/src/Commands/Aliases/MakeFieldCommand.php: -------------------------------------------------------------------------------- 1 | columnSpan('hidden'); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /packages/forms/src/Components/MorphManyRepeater.php: -------------------------------------------------------------------------------- 1 | getParentComponent()?->isHidden(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /packages/forms/src/FormsComponent.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | {{ $this->form }} 4 | 5 | 8 |
9 | 10 | {{ $this->modal }} 11 | -------------------------------------------------------------------------------- /packages/forms/stubs/LayoutComponent.stub: -------------------------------------------------------------------------------- 1 | 2 | {{ $getChildComponentContainer() }} 3 | 4 | -------------------------------------------------------------------------------- /packages/forms/stubs/scaffolding/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /packages/forms/stubs/scaffolding/resources/css/app.css: -------------------------------------------------------------------------------- 1 | @import '../../vendor/filament/forms/dist/module.esm.css'; 2 | 3 | @tailwind base; 4 | @tailwind components; 5 | @tailwind utilities; 6 | -------------------------------------------------------------------------------- /packages/notifications/.stubs.php: -------------------------------------------------------------------------------- 1 | 8 | {{ $getLabel() }} 9 | 10 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/actions/group.blade.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/actions/grouped-action.blade.php: -------------------------------------------------------------------------------- 1 | 7 | {{ $getLabel() }} 8 | 9 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/actions/link-action.blade.php: -------------------------------------------------------------------------------- 1 | 7 | {{ $getLabel() }} 8 | 9 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/components/actions/index.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'actions', 3 | ]) 4 | 5 |
class(['filament-notifications-actions mt-2 flex gap-3']) }}> 6 | @foreach ($actions as $action) 7 | {{ $action }} 8 | @endforeach 9 |
10 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/components/body.blade.php: -------------------------------------------------------------------------------- 1 |
config('notifications.dark_mode'), 5 | ]) 6 | > 7 | {{ $slot }} 8 |
9 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/components/button.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/components/close-button.blade.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/components/database/trigger.blade.php: -------------------------------------------------------------------------------- 1 |
class(['inline-block']) }} 5 | > 6 | {{ $slot }} 7 |
8 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/components/date.blade.php: -------------------------------------------------------------------------------- 1 |

class([ 2 | 'filament-notifications-date text-xs text-gray-500', 3 | 'dark:text-gray-300' => config('notifications.dark_mode'), 4 | ]) }}> 5 | {{ $slot }} 6 |

7 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/components/dropdown/index.blade.php: -------------------------------------------------------------------------------- 1 | @captureSlots([ 2 | 'trigger', 3 | ]) 4 | 5 | 9 | {{ $slot }} 10 | 11 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/components/dropdown/item.blade.php: -------------------------------------------------------------------------------- 1 | @captureSlots([ 2 | 'detail', 3 | ]) 4 | 5 | 6 | {{ $slot }} 7 | 8 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/components/dropdown/list/index.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/components/hr.blade.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/components/link.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/components/modal/heading.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/components/modal/subheading.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/notifications/resources/views/components/title.blade.php: -------------------------------------------------------------------------------- 1 |
config('notifications.dark_mode'), 5 | ]) 6 | > 7 | {{ $slot }} 8 |
9 | -------------------------------------------------------------------------------- /packages/notifications/stubs/scaffolding/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /packages/notifications/stubs/scaffolding/resources/css/app.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/ar/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'اللغة', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/bn/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'ভাষা', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/ca/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Idioma', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/da/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Sprog', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/de/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Sprache', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/en/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Locale', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/es/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Idioma', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/eu/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Hizkuntza', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/fa/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'موقعیت', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/fi/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Lokaali', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/he/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'שפה', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/hu/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Nyelv', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/hy/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Տեղայնություն', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/id/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Bahasa', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/it/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Locale', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/ja/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'ロケール', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/ku/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'ناوچە/زمان', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/lt/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Kalba', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/ms/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Locale', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/nl/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Taal', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/pt_BR/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Idioma', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/ro/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Limba', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/ru/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Язык', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/sv/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Språk', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/tr/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Yerel ayar', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/uk/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Мова', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/vi/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Ngôn ngữ', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/zh_CN/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => '语言环境', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/spatie-laravel-translatable-plugin/resources/lang/zh_TW/actions.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => '語系', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/config/filament-support.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'is_closed_by_clicking_away' => true, 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ar/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'الإجراءات', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ar/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'جاري رفع الملف...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/bn/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'কার্যক্রম', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/bn/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'নথি আপলোড হচ্ছে...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/bn/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'বন্ধ করুন', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/bs/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Akcije', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/bs/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Učitavanje fajlova...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/bs/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Zatvoriti', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ca/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Accions', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ca/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Pujant arxiu...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ca/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Tancar', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/cs/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'uploading_file' => 'Nahrávání souboru...', 8 | 9 | ], 10 | 11 | ]; 12 | -------------------------------------------------------------------------------- /packages/support/resources/lang/da/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Handlinger', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/da/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Uploader fil...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/da/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Luk', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/de/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Aktionen', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/de/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Datei wird hochgeladen...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/de/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Schließen', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/en/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Actions', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/en/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Uploading file...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/en/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Close', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/es/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Acciones', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/es/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'uploading_file' => 'Subiendo archivo...', 8 | 9 | ], 10 | 11 | ]; 12 | -------------------------------------------------------------------------------- /packages/support/resources/lang/es/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Cerrar', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/eu/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Akzioak', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/eu/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'uploading_file' => 'Artxiboa igotzen...', 8 | 9 | ], 10 | 11 | ]; 12 | -------------------------------------------------------------------------------- /packages/support/resources/lang/eu/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Itxi', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/fa/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'عملیات', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/fa/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'uploading_file' => 'درحال آپلود فایل...', 8 | 9 | ], 10 | 11 | ]; 12 | -------------------------------------------------------------------------------- /packages/support/resources/lang/fi/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Toimenpiteet', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/fi/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Siirretään tiedostoa...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/fi/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Sulje', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/fr/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Actions', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/fr/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Chargement du fichier...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/he/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'פעולות', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/he/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'מעלה קבצים...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/he/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'סגור', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/hu/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Műveletek', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/hu/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Fájl feltöltése...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/hy/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Գործողություններ', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/hy/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Ֆայլի բեռնում...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/id/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Tindakan', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/id/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'uploading_file' => 'Mengunggah berkas...', 8 | 9 | ], 10 | 11 | ]; 12 | -------------------------------------------------------------------------------- /packages/support/resources/lang/id/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Tutup', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/it/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Azioni', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/it/actions/replicate.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'label' => 'Duplica', 8 | 9 | 'messages' => [ 10 | 'replicated' => 'Duplicato', 11 | ], 12 | 13 | ], 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /packages/support/resources/lang/it/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'uploading_file' => 'Caricamento file...', 8 | 9 | ], 10 | 11 | ]; 12 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ja/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'アクション', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ja/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'ファイルをアップロード中...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ja/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => '閉じる', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ko/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => '액션', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ko/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => '파일 업로드 ...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ko/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => '닫기', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ku/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'کارەکان', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ku/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'بارکردنی فایل...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ku/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'داخستن', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/lt/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Veiksmai', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/lt/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Įkeliamas failas...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/lt/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Uždaryti', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/lv/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Darbības', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/lv/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Notiek faila augšupielāde...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/lv/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Aizvērt', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/mn/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Үйлдэл', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/mn/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Хуулж байна...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/mn/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Хаах', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ms/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Tindakan', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ms/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Memuat naik fail...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ms/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Tutup', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/nl/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Acties', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/nl/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Bestand uploaden...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/pl/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Czynności', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/pl/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Wysyłanie pliku...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/pt_BR/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Enviando arquivo...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/pt_PT/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'A enviar ficheiro...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ro/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Operaţii', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ro/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Se încarcă fișierul...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ru/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Действия', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/ru/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Загрузка файла...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/sv/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Åtgärder', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/sv/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Laddar upp fil...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/sv/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Stäng', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/sw/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Vitendo', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/sw/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Inapakia faili...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/sw/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Funga', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/tr/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Eylemler', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/uk/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Дії', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/uk/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Завантаження файлу...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/vi/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Thao tác', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/vi/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => 'Đang tải tệp lên...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/vi/components/modal.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'close' => [ 8 | 'label' => 'Đóng', 9 | ], 10 | 11 | ], 12 | 13 | ]; 14 | -------------------------------------------------------------------------------- /packages/support/resources/lang/zh_CN/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => '动作组', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/zh_TW/actions/group.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => '動作', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/lang/zh_TW/components/button.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'uploading_file' => '正在上傳檔案...', 7 | ], 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /packages/support/resources/views/components/dropdown/item.blade.php: -------------------------------------------------------------------------------- 1 | @captureSlots([ 2 | 'detail', 3 | ]) 4 | 5 | 6 | {{ $slot }} 7 | 8 | -------------------------------------------------------------------------------- /packages/support/resources/views/components/dropdown/list/index.blade.php: -------------------------------------------------------------------------------- 1 |
class(['filament-dropdown-list p-1']) }}> 2 | {{ $slot }} 3 |
4 | -------------------------------------------------------------------------------- /packages/support/resources/views/components/hr.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'darkMode' => false, 3 | ]) 4 | 5 | 9 | -------------------------------------------------------------------------------- /packages/support/resources/views/components/modal/heading.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'darkMode' => false, 3 | ]) 4 | 5 |

class(['filament-modal-heading text-xl font-bold tracking-tight']) }}> 6 | {{ $slot }} 7 |

8 | -------------------------------------------------------------------------------- /packages/support/resources/views/components/modal/subheading.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'darkMode' => false, 3 | ]) 4 | 5 |

class(['filament-modal-subheading text-gray-500']) }}> 6 | {{ $slot }} 7 |

8 | -------------------------------------------------------------------------------- /packages/support/src/Actions/Contracts/Groupable.php: -------------------------------------------------------------------------------- 1 | 7 | {{ $getLabel() }} 8 | 9 | -------------------------------------------------------------------------------- /packages/tables/resources/views/actions/button-action.blade.php: -------------------------------------------------------------------------------- 1 | 8 | {{ $getLabel() }} 9 | 10 | -------------------------------------------------------------------------------- /packages/tables/resources/views/actions/group.blade.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /packages/tables/resources/views/actions/grouped-action.blade.php: -------------------------------------------------------------------------------- 1 | 7 | {{ $getLabel() }} 8 | 9 | -------------------------------------------------------------------------------- /packages/tables/resources/views/actions/icon-button-action.blade.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /packages/tables/resources/views/actions/link-action.blade.php: -------------------------------------------------------------------------------- 1 | 7 | {{ $getLabel() }} 8 | 9 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/actions/cell.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'record', 3 | ]) 4 | 5 | class(['filament-tables-actions-cell px-4 py-3 whitespace-nowrap']) }} 9 | > 10 | {{ $slot }} 11 | 12 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/bulk-actions/trigger.blade.php: -------------------------------------------------------------------------------- 1 | class(['filament-tables-bulk-actions-trigger']) }} 6 | /> 7 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/button.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/cell.blade.php: -------------------------------------------------------------------------------- 1 | class([ 2 | 'filament-tables-cell', 3 | 'dark:text-white' => config('tables.dark_mode'), 4 | ]) }}> 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/checkbox/cell.blade.php: -------------------------------------------------------------------------------- 1 | class(['filament-tables-checkbox-cell w-4 px-4 whitespace-nowrap']) }}> 2 | {{ $slot }} 3 | 4 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/container.blade.php: -------------------------------------------------------------------------------- 1 |
class([ 2 | 'border border-gray-300 shadow-sm bg-white rounded-xl filament-tables-container', 3 | 'dark:bg-gray-800 dark:border-gray-700' => config('tables.dark_mode'), 4 | ]) }}> 5 | {{ $slot }} 6 |
7 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/dropdown/header.blade.php: -------------------------------------------------------------------------------- 1 | @captureSlots([ 2 | 'detail', 3 | ]) 4 | 5 | 9 | {{ $slot }} 10 | 11 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/dropdown/index.blade.php: -------------------------------------------------------------------------------- 1 | @captureSlots([ 2 | 'trigger', 3 | ]) 4 | 5 | 9 | {{ $slot }} 10 | 11 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/dropdown/item.blade.php: -------------------------------------------------------------------------------- 1 | @captureSlots([ 2 | 'detail', 3 | ]) 4 | 5 | 6 | {{ $slot }} 7 | 8 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/dropdown/list/index.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/empty-state/description.blade.php: -------------------------------------------------------------------------------- 1 |

class([ 2 | 'filament-tables-empty-state-description whitespace-normal text-sm font-medium text-gray-500', 3 | 'dark:text-gray-400' => config('tables.dark_mode'), 4 | ]) }}> 5 | {{ $slot }} 6 |

7 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/empty-state/heading.blade.php: -------------------------------------------------------------------------------- 1 |

class([ 2 | 'filament-tables-empty-state-heading text-xl font-bold tracking-tight', 3 | 'dark:text-white' => config('tables.dark_mode'), 4 | ]) }}> 5 | {{ $slot }} 6 |

7 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/filters/trigger.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'indicatorsCount' => null, 3 | ]) 4 | 5 | class(['filament-tables-filters-trigger']) }} 10 | /> 11 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/header/description.blade.php: -------------------------------------------------------------------------------- 1 |

class(['filament-tables-header-description']) }}> 2 | {{ $slot }} 3 |

4 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/header/heading.blade.php: -------------------------------------------------------------------------------- 1 |

class(['filament-tables-header-heading text-xl font-bold tracking-tight']) }}> 2 | {{ $slot }} 3 |

4 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/hr.blade.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/icon-button.blade.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/link.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/loading-cell.blade.php: -------------------------------------------------------------------------------- 1 | class(['w-full px-4 py-4 animate-pulse']) }}> 2 |
config('tables.dark_mode'), 5 | ])>
6 | 7 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/modal/actions.blade.php: -------------------------------------------------------------------------------- 1 | 6 | {{ $slot }} 7 | 8 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/modal/heading.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/modal/subheading.blade.php: -------------------------------------------------------------------------------- 1 | 5 | {{ $slot }} 6 | 7 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/reorder/cell.blade.php: -------------------------------------------------------------------------------- 1 | class(['filament-tables-reorder-cell w-4 px-4 whitespace-nowrap']) }} 3 | > 4 | {{ $slot }} 5 | 6 | -------------------------------------------------------------------------------- /packages/tables/resources/views/components/toggleable/trigger.blade.php: -------------------------------------------------------------------------------- 1 | class(['filament-tables-column-toggling-trigger']) }} 5 | /> 6 | -------------------------------------------------------------------------------- /packages/tables/src/Actions/LinkAction.php: -------------------------------------------------------------------------------- 1 | 2 | {{ $getState() }} 3 | 4 | -------------------------------------------------------------------------------- /packages/tables/stubs/TableView.stub: -------------------------------------------------------------------------------- 1 |
2 | {{ $this->table }} 3 |
4 | -------------------------------------------------------------------------------- /packages/tables/stubs/scaffolding/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /packages/tables/stubs/scaffolding/resources/css/app.css: -------------------------------------------------------------------------------- 1 | @import '../../vendor/filament/forms/dist/module.esm.css'; 2 | 3 | @tailwind base; 4 | @tailwind components; 5 | @tailwind utilities; 6 | -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- 1 | parameters: 2 | level: 5 3 | paths: 4 | - packages 5 | --------------------------------------------------------------------------------