├── Readme.md ├── application ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Filament │ │ └── Resources │ │ │ ├── UsersResource.php │ │ │ └── UsersResource │ │ │ └── Pages │ │ │ ├── CreateUsers.php │ │ │ ├── EditUsers.php │ │ │ └── ListUsers.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Controller.php │ │ │ └── Telegram │ │ │ │ └── WebhookController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── EncryptCookies.php │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustHosts.php │ │ │ ├── TrustProxies.php │ │ │ ├── ValidateSignature.php │ │ │ └── VerifyCsrfToken.php │ ├── Models │ │ └── User.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ ├── HorizonServiceProvider.php │ │ └── RouteServiceProvider.php │ └── Telegram │ │ ├── Commands │ │ └── StartCommand.php │ │ └── Queries │ │ ├── AbstractQuery.php │ │ ├── InlineButtonsQuery.php │ │ ├── RandomNumberQuery.php │ │ └── TestBtnQuery.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-support.php │ ├── filament.php │ ├── filesystems.php │ ├── hashing.php │ ├── horizon.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── sanctum.php │ ├── services.php │ ├── session.php │ ├── telegram.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ │ └── 2019_12_14_000001_create_personal_access_tokens_table.php │ └── seeders │ │ └── DatabaseSeeder.php ├── lang │ └── vendor │ │ └── 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 │ │ ├── ca │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── cs │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ └── view.php │ │ └── components │ │ │ └── button.php │ │ ├── da │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── de │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── en │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── es │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── eu │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── fa │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ └── button.php │ │ ├── fi │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── fr │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ └── button.php │ │ ├── he │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── hi │ │ └── actions │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── edit.php │ │ │ └── modal.php │ │ ├── hu │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ └── button.php │ │ ├── hy │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ └── button.php │ │ ├── id │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── it │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ └── button.php │ │ ├── ja │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── kh │ │ └── actions │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ └── edit.php │ │ ├── ko │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── ku │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── lt │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── lv │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── mn │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── ms │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── my │ │ └── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ └── modal.php │ │ ├── nl │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ └── button.php │ │ ├── pl │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ └── button.php │ │ ├── pt_BR │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ └── button.php │ │ ├── pt_PT │ │ ├── actions │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── edit.php │ │ │ ├── modal.php │ │ │ └── view.php │ │ └── components │ │ │ └── button.php │ │ ├── ro │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ └── button.php │ │ ├── ru │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ └── button.php │ │ ├── sv │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── sw │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── tr │ │ └── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ ├── uk │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ └── button.php │ │ ├── vi │ │ ├── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── components │ │ │ ├── button.php │ │ │ └── modal.php │ │ ├── zh_CN │ │ └── actions │ │ │ ├── associate.php │ │ │ ├── attach.php │ │ │ ├── create.php │ │ │ ├── delete.php │ │ │ ├── detach.php │ │ │ ├── dissociate.php │ │ │ ├── edit.php │ │ │ ├── force-delete.php │ │ │ ├── group.php │ │ │ ├── modal.php │ │ │ ├── replicate.php │ │ │ ├── restore.php │ │ │ └── view.php │ │ └── zh_TW │ │ ├── actions │ │ ├── associate.php │ │ ├── attach.php │ │ ├── create.php │ │ ├── delete.php │ │ ├── detach.php │ │ ├── dissociate.php │ │ ├── edit.php │ │ ├── force-delete.php │ │ ├── group.php │ │ ├── modal.php │ │ ├── replicate.php │ │ ├── restore.php │ │ └── view.php │ │ └── components │ │ └── button.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── vendor │ │ └── horizon │ │ ├── app-dark.css │ │ ├── app.css │ │ ├── app.js │ │ ├── img │ │ ├── favicon.png │ │ ├── horizon.svg │ │ └── sprite.svg │ │ └── mix-manifest.json ├── resources │ ├── css │ │ └── app.css │ ├── js │ │ ├── app.js │ │ └── bootstrap.js │ └── views │ │ ├── vendor │ │ └── filament-support │ │ │ └── components │ │ │ ├── actions │ │ │ └── group.blade.php │ │ │ ├── button.blade.php │ │ │ ├── dropdown │ │ │ ├── header.blade.php │ │ │ ├── index.blade.php │ │ │ ├── item.blade.php │ │ │ └── list │ │ │ │ ├── index.blade.php │ │ │ │ └── item.blade.php │ │ │ ├── grid │ │ │ ├── column.blade.php │ │ │ └── index.blade.php │ │ │ ├── hr.blade.php │ │ │ ├── icon-button.blade.php │ │ │ ├── link.blade.php │ │ │ ├── loading-indicator.blade.php │ │ │ └── modal │ │ │ ├── actions.blade.php │ │ │ ├── heading.blade.php │ │ │ ├── index.blade.php │ │ │ └── subheading.blade.php │ │ └── welcome.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .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 └── docker ├── .env ├── .env.example ├── .gitignore ├── docker-compose.core.yml ├── docker-compose.local.yml ├── docker-compose.prod.yml ├── global └── services │ └── supervisor │ └── conf.d │ ├── horizon.conf │ └── php-fpm.conf ├── local └── services │ └── caddy │ ├── Caddyfile │ └── snippets │ └── php └── prod └── services └── caddy └── Caddyfile /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/Readme.md -------------------------------------------------------------------------------- /application/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/.editorconfig -------------------------------------------------------------------------------- /application/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/.env.example -------------------------------------------------------------------------------- /application/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/.gitattributes -------------------------------------------------------------------------------- /application/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/.gitignore -------------------------------------------------------------------------------- /application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/README.md -------------------------------------------------------------------------------- /application/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Console/Kernel.php -------------------------------------------------------------------------------- /application/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /application/app/Filament/Resources/UsersResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Filament/Resources/UsersResource.php -------------------------------------------------------------------------------- /application/app/Filament/Resources/UsersResource/Pages/CreateUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Filament/Resources/UsersResource/Pages/CreateUsers.php -------------------------------------------------------------------------------- /application/app/Filament/Resources/UsersResource/Pages/EditUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Filament/Resources/UsersResource/Pages/EditUsers.php -------------------------------------------------------------------------------- /application/app/Filament/Resources/UsersResource/Pages/ListUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Filament/Resources/UsersResource/Pages/ListUsers.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/Telegram/WebhookController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Http/Controllers/Telegram/WebhookController.php -------------------------------------------------------------------------------- /application/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Http/Kernel.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /application/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Models/User.php -------------------------------------------------------------------------------- /application/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /application/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /application/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /application/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /application/app/Providers/HorizonServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Providers/HorizonServiceProvider.php -------------------------------------------------------------------------------- /application/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /application/app/Telegram/Commands/StartCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Telegram/Commands/StartCommand.php -------------------------------------------------------------------------------- /application/app/Telegram/Queries/AbstractQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Telegram/Queries/AbstractQuery.php -------------------------------------------------------------------------------- /application/app/Telegram/Queries/InlineButtonsQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Telegram/Queries/InlineButtonsQuery.php -------------------------------------------------------------------------------- /application/app/Telegram/Queries/RandomNumberQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Telegram/Queries/RandomNumberQuery.php -------------------------------------------------------------------------------- /application/app/Telegram/Queries/TestBtnQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/app/Telegram/Queries/TestBtnQuery.php -------------------------------------------------------------------------------- /application/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/artisan -------------------------------------------------------------------------------- /application/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/bootstrap/app.php -------------------------------------------------------------------------------- /application/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /application/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/composer.json -------------------------------------------------------------------------------- /application/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/composer.lock -------------------------------------------------------------------------------- /application/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/app.php -------------------------------------------------------------------------------- /application/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/auth.php -------------------------------------------------------------------------------- /application/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/broadcasting.php -------------------------------------------------------------------------------- /application/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/cache.php -------------------------------------------------------------------------------- /application/config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/cors.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/filament-support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/filament-support.php -------------------------------------------------------------------------------- /application/config/filament.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/filament.php -------------------------------------------------------------------------------- /application/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/filesystems.php -------------------------------------------------------------------------------- /application/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/hashing.php -------------------------------------------------------------------------------- /application/config/horizon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/horizon.php -------------------------------------------------------------------------------- /application/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/logging.php -------------------------------------------------------------------------------- /application/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/mail.php -------------------------------------------------------------------------------- /application/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/queue.php -------------------------------------------------------------------------------- /application/config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/sanctum.php -------------------------------------------------------------------------------- /application/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/services.php -------------------------------------------------------------------------------- /application/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/session.php -------------------------------------------------------------------------------- /application/config/telegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/telegram.php -------------------------------------------------------------------------------- /application/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/config/view.php -------------------------------------------------------------------------------- /application/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /application/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/database/factories/UserFactory.php -------------------------------------------------------------------------------- /application/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /application/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php -------------------------------------------------------------------------------- /application/database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /application/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /application/database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ar/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ar/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ar/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ar/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ar/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ar/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ar/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ar/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ar/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ar/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ar/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ar/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ar/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ar/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ar/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ar/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ar/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ar/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ar/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ar/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ar/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ar/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ar/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ar/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ar/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ar/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ar/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ar/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bn/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bn/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/bs/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/bs/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ca/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ca/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/cs/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/cs/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/cs/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/cs/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/cs/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/cs/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/cs/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/cs/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/cs/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/cs/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/cs/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/cs/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/cs/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/cs/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/cs/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/cs/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/cs/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/cs/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/cs/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/cs/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/cs/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/cs/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/da/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/da/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/de/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/de/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/en/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/en/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/es/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/es/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/eu/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/eu/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fa/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fa/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fa/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fa/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fa/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fa/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fa/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fa/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fa/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fa/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fa/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fa/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fa/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fa/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fa/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fa/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fa/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fa/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fa/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fa/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fa/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fa/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fa/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fa/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fa/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fa/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fa/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fa/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fi/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fi/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fr/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fr/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fr/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fr/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fr/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fr/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fr/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fr/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fr/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fr/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fr/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fr/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fr/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fr/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fr/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fr/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fr/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fr/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fr/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fr/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fr/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fr/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fr/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fr/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fr/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fr/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/fr/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/fr/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/he/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/he/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hi/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hi/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hi/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hi/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hi/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hi/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hi/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hi/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hi/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hi/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hi/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hi/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hu/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hu/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hu/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hu/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hu/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hu/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hu/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hu/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hu/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hu/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hu/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hu/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hu/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hu/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hu/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hu/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hu/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hu/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hu/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hu/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hu/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hu/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hu/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hu/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hu/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hu/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hu/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hu/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hy/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hy/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hy/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hy/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hy/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hy/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hy/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hy/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hy/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hy/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hy/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hy/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hy/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hy/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hy/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hy/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hy/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hy/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hy/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hy/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hy/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hy/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hy/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hy/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hy/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hy/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/hy/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/hy/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/id/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/id/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/it/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/it/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/it/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/it/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/it/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/it/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/it/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/it/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/it/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/it/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/it/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/it/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/it/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/it/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/it/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/it/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/it/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/it/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/it/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/it/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/it/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/it/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/it/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/it/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/it/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/it/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/it/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/it/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ja/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ja/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/kh/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/kh/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/kh/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/kh/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/kh/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/kh/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/kh/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/kh/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/kh/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/kh/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ko/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ko/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ku/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ku/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lt/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lt/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/lv/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/lv/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/mn/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/mn/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ms/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ms/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/my/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/my/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/my/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/my/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/my/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/my/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/my/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/my/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/my/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/my/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/my/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/my/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/my/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/my/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/my/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/my/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/nl/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/nl/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/nl/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/nl/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/nl/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/nl/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/nl/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/nl/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/nl/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/nl/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/nl/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/nl/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/nl/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/nl/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/nl/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/nl/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/nl/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/nl/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/nl/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/nl/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/nl/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/nl/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/nl/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/nl/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/nl/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/nl/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/nl/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/nl/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pl/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pl/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pl/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pl/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pl/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pl/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pl/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pl/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pl/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pl/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pl/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pl/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pl/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pl/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pl/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pl/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pl/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pl/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pl/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pl/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pl/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pl/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pl/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pl/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pl/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pl/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pl/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pl/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_BR/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_BR/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_BR/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_BR/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_BR/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_BR/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_BR/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_BR/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_BR/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_BR/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_BR/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_BR/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_BR/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_BR/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_BR/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_BR/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_BR/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_BR/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_BR/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_BR/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_BR/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_BR/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_BR/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_BR/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_BR/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_BR/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_PT/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_PT/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_PT/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_PT/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_PT/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_PT/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_PT/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_PT/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_PT/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_PT/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_PT/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_PT/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_PT/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_PT/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/pt_PT/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/pt_PT/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ro/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ro/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ro/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ro/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ro/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ro/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ro/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ro/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ro/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ro/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ro/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ro/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ro/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ro/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ro/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ro/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ro/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ro/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ro/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ro/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ro/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ro/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ro/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ro/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ro/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ro/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ro/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ro/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ru/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ru/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ru/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ru/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ru/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ru/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ru/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ru/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ru/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ru/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ru/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ru/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ru/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ru/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ru/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ru/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ru/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ru/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ru/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ru/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ru/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ru/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ru/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ru/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ru/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ru/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/ru/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/ru/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sv/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sv/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/sw/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/sw/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/tr/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/tr/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/tr/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/tr/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/tr/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/tr/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/tr/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/tr/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/tr/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/tr/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/tr/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/tr/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/tr/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/tr/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/tr/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/tr/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/tr/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/tr/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/tr/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/tr/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/tr/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/tr/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/tr/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/tr/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/tr/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/tr/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/uk/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/uk/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/uk/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/uk/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/uk/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/uk/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/uk/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/uk/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/uk/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/uk/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/uk/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/uk/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/uk/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/uk/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/uk/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/uk/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/uk/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/uk/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/uk/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/uk/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/uk/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/uk/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/uk/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/uk/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/uk/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/uk/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/uk/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/uk/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/components/button.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/vi/components/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/vi/components/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_CN/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_CN/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_CN/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_CN/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_CN/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_CN/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_CN/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_CN/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_CN/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_CN/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_CN/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_CN/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_CN/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_CN/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_CN/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_CN/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_CN/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_CN/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_CN/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_CN/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_CN/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_CN/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_CN/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_CN/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_CN/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_CN/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_TW/actions/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_TW/actions/associate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_TW/actions/attach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_TW/actions/attach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_TW/actions/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_TW/actions/create.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_TW/actions/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_TW/actions/delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_TW/actions/detach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_TW/actions/detach.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_TW/actions/dissociate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_TW/actions/dissociate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_TW/actions/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_TW/actions/edit.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_TW/actions/force-delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_TW/actions/force-delete.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_TW/actions/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_TW/actions/group.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_TW/actions/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_TW/actions/modal.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_TW/actions/replicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_TW/actions/replicate.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_TW/actions/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_TW/actions/restore.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_TW/actions/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_TW/actions/view.php -------------------------------------------------------------------------------- /application/lang/vendor/filament-support/zh_TW/components/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/lang/vendor/filament-support/zh_TW/components/button.php -------------------------------------------------------------------------------- /application/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/package.json -------------------------------------------------------------------------------- /application/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/phpunit.xml -------------------------------------------------------------------------------- /application/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/public/.htaccess -------------------------------------------------------------------------------- /application/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/public/index.php -------------------------------------------------------------------------------- /application/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /application/public/vendor/horizon/app-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/public/vendor/horizon/app-dark.css -------------------------------------------------------------------------------- /application/public/vendor/horizon/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/public/vendor/horizon/app.css -------------------------------------------------------------------------------- /application/public/vendor/horizon/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/public/vendor/horizon/app.js -------------------------------------------------------------------------------- /application/public/vendor/horizon/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/public/vendor/horizon/img/favicon.png -------------------------------------------------------------------------------- /application/public/vendor/horizon/img/horizon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/public/vendor/horizon/img/horizon.svg -------------------------------------------------------------------------------- /application/public/vendor/horizon/img/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/public/vendor/horizon/img/sprite.svg -------------------------------------------------------------------------------- /application/public/vendor/horizon/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/public/vendor/horizon/mix-manifest.json -------------------------------------------------------------------------------- /application/resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /application/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/js/bootstrap.js -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/actions/group.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/actions/group.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/button.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/dropdown/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/dropdown/header.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/dropdown/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/dropdown/index.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/dropdown/item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/dropdown/item.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/dropdown/list/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/dropdown/list/index.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/dropdown/list/item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/dropdown/list/item.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/grid/column.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/grid/column.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/grid/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/grid/index.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/hr.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/hr.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/icon-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/icon-button.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/link.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/loading-indicator.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/loading-indicator.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/modal/actions.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/modal/actions.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/modal/heading.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/modal/heading.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/modal/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/modal/index.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/filament-support/components/modal/subheading.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/vendor/filament-support/components/modal/subheading.blade.php -------------------------------------------------------------------------------- /application/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /application/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/routes/api.php -------------------------------------------------------------------------------- /application/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/routes/channels.php -------------------------------------------------------------------------------- /application/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/routes/console.php -------------------------------------------------------------------------------- /application/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/routes/web.php -------------------------------------------------------------------------------- /application/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /application/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /application/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/storage/framework/.gitignore -------------------------------------------------------------------------------- /application/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /application/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /application/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /application/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /application/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /application/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /application/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/tests/CreatesApplication.php -------------------------------------------------------------------------------- /application/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /application/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/tests/TestCase.php -------------------------------------------------------------------------------- /application/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /application/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/application/vite.config.js -------------------------------------------------------------------------------- /docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/docker/.env -------------------------------------------------------------------------------- /docker/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/docker/.env.example -------------------------------------------------------------------------------- /docker/.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /docker/docker-compose.core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/docker/docker-compose.core.yml -------------------------------------------------------------------------------- /docker/docker-compose.local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/docker/docker-compose.local.yml -------------------------------------------------------------------------------- /docker/docker-compose.prod.yml: -------------------------------------------------------------------------------- 1 | version: '3.3' -------------------------------------------------------------------------------- /docker/global/services/supervisor/conf.d/horizon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/docker/global/services/supervisor/conf.d/horizon.conf -------------------------------------------------------------------------------- /docker/global/services/supervisor/conf.d/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/docker/global/services/supervisor/conf.d/php-fpm.conf -------------------------------------------------------------------------------- /docker/local/services/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/docker/local/services/caddy/Caddyfile -------------------------------------------------------------------------------- /docker/local/services/caddy/snippets/php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KielD-01/telegram-bot-sdk-examples/HEAD/docker/local/services/caddy/snippets/php -------------------------------------------------------------------------------- /docker/prod/services/caddy/Caddyfile: -------------------------------------------------------------------------------- 1 | :80 { 2 | } --------------------------------------------------------------------------------