word-salad/resources/views/article-preview.blade.php

7 lines
195 B
PHP

<article>
<h2>{{ $article['title'] }}</h2>
<p>hey</p>
<img src="{{ $article['header_image_url']}}" />
<p>{{ Illuminate\Support\Str::limit($article['body'], 200) }}</p>
</article>