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

News Highlights

{{-- news Card --}} @if($highlights->isEmpty())

No current news

@else @foreach ($highlights as $highlight)
Blog Image

{{ $highlight->title }}

{!! $highlight->description !!}

@endforeach @endif

Recent News

{{-- news Card --}} @if($news->isEmpty())

No current news

@else @foreach ($news as $new) @endforeach @endif
@endsection