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($daysToShow > 0 && $allIncidents) <div class="section-timeline"> <h1>{{ trans('cac..
Decoded Output download
<? @if($daysToShow > 0 && $allIncidents)
<div class="section-timeline">
<h1>{{ trans('cachet.incidents.past') }}</h1>
@foreach($allIncidents as $date => $incidents)
@include('partials.incidents', [@compact($date), @compact($incidents)])
@endforeach
</div>
<nav>
<ul class="pager">
@if($canPageBackward)
<li class="previous">
<a href="{{ cachet_route('status-page') }}?start_date={{ $previousDate }}" class="links">
<span aria-hidden="true">←</span> {{ trans('pagination.previous') }}
</a>
</li>
@endif
@if($canPageForward)
<li class="next">
<a href="{{ cachet_route('status-page') }}?start_date={{ $nextDate }}" class="links">
{{ trans('pagination.next') }} <span aria-hidden="true">→</span>
</a>
</li>
@endif
</ul>
</nav>
@endif
?>
Did this file decode correctly?
Original Code
@if($daysToShow > 0 && $allIncidents)
<div class="section-timeline">
<h1>{{ trans('cachet.incidents.past') }}</h1>
@foreach($allIncidents as $date => $incidents)
@include('partials.incidents', [@compact($date), @compact($incidents)])
@endforeach
</div>
<nav>
<ul class="pager">
@if($canPageBackward)
<li class="previous">
<a href="{{ cachet_route('status-page') }}?start_date={{ $previousDate }}" class="links">
<span aria-hidden="true">←</span> {{ trans('pagination.previous') }}
</a>
</li>
@endif
@if($canPageForward)
<li class="next">
<a href="{{ cachet_route('status-page') }}?start_date={{ $nextDate }}" class="links">
{{ trans('pagination.next') }} <span aria-hidden="true">→</span>
</a>
</li>
@endif
</ul>
</nav>
@endif
Function Calls
None |
Stats
MD5 | c8db76b07213deadbaea02987f7f963c |
Eval Count | 0 |
Decode Time | 132 ms |