@include('components.breadcrumbs', ['breadcrumbs' => [
['link' => url('/'), 'title' => 'Главная'],
['link' => route('category', [$company->getCategory->id, $company->getCategory->name_en]), 'title' => $company->getCategory->name],
['title' => $company->name],
]])
@if(!empty($company->meta_h1))
{{$company->meta_h1}}
@else
{{$company->name}}
@endif
@if($company->reliability !== null || $company->speed !== null || $company->service !== null || $company->cost !== null)
@if($company->grade !== null)
{{$company->grade}}
Оценка редакции
@endif
@if($company->reliability !== null)
{{ $company->reliability }}
Надежность
@endif
@if($company->speed !== null)
@endif
@if($company->service !== null)
@endif
@if($company->cost !== null)
@endif
@endif
{!! $company->description !!}
@if($company->phone !== null)
Email: {{ $company->email }}
@endif
@if($company->phone !== null)
Телефон: {{ $company->phone }}
@endif
@if($company->address !== null)
Адрес: {{ $company->address }}
@endif
@if($company->site !== null)
Сайт: {{ $company->site }}
@endif
Категория: @if($company->getCategory){{$company->getCategory->name}}@else Категория не
выбрана @endif
Дата добавления:
{{ Carbon\Carbon::parse($company->created_at)->format('d.m.Y')}}
@if(!$comments->isEmpty())
@include('components.one-comment-company-page', ['comments' => $comments])
@endif
@if(!$videos->isEmpty())
Отзывы взяты с официального сайта компании.
PravdaTut.com не несет ответственность за полную достоверность предоставленной
информации.
@foreach($videos as $video)
{{$video->author}}
{{\Illuminate\Support\Carbon::parse($video->created_at)->format('d.m.Y')}}
{{$video->title}}
@endforeach
@endif