xalatechnologies/consultant-bot

Consultant Bot Package for Laravel

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/xalatechnologies/consultant-bot

v1.5.0 2024-09-23 10:52 UTC

This package is auto-updated.

Last update: 2025-12-23 13:24:41 UTC


README

ConsultantBot is a Laravel chatbot package for consulting services. It provides dynamic service options and localized conversations.

Installation

You can install this package via composer:

composer require xalatechnologies/consultant-bot

## Database Setup

Please ensure that the `services` table exists in your database. You can create the migration in your main project like this:

```bash
php artisan make:migration create_services_table

Schema::create('services', function (Blueprint $table) {
    $table->id();
    $table->string('title_en');        // English title
    $table->string('title_nb');        // Norwegian title
    $table->text('description_en');    // English description
    $table->text('description_nb');    // Norwegian description
    $table->timestamps();
});

use Illuminate\Database\Eloquent\Model;