@extends('layouts/layoutMaster')
@section('title', 'AI Chat Assistant')
@if(env('APP_DEMO'))
@section('content')
This feature is disabled in the demo environment.
@endsection
@elseif(!$settings->enable_ai_chat_global || !$settings->enable_ai_for_admin || !$settings->enable_ai_for_business_intelligence)
@section('content')
AI Chat Assistant is not enabled for this account.
@endsection
@else
@section('page-script')
@endsection
@section('content')
@endsection
@endif