Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/_shared/schedule.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@

<div>
@foreach ($event->speakersPictures as $picture)
<img src="{{ $picture }}" class="img-thumbnail img-fluid rounded-circle" width="100">
<img src="{{ url($picture) }}" class="img-thumbnail img-fluid rounded-circle" width="100">
@endforeach
</div>

Expand Down
4 changes: 2 additions & 2 deletions source/about.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="col-md-10 text-center" data-aos="fade">
<h1 class="mb-4">A conferênciaaaa</h1>
<h1 class="mb-4">A conferência</h1>
</div>
</div>
</div>
Expand Down Expand Up @@ -122,7 +122,7 @@
@foreach ($organizers as $organizer)
<div class="col-md-6 col-lg-3 col-sm-12 mb-2">
<div class="organizer text-left">
<img src="{{ $organizer->image }}" alt="Foto de {{ $organizer->first_name }}" class="img-fluid">
<img src="{{ url($organizer->image) }}" alt="Foto de {{ $organizer->first_name }}" class="img-fluid">
<h3 class="heading mb-0 mt-6">
<a href="{{ $organizer->website }}" target="_new">
<span>{{ $organizer->first_name }}</span> {{ $organizer->last_name }}
Expand Down