├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Filament │ ├── Resources │ │ ├── CityResource.php │ │ ├── CityResource │ │ │ ├── Pages │ │ │ │ ├── CreateCity.php │ │ │ │ ├── EditCity.php │ │ │ │ └── ListCities.php │ │ │ └── RelationManagers │ │ │ │ ├── StateRelationManager.php │ │ │ │ └── StatesRelationManager.php │ │ ├── CountryResource.php │ │ ├── CountryResource │ │ │ ├── Pages │ │ │ │ ├── CreateCountry.php │ │ │ │ ├── EditCountry.php │ │ │ │ └── ListCountries.php │ │ │ └── RelationManagers │ │ │ │ ├── EmployeesRelationManager.php │ │ │ │ └── StatesRelationManager.php │ │ ├── DepartamentResource.php │ │ ├── DepartamentResource │ │ │ └── Pages │ │ │ │ ├── CreateDepartament.php │ │ │ │ ├── EditDepartament.php │ │ │ │ └── ListDepartaments.php │ │ ├── EmployeeResource.php │ │ ├── EmployeeResource │ │ │ ├── Pages │ │ │ │ ├── CreateEmployee.php │ │ │ │ ├── EditEmployee.php │ │ │ │ └── ListEmployees.php │ │ │ └── Widgets │ │ │ │ └── EmployeeStatsOverview.php │ │ ├── EmployeesResource │ │ │ └── Widgets │ │ │ │ └── StatsOverview.php │ │ ├── StateResource.php │ │ ├── StateResource │ │ │ ├── Pages │ │ │ │ ├── CreateState.php │ │ │ │ ├── EditState.php │ │ │ │ └── ListStates.php │ │ │ └── RelationManagers │ │ │ │ └── CountryRelationManager.php │ │ ├── UserResource.php │ │ └── UserResource │ │ │ └── Pages │ │ │ ├── CreateUser.php │ │ │ ├── EditUser.php │ │ │ └── ListUsers.php │ └── Widgets │ │ ├── EmployeeDepartamentChart.php │ │ ├── EmployeeStateChart.php │ │ ├── WebStatsChart.php │ │ └── WebStatsOverview.php ├── Http │ ├── Controllers │ │ ├── Controller.php │ │ └── EmployeeController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php │ └── Resources │ │ └── EmployeeResource.php ├── Models │ ├── City.php │ ├── Country.php │ ├── Departament.php │ ├── Employee.php │ ├── State.php │ └── User.php ├── Policies │ ├── CityPolicy.php │ ├── CountryPolicy.php │ ├── DepartamentPolicy.php │ ├── EmployeePolicy.php │ ├── RolePolicy.php │ ├── StatePolicy.php │ └── UserPolicy.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filament-breezy.php ├── filament-quick-create.php ├── filament-shield.php ├── filament.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── permission.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── CityFactory.php │ ├── CountryFactory.php │ ├── DepartamentFactory.php │ ├── EmployeeFactory.php │ ├── StateFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2022_11_01_192515_create_countries_table.php │ ├── 2022_11_01_192531_create_states_table.php │ ├── 2022_11_01_192546_create_cities_table.php │ ├── 2022_11_01_192604_create_departaments_table.php │ ├── 2022_11_01_192626_create_employees_table.php │ └── 2022_11_03_201549_create_permission_tables.php └── seeders │ ├── DatabaseSeeder.php │ └── UserSeeder.php ├── lang ├── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php └── vendor │ ├── filament-advancedfilter │ ├── en │ │ └── clauses.php │ └── pt-BR │ │ └── clauses.php │ ├── filament-support │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ │ │ └── modal.php │ ├── kh │ │ └── actions │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ └── edit.php │ ├── ko │ │ └── actions │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── edit.php │ │ │ └── modal.php │ ├── ku │ │ └── actions │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ └── edit.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 │ ├── 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 │ │ │ ├── modal.php │ │ │ ├── replicate.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 │ └── filament │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── index.php └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── vendor │ ├── filament-breezy │ │ ├── .gitkeep │ │ ├── components │ │ │ ├── auth-card.blade.php │ │ │ └── grid-section.blade.php │ │ ├── filament │ │ │ └── pages │ │ │ │ └── my-profile.blade.php │ │ ├── livewire │ │ │ └── breezy-sanctum-tokens.blade.php │ │ ├── login.blade.php │ │ ├── register.blade.php │ │ ├── reset-password.blade.php │ │ ├── two-factor.blade.php │ │ └── verify.blade.php │ ├── filament-lockscreen │ │ ├── .gitkeep │ │ └── livewire │ │ │ └── locker-screen.blade.php │ └── filament-no-connection │ │ ├── .gitkeep │ │ └── livewire │ │ └── offline.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Filament/Resources/CityResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Filament/Resources/CityResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/CityResource/Pages/EditCity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Filament/Resources/CityResource/Pages/EditCity.php -------------------------------------------------------------------------------- /app/Filament/Resources/CountryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Filament/Resources/CountryResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/DepartamentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Filament/Resources/DepartamentResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/EmployeeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Filament/Resources/EmployeeResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/StateResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Filament/Resources/StateResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Filament/Resources/UserResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/EditUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Filament/Resources/UserResource/Pages/EditUser.php -------------------------------------------------------------------------------- /app/Filament/Widgets/EmployeeDepartamentChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Filament/Widgets/EmployeeDepartamentChart.php -------------------------------------------------------------------------------- /app/Filament/Widgets/EmployeeStateChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Filament/Widgets/EmployeeStateChart.php -------------------------------------------------------------------------------- /app/Filament/Widgets/WebStatsChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Filament/Widgets/WebStatsChart.php -------------------------------------------------------------------------------- /app/Filament/Widgets/WebStatsOverview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Filament/Widgets/WebStatsOverview.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/EmployeeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Http/Controllers/EmployeeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Resources/EmployeeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Http/Resources/EmployeeResource.php -------------------------------------------------------------------------------- /app/Models/City.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Models/City.php -------------------------------------------------------------------------------- /app/Models/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Models/Country.php -------------------------------------------------------------------------------- /app/Models/Departament.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Models/Departament.php -------------------------------------------------------------------------------- /app/Models/Employee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Models/Employee.php -------------------------------------------------------------------------------- /app/Models/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Models/State.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Policies/CityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Policies/CityPolicy.php -------------------------------------------------------------------------------- /app/Policies/CountryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Policies/CountryPolicy.php -------------------------------------------------------------------------------- /app/Policies/DepartamentPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Policies/DepartamentPolicy.php -------------------------------------------------------------------------------- /app/Policies/EmployeePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Policies/EmployeePolicy.php -------------------------------------------------------------------------------- /app/Policies/RolePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Policies/RolePolicy.php -------------------------------------------------------------------------------- /app/Policies/StatePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Policies/StatePolicy.php -------------------------------------------------------------------------------- /app/Policies/UserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Policies/UserPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filament-breezy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/filament-breezy.php -------------------------------------------------------------------------------- /config/filament-quick-create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/filament-quick-create.php -------------------------------------------------------------------------------- /config/filament-shield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/filament-shield.php -------------------------------------------------------------------------------- /config/filament.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/filament.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/CityFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/database/factories/CityFactory.php -------------------------------------------------------------------------------- /database/factories/CountryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/database/factories/CountryFactory.php -------------------------------------------------------------------------------- /database/factories/DepartamentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/database/factories/DepartamentFactory.php -------------------------------------------------------------------------------- /database/factories/EmployeeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/database/factories/EmployeeFactory.php -------------------------------------------------------------------------------- /database/factories/StateFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/database/factories/StateFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /lang/vendor/filament-advancedfilter/en/clauses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-advancedfilter/en/clauses.php -------------------------------------------------------------------------------- /lang/vendor/filament-advancedfilter/pt-BR/clauses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-advancedfilter/pt-BR/clauses.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ar/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ar/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ar/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ar/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ar/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ar/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ar/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ar/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ar/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ar/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ar/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ar/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ar/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ar/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ar/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ar/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ar/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ar/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ar/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ar/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ar/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ar/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ar/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ar/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ar/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ar/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bn/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bn/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bn/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bn/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bn/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bn/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bn/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bn/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bn/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bn/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bn/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bn/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bn/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bn/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bn/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bn/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bn/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bn/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bn/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bn/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bn/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bn/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bn/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bn/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bn/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bn/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bn/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bn/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bs/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bs/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bs/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bs/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bs/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bs/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bs/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bs/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bs/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bs/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bs/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bs/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bs/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bs/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bs/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bs/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bs/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bs/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bs/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bs/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bs/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bs/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bs/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bs/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bs/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bs/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/bs/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/bs/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/cs/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/cs/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/cs/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/cs/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/cs/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/cs/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/cs/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/cs/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/cs/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/cs/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/cs/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/cs/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/cs/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/cs/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/cs/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/cs/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/cs/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/cs/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/cs/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/cs/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/cs/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/cs/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/de/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/de/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/de/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/de/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/de/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/de/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/de/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/de/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/de/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/de/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/de/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/de/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/de/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/de/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/de/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/de/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/de/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/de/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/de/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/de/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/de/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/de/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/de/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/de/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/de/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/de/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/de/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/de/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/en/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/en/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/en/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/en/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/en/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/en/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/en/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/en/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/en/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/en/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/en/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/en/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/en/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/en/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/en/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/en/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/en/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/en/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/en/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/en/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/en/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/en/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/en/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/en/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/en/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/en/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/en/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/en/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/es/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/es/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/es/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/es/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/es/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/es/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/es/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/es/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/es/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/es/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/es/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/es/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/es/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/es/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/es/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/es/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/es/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/es/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/es/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/es/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/es/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/es/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/es/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/es/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/es/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/es/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/es/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/es/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fa/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fa/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fa/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fa/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fa/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fa/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fa/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fa/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fa/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fa/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fa/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fa/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fa/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fa/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fa/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fa/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fa/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fa/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fa/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fa/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fa/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fa/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fa/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fa/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fa/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fa/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fi/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fi/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fi/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fi/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fi/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fi/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fi/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fi/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fi/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fi/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fi/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fi/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fi/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fi/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fi/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fi/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fi/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fi/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fi/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fi/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fi/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fi/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fi/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fi/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fi/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fi/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fi/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fi/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fr/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fr/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fr/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fr/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fr/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fr/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fr/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fr/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fr/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fr/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fr/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fr/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fr/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fr/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fr/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fr/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fr/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fr/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fr/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fr/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fr/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fr/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fr/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fr/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/fr/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/fr/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/he/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/he/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/he/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/he/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/he/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/he/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/he/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/he/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/he/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/he/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/he/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/he/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/he/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/he/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/he/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/he/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/he/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/he/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/he/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/he/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/he/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/he/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/he/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/he/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/he/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/he/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/he/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/he/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hi/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hi/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hi/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hi/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hi/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hi/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hi/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hi/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hi/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hi/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hi/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hi/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hu/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hu/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hu/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hu/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hu/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hu/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hu/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hu/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hu/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hu/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hu/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hu/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hu/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hu/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hu/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hu/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hu/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hu/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hu/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hu/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hu/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hu/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hu/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hu/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hu/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hu/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hy/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hy/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hy/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hy/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hy/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hy/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hy/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hy/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hy/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hy/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hy/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hy/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hy/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hy/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hy/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hy/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hy/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hy/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hy/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hy/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hy/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hy/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hy/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hy/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/hy/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/hy/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/id/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/id/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/id/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/id/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/id/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/id/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/id/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/id/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/id/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/id/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/id/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/id/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/id/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/id/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/id/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/id/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/id/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/id/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/id/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/id/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/id/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/id/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/id/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/id/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/id/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/id/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/id/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/id/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/it/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/it/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/it/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/it/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/it/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/it/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/it/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/it/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/it/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/it/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/it/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/it/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/it/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/it/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/it/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/it/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/it/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/it/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/it/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/it/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/it/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/it/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/it/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/it/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/it/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/it/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ja/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ja/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ja/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ja/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ja/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ja/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ja/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ja/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ja/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ja/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ja/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ja/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ja/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ja/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ja/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ja/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/kh/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/kh/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/kh/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/kh/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/kh/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/kh/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/kh/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/kh/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/kh/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/kh/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ko/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ko/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ko/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ko/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ko/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ko/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ko/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ko/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ko/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ko/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ko/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ko/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ku/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ku/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ku/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ku/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ku/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ku/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ku/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ku/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ku/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ku/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/lt/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/lt/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/lt/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/lt/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/lt/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/lt/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/lt/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/lt/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/lt/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/lt/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/lt/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/lt/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/lt/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/lt/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/lt/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/lt/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/lt/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/lt/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/lt/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/lt/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/lt/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/lt/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/lt/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/lt/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/lt/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/lt/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/lt/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/lt/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ms/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ms/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ms/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ms/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ms/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ms/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ms/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ms/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ms/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ms/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ms/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ms/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ms/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ms/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ms/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ms/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ms/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ms/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ms/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ms/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ms/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ms/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ms/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ms/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ms/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ms/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ms/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ms/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/my/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/my/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/my/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/my/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/my/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/my/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/my/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/my/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/my/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/my/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/my/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/my/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/my/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/my/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/my/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/my/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/nl/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/nl/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/nl/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/nl/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/nl/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/nl/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/nl/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/nl/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/nl/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/nl/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/nl/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/nl/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/nl/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/nl/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/nl/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/nl/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/nl/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/nl/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/nl/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/nl/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/nl/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/nl/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/nl/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/nl/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/nl/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/nl/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pl/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pl/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pl/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pl/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pl/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pl/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pl/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pl/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pl/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pl/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pl/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pl/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pl/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pl/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pl/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pl/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pl/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pl/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pl/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pl/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pl/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pl/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pl/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pl/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pl/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pl/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_BR/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_BR/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_BR/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_BR/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_BR/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_BR/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_BR/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_BR/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_BR/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_BR/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_BR/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_BR/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_BR/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_BR/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_BR/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_BR/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_PT/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_PT/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_PT/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_PT/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_PT/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_PT/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_PT/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_PT/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_PT/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_PT/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_PT/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_PT/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/pt_PT/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/pt_PT/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ro/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ro/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ro/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ro/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ro/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ro/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ro/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ro/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ro/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ro/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ro/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ro/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ro/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ro/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ro/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ro/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ro/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ro/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ro/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ro/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ro/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ro/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ro/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ro/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ro/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ro/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ru/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ru/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ru/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ru/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ru/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ru/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ru/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ru/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ru/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ru/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ru/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ru/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ru/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ru/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ru/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ru/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ru/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ru/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ru/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ru/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ru/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ru/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ru/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ru/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/ru/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/ru/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sv/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sv/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sv/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sv/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sv/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sv/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sv/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sv/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sv/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sv/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sv/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sv/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sv/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sv/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sv/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sv/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sv/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sv/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sv/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sv/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sv/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sv/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sv/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sv/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sv/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sv/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sv/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sv/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sw/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sw/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sw/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sw/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sw/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sw/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sw/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sw/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sw/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sw/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sw/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sw/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sw/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sw/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sw/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sw/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sw/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sw/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sw/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sw/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sw/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sw/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sw/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sw/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sw/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sw/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/sw/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/sw/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/tr/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/tr/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/tr/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/tr/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/tr/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/tr/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/tr/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/tr/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/tr/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/tr/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/tr/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/tr/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/tr/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/tr/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/tr/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/tr/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/tr/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/tr/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/tr/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/tr/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/tr/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/tr/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/tr/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/tr/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/uk/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/uk/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/uk/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/uk/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/uk/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/uk/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/uk/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/uk/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/uk/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/uk/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/uk/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/uk/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/uk/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/uk/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/uk/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/uk/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/uk/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/uk/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/uk/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/uk/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/uk/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/uk/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/vi/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/vi/actions/associate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/vi/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/vi/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/vi/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/vi/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/vi/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/vi/actions/delete.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/vi/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/vi/actions/detach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/vi/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/vi/actions/dissociate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/vi/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/vi/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/vi/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/vi/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/vi/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/vi/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/vi/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/vi/actions/replicate.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/vi/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/vi/actions/restore.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/vi/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/vi/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/vi/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/vi/components/button.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/vi/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/vi/components/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/zh_CN/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/zh_CN/actions/attach.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/zh_CN/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/zh_CN/actions/create.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/zh_CN/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/zh_CN/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/zh_CN/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/zh_CN/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/zh_CN/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/zh_CN/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/zh_CN/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/zh_CN/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/zh_TW/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/zh_TW/actions/edit.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/zh_TW/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/zh_TW/actions/group.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/zh_TW/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/zh_TW/actions/modal.php -------------------------------------------------------------------------------- /lang/vendor/filament-support/zh_TW/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament-support/zh_TW/actions/view.php -------------------------------------------------------------------------------- /lang/vendor/filament/ar/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ar/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/ar/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ar/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/ar/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ar/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/ar/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'لوحة التحكم', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ar/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'القائمة', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ar/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ar/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/bn/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/bn/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/bn/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/bn/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/bn/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/bn/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/bn/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ড্যাশবোর্ড', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/bn/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'তালিকা', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/bn/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/bn/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/bs/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/bs/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/bs/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/bs/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/bs/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/bs/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/bs/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nadzorna ploča', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/bs/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/bs/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/bs/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/cs/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/cs/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/cs/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/cs/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/cs/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/cs/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/cs/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nástěnka', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/cs/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Přehled', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/cs/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/cs/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/da/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/da/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/da/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/da/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/da/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/da/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/da/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/da/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/da/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/da/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/de/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/de/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/de/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/de/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/de/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/de/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/de/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/de/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Übersicht', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/de/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/de/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/el/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/el/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/el/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/el/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/el/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/el/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/el/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Πίνακας ελέγχου', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/el/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Λίστα', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/el/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/el/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/en/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/en/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/en/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/en/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/en/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/en/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/en/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/en/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'List', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/en/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/en/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/es/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/es/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/es/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/es/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/es/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/es/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/es/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Escritorio', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/es/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listado', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/es/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/es/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/fa/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/fa/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/fa/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/fa/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/fa/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/fa/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/fa/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'داشبورد', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/fa/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'لیست', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/fa/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/fa/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/fi/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/fi/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/fi/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/fi/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/fi/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/fi/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/fi/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Ohjausnäkymä', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/fi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/fi/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/fi/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/fr/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/fr/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/fr/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/fr/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/fr/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/fr/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/fr/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Tableau de bord', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/fr/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/fr/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/fr/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/he/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/he/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/he/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/he/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/he/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/he/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/he/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'פנאל', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/he/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'רשימה', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/he/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/he/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/hi/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/hi/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/hi/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/hi/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/hi/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/hi/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/hi/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'डैशबोर्ड', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/hi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'सूची', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/hi/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/hi/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/hu/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/hu/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/hu/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/hu/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/hu/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/hu/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/hu/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Vezérlőpult', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/hu/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/hu/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/hu/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/hy/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/hy/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/hy/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/hy/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/hy/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/hy/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/hy/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/hy/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament/hy/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Ցանկ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/hy/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/hy/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/id/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/id/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/id/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/id/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/id/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/id/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/id/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dasbor', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/id/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Daftar', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/id/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/id/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/it/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/it/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/it/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/it/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/it/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/it/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/it/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Cruscotto', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/it/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/it/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/it/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/ja/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ja/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/ja/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ja/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/ja/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ja/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/ja/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ダッシュボード', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ja/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '一覧', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ja/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ja/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/km/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/km/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/km/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/km/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/km/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/km/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/km/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/km/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament/km/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'បញ្ជី', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/km/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/km/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/ko/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ko/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/ko/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ko/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/ko/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ko/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/ko/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | '대시보드', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ko/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '목록', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ko/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ko/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/ku/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ku/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/ku/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ku/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/ku/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ku/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/ku/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'داشبۆرد', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ku/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'لیست', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ku/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ku/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/lt/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/lt/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/lt/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/lt/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/lt/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/lt/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/lt/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Pagrindinis puslapis', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/lt/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Sąrašas', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/lt/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/lt/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/ms/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ms/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/ms/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ms/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/ms/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ms/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/ms/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Papan pemuka', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ms/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Senarai', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ms/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ms/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/my/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/my/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/my/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/my/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/my/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/my/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/my/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/my/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament/my/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'စာရင်း', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/my/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/my/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/nl/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/nl/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/nl/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/nl/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/nl/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/nl/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/nl/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/nl/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lijst', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/nl/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/nl/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/pl/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/pl/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/pl/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/pl/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/pl/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/pl/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/pl/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/pl/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/pl/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/pl/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_BR/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/pt_BR/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_BR/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/pt_BR/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_BR/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/pt_BR/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_BR/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/pt_BR/pages/dashboard.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_BR/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listar', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/pt_PT/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/pt_PT/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_PT/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/pt_PT/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_PT/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/pt_PT/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/pt_PT/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Painel de Controlo', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/pt_PT/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listar', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ro/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ro/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/ro/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ro/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/ro/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ro/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/ro/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Panoul de control', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ro/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listare', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ro/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ro/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/ru/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ru/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/ru/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ru/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/ru/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ru/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/ru/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Дашборд', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ru/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Список', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/ru/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/ru/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/sv/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/sv/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/sv/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/sv/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/sv/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/sv/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/sv/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/sv/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/sv/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/sv/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/sw/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/sw/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/sw/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/sw/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/sw/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/sw/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/sw/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashibodi', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/sw/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listi', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/sw/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/sw/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/tr/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/tr/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/tr/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/tr/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/tr/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/tr/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/tr/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Panel', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/tr/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/tr/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/tr/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/uk/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/uk/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/uk/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/uk/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/uk/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/uk/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/uk/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Дешборд', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/uk/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Перегляд', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/uk/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/uk/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/vi/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/vi/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/vi/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/vi/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/vi/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/vi/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/vi/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Bảng điều khiển', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/vi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Danh sách', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/vi/widgets/account-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/vi/widgets/account-widget.php -------------------------------------------------------------------------------- /lang/vendor/filament/zh_CN/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/zh_CN/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/zh_CN/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/zh_CN/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/zh_CN/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/zh_CN/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/zh_CN/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | '仪表板', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/zh_CN/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '列表', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/zh_TW/global-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/zh_TW/global-search.php -------------------------------------------------------------------------------- /lang/vendor/filament/zh_TW/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/zh_TW/layout.php -------------------------------------------------------------------------------- /lang/vendor/filament/zh_TW/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/lang/vendor/filament/zh_TW/login.php -------------------------------------------------------------------------------- /lang/vendor/filament/zh_TW/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | '主控台', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /lang/vendor/filament/zh_TW/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '清單', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/vendor/filament-breezy/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-lockscreen/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-no-connection/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlpetGexha/Laravel-Employee-Management/HEAD/vite.config.js --------------------------------------------------------------------------------