%PDF- %PDF-
Direktori : /home/ugotscom/bos_naturals/app/Http/Controllers/ |
Current File : /home/ugotscom/bos_naturals/app/Http/Controllers/BotManController.php |
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Botman\OnboardingConversation; class BotManController extends Controller { /** * Place your BotMan logic here. */ public function handle() { $botman = app('botman'); $botman->hears('{message}', function ($botman, $message) { $botman->startConversation(new OnboardingConversation); }); $botman->listen(); } }