Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

@props([ 'sum' => null, 'labelSum' => null, 'count' => null, 'labelCount' ..

Decoded Output download

<?  @props([
    'sum' => null,
    'labelSum' => null,
    'count' => null,
    'labelCount' => null,
    'min' => null,
    'labelMin' => null,
    'max' => null,
    'labelMax' => null,
    'avg' => null,
    'labelAvg' => null,
])
<div>
    @if ($sum)
        <span>{!! $labelSum !!}: {{ $sum }}</span>
        <br>
    @endif

    @if ($count)
        <span>{!! $labelCount !!}: {{ $count }}</span>
        <br>
    @endif
    @if ($min)
        <span>{!! $labelMin !!}: {{ $min }}</span>
        <br>
    @endif

    @if ($max)
        <span>{!! $labelMax !!}: {{ $max }}</span>
        <br>
    @endif

    @if ($avg)
        <span>{!! $labelAvg !!}: {{ $avg }}</span>
        <br>
    @endif
</div>
 ?>

Did this file decode correctly?

Original Code

@props([
    'sum' => null,
    'labelSum' => null,
    'count' => null,
    'labelCount' => null,
    'min' => null,
    'labelMin' => null,
    'max' => null,
    'labelMax' => null,
    'avg' => null,
    'labelAvg' => null,
])
<div>
    @if ($sum)
        <span>{!! $labelSum !!}: {{ $sum }}</span>
        <br>
    @endif

    @if ($count)
        <span>{!! $labelCount !!}: {{ $count }}</span>
        <br>
    @endif
    @if ($min)
        <span>{!! $labelMin !!}: {{ $min }}</span>
        <br>
    @endif

    @if ($max)
        <span>{!! $labelMax !!}: {{ $max }}</span>
        <br>
    @endif

    @if ($avg)
        <span>{!! $labelAvg !!}: {{ $avg }}</span>
        <br>
    @endif
</div>

Function Calls

None

Variables

None

Stats

MD5 28431e61c8624138cbc012c1ec67de1c
Eval Count 0
Decode Time 88 ms