@extends('layouts.main') @section('title') Отзывы о компаниях | PravdaTut.com @endsection @section('meta_description') Отзывы клиентов и сотрудников о компании :: Pravdatut @endsection @section('logotype') {{ url('/img/logotype.svg') }} @endsection @section('page-url') {{route('reviews')}} @endsection @section('content')

Отзывы

@if(!$comments->isEmpty())
@include('components.one-comment', ['last_comments' => $comments])
@else

Коментариев не найдено

@endif @if($comments->lastPage() != $comments->currentPage()) @endif

Новые компании

@if(!$new_companies->isEmpty())
@include('components.one-company', ['companies' => $new_companies])
@else

Компаний не найдено

@endif @if($new_companies->lastPage() != $new_companies->currentPage())
{{-- {{$top_company->links()}}--}}
@endif
@endsection