@extends('layouts/sidebar') @section('title') {!!$news->title!!} @endsection @section('page_class')news_post post_container @endsection @section('breadcrumb') @endsection @section('tags') @endsection @section('content')
@if($news->images) @if(count($news->images) == 1)
{{$news->images[0]->title}}
{{$news->images[0]->title}} @if(isset($news->images[0]->author)) {{$news->images[0]->author}} @endif
@else
    @foreach($news->images as $image)
  • {{$image->title}}
@endforeach
@endif @endif @if($type == "nhnieuws") @include('partial/nh_story', ['content' => $news->content]) @elseif($type == "artikel") @include('partial/block_story', ['content' => $news->content]) @else

{!!$news->content!!}

@endif @if($news->podcast) @include('widgets/podcastplayer', ['podcast' => $news->podcast]) @endif @if($news->source && $news->source->show)

Bron: {{$news->source->title}}

@endif {{-- @include('widgets/share') --}}
@endsection