How to Install Botman Chatbot in Laravel?
https://www.itsolutionstuff.com/post/how-to-install-botman-chatbot-in-laravel-5example.html
Last updated
https://www.itsolutionstuff.com/post/how-to-install-botman-chatbot-in-laravel-5example.html
Last updated
By Hardik Savani July 6, 2019 Category : PHP LaravelPlayUnmuteLoaded: 1.00%FullscreenIn this tutorial, i would like to show you how to create simple chatbot using botman in your existing laravel 5.8 application. we will install botman with laravel and you can easily use web driver, facebook driver, telegram driver, slack driver, hip chat driver etc. we will use web driver for creating very simple botman chatbot in laravel 5, laravel 6, laravel 7, laravel 8 and laravel 9 application.
Chatbots is a popular in todays technology. everyone wants to put chatbots in his website because we can easily integrate command faq question and user can ask simple question regarding our website.
there are several bots are available in market. some company has it's own bot. but almost are paid so i will prefer to use botman that is open source chatbot with laravel. you can easily integrate with laravel too.
Bellow i listed some step to create very simple example to build chatbot with your existing laravel application. so let's follow few steps to get botman chatbot with your app.
Preview
Step 1: Install Laravel 5.8
first of all we need to get fresh Laravel 5.8 version application using bellow command, So open your terminal OR command prompt and run bellow command:
Step 2: Install Botman and Botman Driver
In this step we will install botman composer package and also install botman web driver. so we need to run following both command to install botman.
Install Botman:
Install Botman Driver:
Read Also: How to Create Widgets in Laravel?
Step 3: Create Configuration File
This step is not required to follow. But you can create configuration file for driver and cache. so let's create bot file on config folder and write code like as i gave you bellow:
config/botman/config.php
config/botman/web.php
Step 4: Create Routes
Here, we need to add create routes for botman request. so open your "routes/web.php" file and add following route.
routes/web.php
Step 5: Create Controller
In this step, we need to create one controller as BotManController. in this controller we need to write code of botman reply and conversation. you can also write your own logic latter.
app/Http/Controllers/BotManController.php
Step 5: Update Blade File
In this file, we need to update some code on welcome balde file. we need to add botman widget in welcome.blade.php file.
resources/views/welcome.blade.php
Now we are ready to run our chatbot example with laravel 5.8 so run bellow command for quick run:
Now you can open bellow URL on your browser:
Read Also: Stripe Payment Gateway Integration in Laravel 5.8
We can also use some tutorials from here: Botman.
You can download code from git: Download Code from Github
I hope it can help you...
I hope it can help you....