9 lines
209 B
PHP
9 lines
209 B
PHP
|
|
<div>
|
||
|
|
Count: {{ count($all_articles) }}
|
||
|
|
@forelse($all_articles as $index => $article)
|
||
|
|
@include('article-preview')
|
||
|
|
@empty
|
||
|
|
<h4>No articles found, unlucky.</h4>
|
||
|
|
@endforelse
|
||
|
|
</div>
|