@extends('layouts.landing') @section('title',"show") @section('content')
Datos usuario
Regresar

{{$user->name}}

{{$user->email}}

{{--

Nota: {{$user->note->title}}

Descripción: {{$user->note->description}}

--}} @forelse ($user->notes as $note)

Nota: {{$note->title}}

Descripción: {{$note->description}}


@empty @endforelse
@endsection