@extends('layouts.app') @section('title', 'Sammlung von ' . $user->name . ' - NeoNail DB') @section('content')

Sammlung von {{ $user->name }}

Zurück zur Benutzerliste

{{ $user->name }}

{{ $user->email }}

Registriert am {{ $user->created_at->format('d.m.Y') }}
{{ $nailPolishes->count() }}

Nagellacke in der Sammlung

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

Nr. {{ $nailPolish->number }}

@endforeach
@else

Keine Nagellacke in der Sammlung

{{ $user->name }} hat noch keine NeoNail-Lacke hinzugefügt.

@endif
@endsection