@extends('layouts/full') @section('title') {{ $page->title }} @endsection @section('page_class')news_post post_container @endsection {{-- @section('breadcrumb') @endsection --}} @section('content')
@if($page->images) @if(count($page->images) == 1)
{{$page->images[0]->title}}
{{$page->images[0]->title}} @if(isset($page->images[0]->author)) {{$page->images[0]->author}} @endif
@else
    @foreach($page->images as $image)
  • {{$image->title}}
@endforeach
@endif @endif

{!!$page->content!!}

@endsection