@extends('layouts.app') @section('title', $manufacturer->name) @section('content')

{{ $manufacturer->name }}

Informationen
Name:
{{ $manufacturer->name }}
@if($manufacturer->country)
Land:
{{ $manufacturer->country }}
@endif @if($manufacturer->website)
Website:
{{ $manufacturer->website }}
@endif
Nagellacke:
{{ $manufacturer->nailPolishes->count() }}
Erstellt:
{{ $manufacturer->created_at->format('d.m.Y H:i') }}
Aktualisiert:
{{ $manufacturer->updated_at->format('d.m.Y H:i') }}
@if($manufacturer->description)
Beschreibung

{{ $manufacturer->description }}

@endif
Statistiken
{{ $manufacturer->nailPolishes->count() }}

Nagellacke

@if($manufacturer->nailPolishes->count() > 0)

Nagellacke von {{ $manufacturer->name }}

@foreach($manufacturer->nailPolishes as $nailPolish)
@if($nailPolish->image_path) {{ $nailPolish->name }} @else
@endif
{{ $nailPolish->name }}

{{ $nailPolish->number }}

Anzeigen
@endforeach
@else

Keine Nagellacke vorhanden

Für diesen Hersteller sind noch keine Nagellacke eingetragen.

Ersten Nagellack hinzufügen
@endif
@endsection