Commit aa7c0cf1 authored by Danillo Bion's avatar Danillo Bion
Browse files

modificacoes na tela de editais

parent 204c9369
...@@ -7,7 +7,11 @@ ...@@ -7,7 +7,11 @@
{{-- titulo da página --}} {{-- titulo da página --}}
<div class="row justify-content-center" style="margin-top: 3rem; text-align:center"> <div class="row justify-content-center" style="margin-top: 3rem; text-align:center">
<div class="col-md-12" style="margin-bottom: -0.5rem"> <div class="col-md-12" style="margin-bottom: -0.5rem">
<h3>Editais</h3> @if(count($eventos)>0)
<h5 class="card-title mb-0" style="font-size:25px; font-family:Arial, Helvetica, sans-serif; color:#1492E6">Editais</h5>
@else
<h5 class="card-title mb-0" style="font-size:25px; font-family:Arial, Helvetica, sans-serif; color:#1492E6">Edital</h5>
@endif
</div> </div>
<div class="col-md-12"> <div class="col-md-12">
<hr> <hr>
...@@ -16,7 +20,7 @@ ...@@ -16,7 +20,7 @@
@php @php
$hoje = now(); $hoje = now();
@endphp @endphp
<div class="row"> <div class="row justify-content-center">
@if(count($eventos)>0) @if(count($eventos)>0)
@foreach ($eventos as $evento) @foreach ($eventos as $evento)
...@@ -26,7 +30,7 @@ ...@@ -26,7 +30,7 @@
@else @else
<a href="{{ route('evento.visualizarNaoLogado', ['id'=>$evento->id]) }}" style="text-decoration: none"> <a href="{{ route('evento.visualizarNaoLogado', ['id'=>$evento->id]) }}" style="text-decoration: none">
@endif @endif
<div class="card" style="width: 18rem; border-radius:12px; border-width:0px;"> <div class="card" style="width: 18rem; border-radius:12px; border-width:0px; margin:10px">
@if(isset($evento->fotoEvento)) @if(isset($evento->fotoEvento))
<img src="{{asset('storage/eventos/'.$evento->id.'/logo.png')}}" class="card-img-top" alt="..."> <img src="{{asset('storage/eventos/'.$evento->id.'/logo.png')}}" class="card-img-top" alt="...">
@else @else
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment