@extends('layouts.site') @section('content')
@if($production->client_name)
{{ $production->translate('client_name') }}
@endif

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

@if($production->production_date)

{{ $production->production_date->format('d.m.Y') }}

@endif
{{-- Cover Image --}} @if($production->cover_image_url)
{{ $production->translate('title') }}
@endif {{-- Content & Meta --}}

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

{{-- Content column --}}
{!! $production->translate('content') !!}
{{-- Sidebar - Date & Client --}}
    @if($production->production_date)
  • {!! t('Tarih') !!}

    {{ $production->production_date->format('d M Y') }}

  • @endif @if($production->client_name)
  • {!! t('Müşteri') !!}

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

  • @endif @if($production->spotify_url)
  • Spotify

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

  • @endif
{{ __('music_productions.back_to_list') }}
{{-- Gallery --}} @php $gallery = $production->gallery; @endphp @if(!empty($gallery) && is_array($gallery) && count($gallery) > 0)
@foreach($gallery as $galleryImage) @endforeach
@endif
{{-- Post Navigation (Prev / Next) --}}
@push('styles') @endpush @endsection