22 lines
931 B
PHP
22 lines
931 B
PHP
<footer id="footer" class="container-fluid">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
|
|
{{--Attendize is provided free of charge on the condition the below hyperlink is left in place.--}}
|
|
{{--See https://www.attendize.com/license.html for more information.--}}
|
|
@include('Shared.Partials.PoweredBy')
|
|
|
|
@if(Utils::userOwns($event))
|
|
•
|
|
<a class="adminLink " href="{{route('showEventDashboard' , ['event_id' => $event->id])}}">@lang("Public_ViewEvent.event_dashboard")</a>
|
|
•
|
|
<a class="adminLink "
|
|
href="{{route('showOrganiserDashboard' , ['organiser_id' => $event->organiser->id])}}">@lang("Public_ViewEvent.organiser_dashboard")</a>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
{{--Admin Links--}}
|