Просмотр файла resources/views/widgets/_downs.blade.php
@if ($downs->isNotEmpty())
<div class="section-body">
@foreach ($downs as $down)
<i class="far fa-circle fa-lg text-muted"></i> <a href="{{ route('downs.view', ['id' => $down->id]) }}">{{ $down->title }}</a> ({{ $down->count_comments }})<br>
@endforeach
</div>
@endif