@php
$features = [
['title' => 'BookDash Memoir', 'desc' => 'A year of weekly questions to create a keepsake book'],
['title' => 'BookDash Editions', 'desc' => 'Create collaborative book projects with family and friends'],
['title' => '1 book credit', 'desc' => 'Redeemable for a hardcover, color book of your choice'],
['title' => '30-day money-back guarantee', 'desc' => null],
['title' => 'Write or voice-record stories', 'desc' => null],
['title' => 'Unlimited photos and stories', 'desc' => null],
['title' => 'Free downloadable PDF e-book', 'desc' => null],
['title' => 'Free shipping in the U.S.', 'desc' => null],
];
@endphp
@foreach($features as $feature)
{{ $feature['title'] }}
@if($feature['desc'])
{{ $feature['desc'] }}
@endif
@endforeach
Your subscription will renew annually. You can cancel your renewal at any time.