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

7 lines
252 B
PHP

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