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

@if (!is_null($category)) Discover {{ $category->name }} AI Tools Today @else Discover over {{ $tools_count }} AI Tools Today @endif

@include('front.partials.search')

All Categories

@foreach ($parent_categories as $parent_category)

{{ $parent_category->name }} {{ $parent_category->emoji }}

@endforeach
@if ($ai_tools->count() > 0)
@foreach ($ai_tools as $ai_tool)
@include('front.partials.ai-tool-card')
@endforeach
@else

😱 Yikes!

This is embarassing, there are no AI tools in this category yet.
We will find more AI to add here. In the meantime:

See more AI Tools
@endif
@if ($ai_tools instanceof \Illuminate\Pagination\LengthAwarePaginator) @if ($ai_tools->hasPages())
{{ $ai_tools->onEachSide(1)->links('pagination::bootstrap-5-pagination-limit-10') }}
@endif @elseif ($ai_tools instanceof \Illuminate\Pagination\CursorPaginator) @if ($ai_tools->hasPages())
{{ $ai_tools->links('pagination::simple-bootstrap-5') }}
@endif @endif
Use Search to discover AI tools by brand, task or features.
@endsection