Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
@if($appFooter) {!! $appFooter !!} @else <footer class="footer"> <div class="container..
Decoded Output download
<? @if($appFooter)
{!! $appFooter !!}
@else
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-sm-4">
@if($showSupport)
<p>
{!! trans('cachet.powered_by') !!}
@if($showTimezone)
{{ trans('cachet.timezone', ['timezone' => $timezone]) }}
@endif
</p>
@endif
</div>
<div class="col-sm-8">
<ul class="list-inline">
@if($currentUser || $dashboardLink)
<li>
<a class="btn btn-link" href="{{ cachet_route('dashboard') }}">{{ trans('dashboard.dashboard') }}</a>
</li>
@endif
@if($currentUser)
<li>
<a class="btn btn-link" href="{{ cachet_route('auth.logout') }}">{{ trans('dashboard.logout') }}</a>
</li>
@endif
@if($enableSubscribers)
<li>
<a class="btn btn-success btn-outline" href="{{ cachet_route('subscribe') }}">{{ trans('cachet.subscriber.button') }}</a>
</li>
@endif
</ul>
</div>
</div>
</div>
</footer>
@endif
@include("partials.analytics")
?>
Did this file decode correctly?
Original Code
@if($appFooter)
{!! $appFooter !!}
@else
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-sm-4">
@if($showSupport)
<p>
{!! trans('cachet.powered_by') !!}
@if($showTimezone)
{{ trans('cachet.timezone', ['timezone' => $timezone]) }}
@endif
</p>
@endif
</div>
<div class="col-sm-8">
<ul class="list-inline">
@if($currentUser || $dashboardLink)
<li>
<a class="btn btn-link" href="{{ cachet_route('dashboard') }}">{{ trans('dashboard.dashboard') }}</a>
</li>
@endif
@if($currentUser)
<li>
<a class="btn btn-link" href="{{ cachet_route('auth.logout') }}">{{ trans('dashboard.logout') }}</a>
</li>
@endif
@if($enableSubscribers)
<li>
<a class="btn btn-success btn-outline" href="{{ cachet_route('subscribe') }}">{{ trans('cachet.subscriber.button') }}</a>
</li>
@endif
</ul>
</div>
</div>
</div>
</footer>
@endif
@include("partials.analytics")
Function Calls
None |
Stats
MD5 | d31ef49698c2f0e5b290c056e63a98aa |
Eval Count | 0 |
Decode Time | 80 ms |