@extends('customer.layouts.new-app') @section('title') Latest News @endsection @section('css') @endsection @section('content')

{{ $titles[$key] }}

@if (count($news) > 0) @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