@extends('layouts.app') @section('content')

Your Postcards

Create New Postcard @if(session('success'))
{{ session('success') }}
@endif @if($postcards->isEmpty())

No postcards found. Create one to get started!

@else
@foreach($postcards as $postcard) @endforeach
Recipient Message Sender Actions
{{ $postcard->recipient }} {{ Str::limit($postcard->message, 50) }} {{ $postcard->sender }} Edit
@csrf @method('DELETE')
@endif
@endsection