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

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

{{ __('Turn Your Website into Intelligent Dynamic Conversations') }}
{{ __('Your Balance is') }} @if (auth()->user()->gpt_3_turbo_credits == -1) {{ __('Unlimited') }} @else {{ number_format(auth()->user()->gpt_3_turbo_credits + auth()->user()->gpt_3_turbo_credits_prepaid) }} @endif {{ __('GPT 3.5 Turbo') }} {{ __('Words') }}
@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