17 lines
346 B
PHP
17 lines
346 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
|
|
|
|
{{ $all_articles->links() }}
|
|
</div>
|
|
@endsection
|