Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<div {!! $attributes !!}> @foreach($items as $key => $item) <div class="panel box ..
Decoded Output download
<? <div {!! $attributes !!}>
@foreach($items as $key => $item)
<div class="panel box box-primary" style="margin-bottom: 0px">
<div class="box-header with-border">
<h4 class="box-title">
<a data-toggle="collapse" data-parent="#{{$id}}" href="#collapse{{ $key }}">
{{ $item['title'] }}
</a>
</h4>
</div>
<div id="collapse{{ $key }}" class="panel-collapse collapse {{ $key == 0 ? 'in' : '' }}">
<div class="box-body">
{!! $item['content'] !!}
</div>
</div>
</div>
@endforeach
</div>
?>
Did this file decode correctly?
Original Code
<div {!! $attributes !!}>
@foreach($items as $key => $item)
<div class="panel box box-primary" style="margin-bottom: 0px">
<div class="box-header with-border">
<h4 class="box-title">
<a data-toggle="collapse" data-parent="#{{$id}}" href="#collapse{{ $key }}">
{{ $item['title'] }}
</a>
</h4>
</div>
<div id="collapse{{ $key }}" class="panel-collapse collapse {{ $key == 0 ? 'in' : '' }}">
<div class="box-body">
{!! $item['content'] !!}
</div>
</div>
</div>
@endforeach
</div>
Function Calls
None |
Stats
MD5 | ced94fa1ab41b59964d4e3c39f329bb2 |
Eval Count | 0 |
Decode Time | 91 ms |