├── LICENSE.md ├── composer.json ├── config └── nutgram.php ├── resources └── views │ ├── logging │ ├── request.blade.php │ └── response.blade.php │ └── terminal │ ├── fail.blade.php │ ├── list.blade.php │ ├── success.blade.php │ └── table.blade.php ├── routes └── telegram.php └── src ├── Console ├── BaseMakeCommand.php ├── HookInfoCommand.php ├── HookRemoveCommand.php ├── HookSetCommand.php ├── IdeGenerateCommand.php ├── ListCommand.php ├── ListenCommand.php ├── LogoutCommand.php ├── MakeCommandCommand.php ├── MakeConversationCommand.php ├── MakeExceptionCommand.php ├── MakeHandlerCommand.php ├── MakeMiddlewareCommand.php ├── RegisterCommandsCommand.php └── RunCommand.php ├── Facades └── Telegram.php ├── Log ├── LoggerHandler.php ├── NutgramFormatter.php └── NutgramLogger.php ├── Middleware └── ValidateWebAppData.php ├── Mixins ├── FileMixin.php ├── MixinUtils.php └── NutgramMixin.php ├── NutgramServiceProvider.php ├── RunningMode └── LaravelWebhook.php ├── Stubs ├── Command.stub ├── Conversation.stub ├── Exception.stub ├── Handler.stub ├── Ide.stub ├── InlineMenu.stub └── Middleware.stub └── Support └── Helpers.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/composer.json -------------------------------------------------------------------------------- /config/nutgram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/config/nutgram.php -------------------------------------------------------------------------------- /resources/views/logging/request.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/resources/views/logging/request.blade.php -------------------------------------------------------------------------------- /resources/views/logging/response.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/resources/views/logging/response.blade.php -------------------------------------------------------------------------------- /resources/views/terminal/fail.blade.php: -------------------------------------------------------------------------------- 1 |
{{$value}}
2 | -------------------------------------------------------------------------------- /resources/views/terminal/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/resources/views/terminal/list.blade.php -------------------------------------------------------------------------------- /resources/views/terminal/success.blade.php: -------------------------------------------------------------------------------- 1 |
{{$value}}
2 | -------------------------------------------------------------------------------- /resources/views/terminal/table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/resources/views/terminal/table.blade.php -------------------------------------------------------------------------------- /routes/telegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/routes/telegram.php -------------------------------------------------------------------------------- /src/Console/BaseMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/BaseMakeCommand.php -------------------------------------------------------------------------------- /src/Console/HookInfoCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/HookInfoCommand.php -------------------------------------------------------------------------------- /src/Console/HookRemoveCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/HookRemoveCommand.php -------------------------------------------------------------------------------- /src/Console/HookSetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/HookSetCommand.php -------------------------------------------------------------------------------- /src/Console/IdeGenerateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/IdeGenerateCommand.php -------------------------------------------------------------------------------- /src/Console/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/ListCommand.php -------------------------------------------------------------------------------- /src/Console/ListenCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/ListenCommand.php -------------------------------------------------------------------------------- /src/Console/LogoutCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/LogoutCommand.php -------------------------------------------------------------------------------- /src/Console/MakeCommandCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/MakeCommandCommand.php -------------------------------------------------------------------------------- /src/Console/MakeConversationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/MakeConversationCommand.php -------------------------------------------------------------------------------- /src/Console/MakeExceptionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/MakeExceptionCommand.php -------------------------------------------------------------------------------- /src/Console/MakeHandlerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/MakeHandlerCommand.php -------------------------------------------------------------------------------- /src/Console/MakeMiddlewareCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/MakeMiddlewareCommand.php -------------------------------------------------------------------------------- /src/Console/RegisterCommandsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/RegisterCommandsCommand.php -------------------------------------------------------------------------------- /src/Console/RunCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Console/RunCommand.php -------------------------------------------------------------------------------- /src/Facades/Telegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Facades/Telegram.php -------------------------------------------------------------------------------- /src/Log/LoggerHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Log/LoggerHandler.php -------------------------------------------------------------------------------- /src/Log/NutgramFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Log/NutgramFormatter.php -------------------------------------------------------------------------------- /src/Log/NutgramLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Log/NutgramLogger.php -------------------------------------------------------------------------------- /src/Middleware/ValidateWebAppData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Middleware/ValidateWebAppData.php -------------------------------------------------------------------------------- /src/Mixins/FileMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Mixins/FileMixin.php -------------------------------------------------------------------------------- /src/Mixins/MixinUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Mixins/MixinUtils.php -------------------------------------------------------------------------------- /src/Mixins/NutgramMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Mixins/NutgramMixin.php -------------------------------------------------------------------------------- /src/NutgramServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/NutgramServiceProvider.php -------------------------------------------------------------------------------- /src/RunningMode/LaravelWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/RunningMode/LaravelWebhook.php -------------------------------------------------------------------------------- /src/Stubs/Command.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Stubs/Command.stub -------------------------------------------------------------------------------- /src/Stubs/Conversation.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Stubs/Conversation.stub -------------------------------------------------------------------------------- /src/Stubs/Exception.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Stubs/Exception.stub -------------------------------------------------------------------------------- /src/Stubs/Handler.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Stubs/Handler.stub -------------------------------------------------------------------------------- /src/Stubs/Ide.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Stubs/Ide.stub -------------------------------------------------------------------------------- /src/Stubs/InlineMenu.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Stubs/InlineMenu.stub -------------------------------------------------------------------------------- /src/Stubs/Middleware.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Stubs/Middleware.stub -------------------------------------------------------------------------------- /src/Support/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutgram/laravel/HEAD/src/Support/Helpers.php --------------------------------------------------------------------------------