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

{{__('texte.producers_arr.show.show_producer')}}

{{__('texte.producers_arr.show.name')}}: {{ $producer->name }}
{{__('texte.producers_arr.show.users')}}: @foreach ($producer->users as $user) @endforeach
{{__('texte.producers_arr.show.marks')}}: @foreach ($producer->marks as $mark) {{ $mark->name }} @endforeach
{{__('texte.producers_arr.show.products')}}: @foreach ($producer->products as $product) {{ $product->name }} @endforeach
{{__('texte.producers_arr.show.description')}}: {{ $producer->description }}
{{__('texte.producers_arr.show.meta_title')}}: {{ $producer->meta_title }}
{{__('texte.producers_arr.show.meta_keywords')}}: {{ $producer->meta_keywords }}
{{__('texte.producers_arr.show.meta_description')}}: {{ $producer->meta_description }}
{{__('texte.producers_arr.show.active')}}: {{ App\Model::ACTIVE[$producer->active] }}
@foreach ($producer->images as $image)
{{$image->title}}
@endforeach @if(count($producer->files)>0)
{{__('texte.producers_arr.show.files')}}: @foreach ($producer->files as $file)
name)}}' target='_blank'>{{$file->title}} - {{(new DateTime($file->created_at))->format('d.m.Y')}}
@endforeach
@endif
@endsection