@php
$orderMethodLabels = [
'email' => __('Per E-Mail'),
'online_shop' => __('Online-Shop'),
];
@endphp
- {{ __('Name') }}
- {{ $supplier->name }}
- {{ __('Land') }}
- {{ $supplier->country?->de ?? '—' }}
- {{ __('Kategorien') }}
-
@forelse($supplier->supplierCategories as $cat)
{{ $cat->name }}
@empty
—
@endforelse
- {{ __('Webseite') }}
-
@if($supplier->url)
{{ $supplier->url }}
@else
—
@endif
- {{ __('Bestellweg') }}
- {{ $orderMethodLabels[$supplier->order_method] ?? '—' }}
- {{ __('Bestell-E-Mail') }}
- {{ $supplier->order_email ?: '—' }}
- {{ __('Bestell-URL') }}
-
@if($supplier->order_url)
{{ $supplier->order_url }}
@else
—
@endif
- {{ __('Lieferzeit') }}
-
{{ $supplier->delivery_time ?: '—' }}
@if($supplier->delivery_time_days !== null)
({{ $supplier->delivery_time_days }} {{ __('Tage') }})
@endif
- {{ __('Ansprechpartner') }}
- {{ $supplier->contact_person ?: '—' }}
- {{ __('E-Mail') }}
- {{ $supplier->email ?: '—' }}
- {{ __('Telefon') }}
- {{ $supplier->phone ?: '—' }}
@if($supplier->notes)
{{ __('Notizen') }}:
{!! nl2br(e($supplier->notes)) !!}
@endif
{{ __('Zugeordnete INCIs') }}
@forelse($supplier->ingredients as $ingredient)
-
{{ $ingredient->name }}
@empty
- {{ __('Noch keine INCIs zugeordnet.') }}
@endforelse
{{ __('Zugeordnete Verpackungsartikel') }}
@forelse($supplier->packagingItems as $item)
-
{{ $item->name }}
@empty
- {{ __('Noch keine Verpackungsartikel zugeordnet.') }}
@endforelse