1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row">
<div class="col-sm-6" style="position: relative; top: 50px; padding: 25px;">
<div class="row">
<img class="position-image" src="{{ asset('img/icons/logo_submeta_grande.png') }}" alt="">
</div>
<div class="row position-text">
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
</div>
<div class="row position-text">
{{-- <button class="btn btn-opcoes-edital" style="margin-bottom: 20px;">
Leia mais
</button> --}}
</div>
</div>
<br>
<div class="col-sm-6" style=" position: relative; top: 50px; padding: 25px;">
<h4 style="color: rgb(0, 140, 255);">Editais</h4>
<div id="editais">
<ul class="col-sm-12 list-editais flexcroll" style="list-style-type: none;">
@foreach ($eventos as $evento)
@if (\Carbon\Carbon::create($evento->fimSubmissao) > \Carbon\Carbon::create($hoje))
<li class="col-sm-12 li-editais">
<div class="container">
<div class="row">
<div class="col-sm-1">
<img class="img-arquivo" src="{{ asset('img/icons/logo_arquivo.png') }}" alt="">
</div>
<div class="col-sm-8">
<div>{{$evento->nome}}</div>
<div class="color-subtitle-edital">Submissão até o dia {{ date('d/m/Y', strtotime($evento->fimSubmissao)) }}</div>
</div>
<div class="col-sm-3">
<a href="{{ route('evento.visualizarNaoLogado', ['id' => $evento->id]) }}">
<button class="btn btn-opcoes-edital" style="float: left;">
Visualizar
</button>
</a>
</div>
</div>
</div>
</li>
@endif
@endforeach
</div>
</div>
</div>
</div>
@endsection
@section('javascript')
@endsection