@section('site_title', formatTitle([__('Keyword research'), __('Tool'), config('settings.title')])) @section('head_content') @endsection @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('dashboard'), 'title' => __('Home')], ['url' => route('tools'), 'title' => __('Tools')], ['title' => __('Tool')], ]])

{{ __('Keyword research') }}

{{ __('Keyword research') }}
@include('shared.message')
@cannot('tools', ['App\Models\User'])
@endcannot @csrf
@if ($errors->has('keywords')) {{ $errors->first('keywords') }} @endif {{ __('One per line.') }}
@if ($errors->has('country')) {{ $errors->first('country') }} @endif
@if ($errors->has('currency')) {{ $errors->first('currency') }} @endif
@if(config('settings.captcha_driver')) {{ __('Analyze') }} @if ($errors->has(formatCaptchaFieldName())) {{ __($errors->first(formatCaptchaFieldName())) }} @endif @else @endif
@cannot('tools', ['App\Models\User'])
@if(paymentProcessors()) @include('shared.features.locked') @else @include('shared.features.unavailable') @endif
@endcannot
@if(isset($results))
{{ __('Results') }}
@if(empty($results['data'])) {{ __('No results found.') }} @else
{{ __('Keyword') }}
{{ __('Search volume') }}
{{ __('Cost per click') }}
{{ __('Competition') }}
@foreach($results['data'] as $keyword)
{{ $keyword['keyword'] }}
{{ number_format($keyword['vol'], 0, __('.'), __(',')) }}
{{ formatMoney($keyword['cpc']['value'], $keyword['cpc']['currency']) }} {{ mb_strtoupper($currency) }}
@if($keyword['competition'] >= 0.66) {{ ($keyword['competition'] * 100) }}% @elseif($keyword['competition'] >= 0.33) {{ ($keyword['competition'] * 100) }}% @else {{ ($keyword['competition'] * 100) }}% @endif
{{ __('Copy') }}
@endforeach
@endif
@endif