@extends('layout.master') @section('content') @include('admin.partials.breadcrumb', ['subPage'=>'Посмотреть', 'page'=>'Новости', 'pageUrl'=>route('admin.posts.index')])
Новость ID: {{ $post->id }}
@foreach ($localizations as $locale)
Заголовок

{{ $post->getTranslatedAttributes($locale->id)->title }}


Описание

{{ $post->getTranslatedAttributes($locale->id)->description }}


Контент

{!! $post->getTranslatedAttributes($locale->id)->body !!}

@endforeach

Фото

Slug

{{ $post->slug }}

@endsection