@extends('layouts.app') @section('title',$image->filename) @section('breadcrumb') @endsection @section('content')

{{ $image->filename }}

Dateiname:
{{ $image->filename }}
Original-Dateiname:
{{ $image->original_filename }}
MyPicturemaxx-Kennung:
{{ $image->mypicturemaxx_number or ' ' }}
Lieferant:
@if ( $image->supplier ) {{ $image->supplier->name }} @else   @endif
Serie:
@if ($image->imageSet) {{ $image->imageSet->title }} @else   @endif
Bearbeiten

Metadaten

@foreach ($current_meta as $key => $value)
{{ studly_case($key) }}
@if ( is_array($value) ) {{ join(', ',$value) }} @else @if ( !empty($value) ) {!! nl2br(e($value)) !!} @else   @endif @endif
@endforeach
@foreach (collect($image->metadata)->except(['id','image_id','created_at','updated_at','archive'])->toArray() as $meta_key => $meta_value)
{{ studly_case($meta_key) }}
{{ $meta_value or ' ' }}
@endforeach
@endsection