@extends('layouts.main') @section('seo') {{ __("info.main-title") . " - " . config('app.name', 'Laravel') }} @endsection @section('content')

{{ __("info.main-title") }}

@if(!empty($categoryPages['delivery-and-transport']))

{{ __("info.delivery-and-transport") }}

    @foreach($categoryPages['delivery-and-transport'] as $page)
  1. {{ $page->getTranslation('title', $locale) }}
  2. @endforeach
@endif
@if(!empty($categoryPages['payment-and-security']))

{{ __("info.payment-and-security") }}

    @foreach($categoryPages['payment-and-security'] as $page)
  1. {{ $page->getTranslation('title', $locale) }}
  2. @endforeach
@endif
@if(!empty($categoryPages['legal-information']))

{{ __("info.legal-information") }}

    @foreach($categoryPages['legal-information'] as $page)
  1. {{ $page->getTranslation('title', $locale) }}
  2. @endforeach
@endif
@if(!empty($categoryPages['website-interaction']))

{{ __("info.website-interaction") }}

    @foreach($categoryPages['website-interaction'] as $page)
  1. {{ $page->getTranslation('title', $locale) }}
  2. @endforeach
@endif
@endsection