@extends('layouts/default') {{-- Page title --}} @section('title') {{ $news->title ?? 'News_Item' }} @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- breadcrumb --}} @section('top')
News Item
@stop {{-- Page content --}} @section('content')
@if($news->image) Image @endif

{!! $news->content !!}

Featured Authors


Recent News

    @foreach($recentnews as $item)
  • {{ $item->title }}

    {!! date('d-m-Y', strtotime($item->created_at)) !!}
  • @endforeach
@stop {{-- page level scripts --}} @section('footer_scripts') @stop