@extends('templates.layout') @section('title', 'Comitês e Grupos de Trabalho') @section('description', '') @section('content')
{{-- Banner --}} @include('partials.common-banner', [ 'image' => asset('../img/banner-top.jpg'), 'title' => 'COMITÊS E GRUPOS DE TRABALHO' ]) {{-- End: Banner --}} {{-- Block --}}

Comitês

@if($forums)
@foreach($forums as $i => $forum) @include('partials.common-card', [ 'class' => 'c-common-card--secondary', 'img' => $forum->getImage(), 'title' => $forum->title, 'text' => $forum->description, 'logos' => $forum->logos ]) @endforeach
@endif
{{-- End: Block --}} {{-- Block --}}

Grupos de trabalho

@if($groups)
@foreach($groups as $i => $group) @include('partials.common-card', [ 'class' => 'c-common-card--secondary', 'img' => $group->getImage(), 'title' => $group->title, 'text' => $group->description, 'logos' => $group->logos ]) @endforeach
@endif Seja associado!
{{-- End: Block --}}
@stop