@extends('layouts.app') @section('site_title', formatTitle([__('Tools'), config('settings.title')])) @section('content')
@if(config('settings.ad_projects_top'))
{!! config('settings.ad_projects_top') !!}
@endif @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('dashboard'), 'title' => __('Home')], ['title' => __('Tools')], ]])

{{ __('Tools') }}

@php if(config('settings.gcs')) { $tools['SEO'][] = [ 'icon' => 'manage-search', 'title' => __('SERP checker'), 'route' => route('tools.serp_checker') ]; $tools['SEO'][] = [ 'icon' => 'search', 'title' => __('Indexed pages checker'), 'route' => route('tools.indexed_pages_checker') ]; } if(config('settings.ke')) { $tools['SEO'][] = [ 'icon' => 'abc', 'title' => __('Keyword research'), 'route' => route('tools.keyword_research') ]; } $tools['Utilities'][] = [ 'icon' => 'wifi-tethering', 'title' => __('Website status checker'), 'route' => route('tools.website_status_checker') ]; $tools['Utilities'][] = [ 'icon' => 'lock', 'title' => __('SSL checker'), 'route' => route('tools.ssl_checker') ]; $tools['Utilities'][] = [ 'icon' => 'info', 'title' => __('WHOIS lookup'), 'route' => route('tools.whois_lookup') ]; $tools['Utilities'][] = [ 'icon' => 'dns', 'title' => __('DNS lookup'), 'route' => route('tools.dns_lookup') ]; $tools['Utilities'][] = [ 'icon' => 'travel-explore', 'title' => __('IP lookup'), 'route' => route('tools.ip_lookup') ]; $tools['Utilities'][] = [ 'icon' => 'password', 'title' => __('Password generator'), 'route' => route('tools.password_generator') ]; $tools['Utilities'][] = [ 'icon' => 'qr', 'title' => __('QR generator'), 'route' => route('tools.qr_generator') ]; $tools['Utilities'][] = [ 'icon' => 'tab', 'title' => __('User-Agent parser'), 'route' => route('tools.user_agent_parser') ]; $tools['Utilities'][] = [ 'icon' => 'md5', 'title' => __('MD5 generator'), 'route' => route('tools.md5_generator') ]; $tools['Utilities'][] = [ 'icon' => 'js', 'title' => __('JS minifier'), 'route' => route('tools.js_minifier') ]; $tools['Utilities'][] = [ 'icon' => 'css', 'title' => __('CSS minifier'), 'route' => route('tools.css_minifier') ]; $tools['Utilities'][] = [ 'icon' => 'html', 'title' => __('HTML minifier'), 'route' => route('tools.html_minifier') ]; $tools['Content'][] = [ 'icon' => 'link', 'title' => __('Text to slug'), 'route' => route('tools.text_to_slug') ]; $tools['Content'][] = [ 'icon' => 'text-case', 'title' => __('Case converter'), 'route' => route('tools.case_converter') ]; $tools['Content'][] = [ 'icon' => '123', 'title' => __('Word counter'), 'route' => route('tools.word_counter') ]; $tools['Content'][] = [ 'icon' => 'article', 'title' => __('Lorem ipsum generator'), 'route' => route('tools.lorem_ipsum_generator') ]; $tools['Content'][] = [ 'icon' => 'url', 'title' => __('URL converter'), 'route' => route('tools.url_converter') ]; $tools['Content'][] = [ 'icon' => 'b64', 'title' => __('Base64 converter'), 'route' => route('tools.base64_converter') ]; @endphp
@foreach($tools as $category => $items)
{{ __($category) }}
@foreach($items as $tool)
@include('icons.' . $tool['icon'], ['class' => 'fill-current width-4 height-4'])
{{ $tool['title'] }}
@include((__('lang_dir') == 'rtl' ? 'icons.chevron-left' : 'icons.chevron-right'), ['class' => 'flex-shrink-0 width-3 height-3 fill-current mx-2'])
@endforeach @endforeach
@if(config('settings.ad_projects_bottom'))
{!! config('settings.ad_projects_bottom') !!}
@endif
@endsection @include('shared.sidebars.user')