@php /** @var \App\Support\Tools\ToolDefinition $tool */ $schema = [ '@context' => 'https://schema.org', '@type' => 'SoftwareApplication', 'name' => $tool->name, 'applicationCategory' => 'UtilitiesApplication', 'operatingSystem' => 'Any (web browser)', 'url' => $seo['canonical'], 'description' => $seo['description'], 'offers' => ['@type' => 'Offer', 'price' => '0', 'priceCurrency' => config('zamatools.plans.currency', 'USD')], ]; @endphp
{{-- ------------------------------------------------ main column --}}

{{ $seo['h1'] }}

{{ $seo['lead'] }}

@include('tools.partials.uploader') {{-- --------------------------------------------- SEO copy --}}

About {{ $tool->name }}

@foreach ($seo['intro'] as $paragraph)

{{ $paragraph }}

@endforeach

How to use {{ $tool->name }}

    @foreach ($seo['steps'] as $index => $step)
  1. {{ $index + 1 }}

    {{ $step['title'] }}

    {{ $step['text'] }}

  2. @endforeach
@if ($tool->features !== [])

What this tool can do

    @foreach ($tool->features as $feature)
  • {{ $feature }}
  • @endforeach
@endif

Why use {{ $brand['name'] }}

@foreach ($seo['benefits'] as $benefit)

{{ $benefit['title'] }}

{{ $benefit['text'] }}

@endforeach
{{-- --------------------------------------------------- sidebar --}}