@extends('layouts.site') @section('content')

{{ __('music_productions.meta-index-title') }}

{{ __('music_productions.meta-index-description') }}

@if($productions->count() > 0)
@php $accentColors = [ ['border' => '#54a8c7', 'text' => '#54a8c7', 'tooltip' => 'itooltip-aqua', 'filter' => 'workshop'], ['border' => '#747ed1', 'text' => '#747ed1', 'tooltip' => 'itooltip-purple', 'filter' => 'product'], ['border' => '#fab758', 'text' => '#fab758', 'tooltip' => 'itooltip-yellow', 'filter' => 'product'], ['border' => '#e2626b', 'text' => '#e2626b', 'tooltip' => 'itooltip-red', 'filter' => 'workshop'], ['border' => '#f78b77', 'text' => '#f78b77', 'tooltip' => 'itooltip-orange', 'filter' => 'still-life'], ['border' => '#7cb798', 'text' => '#7cb798', 'tooltip' => 'itooltip-leaf', 'filter' => 'concept'], ['border' => '#d16b86', 'text' => '#d16b86', 'tooltip' => 'itooltip-pink', 'filter' => 'product'], ['border' => '#45c4a0', 'text' => '#45c4a0', 'tooltip' => 'itooltip-green', 'filter' => 'workshop'], ['border' => '#a07cc5', 'text' => '#a07cc5', 'tooltip' => 'itooltip-violet', 'filter' => 'concept'], ]; @endphp @foreach($productions as $index => $production) @php $color = $accentColors[$index % count($accentColors)]; $categoryLabel = $production->translate('client_name') ?: __('music_productions.card_category_default'); $detailUrl = route('music-productions.show', $production->slug); @endphp
'> @if($production->cover_image_url) {{ $production->translate('title') }} @else
@endif
{{ $categoryLabel }}

{{ $production->translate('title') }}

@endforeach
{{-- Pagination --}} @if($productions->hasPages())
@endif @else

{{ __('music_productions.empty') }}

@endif
@push('styles') @endpush @endsection