@extends('catalog::layouts.master') @section('content')

Catalog perfomance test

@foreach ($catalogs as $catalog) @endforeach
Slug Name
{{ $catalog->slug }} {{ @$catalog->translation['value'] }}
@if($catalog->entries) @foreach ($catalog->entries as $entry)
  • {{ $entry->slug }} => {{ @$entry->translation['value'] }}

    • @if($entry->attributes) @foreach ($entry->attributes as $attribute)
    • {{ @$attribute->slug }} => {{ @$attribute->translation['value'] }}
    • @if ($entry->subattributes)
        @foreach ($entry->subattributes as $subattribute)
      1. {{ @$subattribute->slug }} => {{ @$subattribute->translation['value'] }}
      2. @endforeach
      @endif @endforeach @endif
@endforeach @endif
{{ $catalogs->links()}}
@endsection