@extends('templates.layout') @section('title', '') @section('description', 'A ABIPAG é uma associação formada por instituições de pagamento e instituições financeiras entrantes no mercado. Clique e saiba mais!') @section('mod_class', 'mod-header') @section('content')
{{-- Banner --}}
@foreach($banners as $i => $banner)
@if($banner->description)

{{ $banner->description }}

@endif {{ $banner->button }}
@endforeach
{{-- End: Banner --}} @if(isset($about) && $about->is_active) {{-- Block --}}

{{ $about->title }}

{{ $about->title }}

{{ $about->description }}

@if($about->link & $about->button) {{ $about->button }} @endif
{{ $about->title }}
{{-- End: Block --}} @endif @if(isset($pillars) && count($pillars)) {{-- Block --}}

Pilares de atuação

@foreach($pillars as $pillar) {{-- Item --}}
{{ $pillar->title }}

{!! $pillar->title !!}

{!! $pillar->description !!}

{{-- End: Item --}} @endforeach
{{-- End: Block --}} @endif @if(isset($events) && count($events)) {{-- Block --}}

Próximos eventos

@foreach($events as $i => $event)
@include('partials.common-card', [ 'class' => 'c-common-card--primary', 'data' => [ 'day' => $event->event_at->format("d"), 'month' => substr($event->event_at->locale("pt-BR")->translatedFormat("F"), 0, 3), ], 'exclusive' => $event->is_exclusive ? true : false, 'img' => $event->getImage(), 'title' => $event->title, 'location' => [ 'title' => $event->is_presencial ? 'Presencial' : 'Online', 'link' => $event->link, ], 'time' => $event->event_at->format("H:i") ])
@endforeach
Ver mais eventos
{{-- End: Block --}} @endif @if($publications) {{-- Block --}}

Publicações

@foreach($publications as $i => $publication)
@include('partials.common-card', [ 'class' => 'c-common-card--primary', 'img' => $publication->getImage(), 'title' => $publication->title, 'download' => [ 'title' => 'Baixar Cartilha', 'file-id' => $publication->id ], ])
@endforeach
Ver mais publicações
{{-- End: Block --}} @endif {{-- Banner bottom --}}

Fale conosco

Quer ser Parceiro ou Associado da ABIPAG?
Entre em contato com a gente!

Entre em contato
{{-- End: Banner bottom --}}
@stop