@extends('layouts.main-app') @section('title', 'Consulting') @section('content')
@include('layouts.header') {{-- blog article--}}
Golf Image

{{ \Carbon\Carbon::parse($newsItem->date)->format('d') }}

{{ \Carbon\Carbon::parse($newsItem->date)->format('M') }}

{{$newsItem->title}}

{!! $newsItem->content !!}

{{-- search bar --}}
{{--
--}}

Other News

@foreach ($news->sortByDesc('created_at')->take(3) as $new) @endforeach
{{-- --}} @endsection