@extends('front.layouts.app') @section('content')
@include('front.partials.breadcrumbs')
@include('front.partials.search')

{{ $query }} AI tools

@foreach ($results as $result)
{{ $result->tool_name }}

{{ $result->ai_tool->tool_name }}

@foreach (str_extract_sentences($result->ai_tool->summary, 2) as $sentence) {!! $sentence !!} @endforeach

{{ $result->ai_tool->pricing_type }} @if ($result->ai_tool->is_app_web_both == 'both') App & Web @else {{ ucwords($result->ai_tool->is_app_web_both) }} @endif
@foreach ($result->ai_tool->keywords as $keyword) @if ($loop->iteration <= 3) {{ $keyword->value }} @else + {{ $result->ai_tool->keywords->count() - 3 }} more @break @endif @endforeach
@endforeach
@if ($results instanceof \Illuminate\Pagination\LengthAwarePaginator) @if ($results->hasPages())
{{ $results->onEachSide(1)->links('pagination::bootstrap-5-pagination-limit-10') }}
@endif @elseif ($results instanceof \Illuminate\Pagination\CursorPaginator) @if ($results->hasPages())
{{ $results->links('pagination::simple-bootstrap-5') }}
@endif @endif
Use Search to discover AI tools by brand, task or features.
@include('front.partials.sidebar')
@endsection