@extends('vendor.site-bases.website.layouts.master')
@section('title', $news->title)
@section('desc', strip_tags($news->description))
@section('page_title', trans('title.news'))
@section('img', asset($news->image))
@section('breadcrumbs')
{{ Breadcrumbs::render('news_in', $news) }}
@endsection
@section('content')
{{ strftime('%e %b. %G', strtotime($news->published_at)) }}
{{ $news->title }}
@auth
✎
@endauth
{!! $news->description !!}
@foreach ($news->images as $image)
@endforeach
@if ($news->photo)
@foreach ($news->photo->images as $image)
@endforeach
@endif
@if ($news->images->count() > 0 || ($news->photo && $news->photo->images->count() > 0))
@endif
@endsection
@section('scripts')
@endsection
@section('style')
@endsection