@extends('layouts._site.main')
@section('title', 'Ecofemenino - Notícias')
@section('content')
@php
$show = $section ?? 'politica';
@endphp
@if ($show === 'politica')
@foreach ($noticePolitic as $new)
@endforeach
{{-- row --}}
@endif
@if ($show === 'economia')
@foreach ($noticeEconomy as $new)
@endforeach
{{-- row --}}
@endif
@if ($show === 'sociedade')
@foreach ($noticeSociety as $new)
@endforeach
{{-- row --}}
@endif
{{-- @if ($show === 'internacional')
@foreach ($noticeInternational as $new)
@endforeach
@endif --}}
@endsection