@extends('layout.client')
@section('template_title')
{{ __($title) }}
@endsection
@section('content')
{{ __($title) }}
@foreach ($articles as $article)
@if ($article->is_completed)
@endif
@foreach ($article->authors as $author)
{{ $author->name }}
@endforeach
@endforeach
@include('client.partials.right-sidebar')