@extends('layouts.app') @section('css') @endsection @section('content')
@csrf

{{ __('AI Web Chat') }}

{{ __('Turn Your Website into Intelligent Dynamic Conversations') }}
@foreach ($chats as $chat) @if ($loop->first) @endif
{{ __($chat->title) }}
{{ $chat->url }}
{{ $chat->messages }} {{ __('messages') }}
{{ \Carbon\Carbon::parse($chat->updated_at)->diffForhumans() }}
@endforeach
{{ __('Hey there, what would you like to know about this website?') }}
{{ __('Hey there, I can help you with analyzing any Website URL that you will share with me') }}
{{ __('Enter your target website URL link and press on Analyze button to get started') }}

@endsection @section('js') @endsection