2024-08-04 19:07:03 +00:00
|
|
|
@extends('layouts.guest')
|
|
|
|
|
|
|
|
|
|
@section('title', 'Recent Articles')
|
|
|
|
|
|
|
|
|
|
@section('content')
|
2024-08-04 04:50:42 +00:00
|
|
|
<div>
|
|
|
|
|
Count: {{ count($all_articles) }}
|
|
|
|
|
@forelse($all_articles as $index => $article)
|
2024-08-04 19:07:03 +00:00
|
|
|
@include('guest.article-preview')
|
2024-08-04 04:50:42 +00:00
|
|
|
@empty
|
|
|
|
|
<h4>No articles found, unlucky.</h4>
|
|
|
|
|
@endforelse
|
|
|
|
|
</div>
|
2024-08-04 19:07:03 +00:00
|
|
|
@endsection
|