word-salad/resources/views/guest/all-articles.blade.php

15 lines
312 B
PHP

@extends('layouts.guest')
@section('title', 'Recent Articles')
@section('content')
<div>
Count: {{ count($all_articles) }}
@forelse($all_articles as $index => $article)
@include('guest.article-preview')
@empty
<h4>No articles found, unlucky.</h4>
@endforelse
</div>
@endsection