@extends('user.layouts.app') @section('content')
{{-- Failed --}} @if (Session::has('failed')) @endif {{-- Success --}} @if (Session::has('success')) @endif
{{-- Chat Genius --}} @if (count($chatgenius) == 0)
chat genius

{{ __('No chat assistants found') }}

@else @foreach ($chatgenius as $chatgenius)
{{ __($chatgenius->chat_genius_name) }}
{{ __($chatgenius->chat_genius_expert) }}
{{ __($chatgenius->chat_genius_description) }}
{{ __('Chat') }}
@endforeach @endif
@include('user.includes.footer')
@endsection