@extends('customer.layouts.app') @section('title') Latest News @endsection @section('css') @endsection @section('content')
@if (count($news) > 0)

{{ $titles[$key] }}

@foreach ($news as $item)

{{ $item->name }}

@if ($item->image != '') @endif @if ($item->time_display == 1)

Posted {{ date('l jS \\of F Y', strtotime($item->created_at)) }}

@endif

{{ $item->main_text }}


@endforeach
@else

There is currently nothing to see in this section.

@endif
@endsection @section('js') @endsection