@extends('layouts.main-app') @section('title', 'News') @section('content') @include('components.navbar')

Stay Informed with the Latest News

@foreach($news as $index => $new)
@foreach ($new->images as $image) @if ($image->image_type == 'main') @break @endif @endforeach

{{$new->title}}

{{$new->company_name}} {{ \Carbon\Carbon::parse($new->date_published)->format('F j, Y') }}

@endforeach
@include('components.footer') @endsection