@extends('layout.client') @section('template_title') {{ __($title) }} @endsection @section('content')

{{ __($title) }}

@foreach ($articles as $article)
title

@if ($article->is_completed) @endif @foreach ($article->authors as $author) @endforeach
@if ($article->chapters->isEmpty()) Chưa có chương nào @else @php $newestChapter = $article->newest_chapter; @endphp {{ $newestChapter->number_text }} @endif
@endforeach
@include('client.partials.right-sidebar')
{{ $articles->links() }}
@endsection