@extends('layouts.greetings', [ 'title' => 'Your Dashboard', 'bodyClass' => 'studio theme--studio', 'showNav' => true, ]) @section('content')

Dashboard

Your wishes and greetings

See the wishes friends and family sent back to you.

@forelse ($greetings as $greeting)

{{ $greeting->recipient_name }}

{{ ucfirst(str_replace('_', ' ', $greeting->occasion)) }} - {{ ucfirst($greeting->style) }}

View
@forelse ($greeting->wishes as $wish)

{{ $wish->sender_name }}

{{ $wish->message }}

@if ($wish->gift_choice)

Gift: {{ ucwords(str_replace('_', ' ', $wish->gift_choice)) }}

@endif

{{ $wish->created_at->diffForHumans() }}

@empty

No wishes yet.

@endforelse
@empty

You have not created any greetings yet.

@endforelse
@endsection