Files
cachet-docker/app/views/partials/support-link.blade.php
2014-12-28 00:04:51 +00:00

12 lines
458 B
PHP

@if(Setting::get('show_support'))
<footer class='footer'>
<p>{{ Lang::get('cachet.powered_by', array('app' => Setting::get('app_name'))) }}</p>
<p><a href='/rss'><i class='fa fa-rss'></i> RSS Feed</a></p>
@if(Auth::check())
<p>
<a href="{{ URL::route('dashboard') }}">{{ Lang::get('cachet.dashboard.dashboard') }}</a> &ndash; <a href="{{ URL::route('logout') }}">{{ Lang::get('cachet.logout') }}</a>
</p>
@endif
</footer>
@endif