@extends('layouts._site.main')
@section('title', 'Ecofemenino - Juventude e Liderança')
@section('content')
@php
$show = $section ?? 'tecnologia';
@endphp
@if ($show === 'tecnologia')
@foreach ($newsTech as $new)
@endforeach
{{-- row --}}
@endif
@if ($show === 'educacao')
@foreach ($newsEducation as $new)
@endforeach
{{-- row --}}
@endif
@if ($show === 'empreendedorismo')
@foreach ($newsBusiness as $new)
@endforeach
{{-- row --}}
@endif
@endsection