@extends('admin.master') @section('title', @trans('Customer ChatBot')) @section('content')

@trans('Customer ChatBot')

@forelse ($customers as $item) @empty @endforelse
# @trans('Name') @trans('Email') @trans('Phone') @trans('Ip') @trans('Model Ai') @trans('Settings')
{{ $loop->index + 1 }} {{ @$item->name }} {{ @$item->email }} {{ @$item->phone }} {{ @$item->ip }} {{ @$item->configChatBot->model_ai }} @include('admin.pages.chatbot.customer._model_delete', ['id' => $item->id])
@trans('No customers chatbot found')
@endsection