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

Signing you up...

Thank you for signing up!

PHP Decode

@extends('layouts.export') @section('title', $book->name) @section('content') <h1 s..

Decoded Output download

<?  @extends('layouts.export')

@section('title', $book->name)

@section('content')

    <h1 style="font-size: 4.8em">{{$book->name}}</h1>
    <div>{!! $book->descriptionHtml() !!}</div>

    @include('exports.parts.book-contents-menu', ['children' => $bookChildren])

    @foreach($bookChildren as $bookChild)
        @if($bookChild->isA('chapter'))
            @include('exports.parts.chapter-item', ['chapter' => $bookChild])
        @else
            @include('exports.parts.page-item', ['page' => $bookChild, 'chapter' => null])
        @endif
    @endforeach

@endsection ?>

Did this file decode correctly?

Original Code

@extends('layouts.export')

@section('title', $book->name)

@section('content')

    <h1 style="font-size: 4.8em">{{$book->name}}</h1>
    <div>{!! $book->descriptionHtml() !!}</div>

    @include('exports.parts.book-contents-menu', ['children' => $bookChildren])

    @foreach($bookChildren as $bookChild)
        @if($bookChild->isA('chapter'))
            @include('exports.parts.chapter-item', ['chapter' => $bookChild])
        @else
            @include('exports.parts.page-item', ['page' => $bookChild, 'chapter' => null])
        @endif
    @endforeach

@endsection

Function Calls

None

Variables

None

Stats

MD5 14fca11d2920b325177b1edc013ab238
Eval Count 0
Decode Time 100 ms