PHP Classes

File: App/View/errors/error.php

Recommend this page to a friend!
  Classes of Ahmed Saad   Simple PHP MVC Framework   App/View/errors/error.php   Download  
File: App/View/errors/error.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Simple PHP MVC Framework
Developing Web applications using the MVC pattern
Author: By
Last change:
Date: 2 years ago
Size: 314 bytes
 

Contents

Class file image Download
@extends('layouts.master')

@section( 'title' )
    {{ $this->title ? $this->title : 'Error' }}
@stop

@section( 'content' )
   
    <div class="panel panel-danger">
        <div class="panel-body text-center">
            <h3> {{ $this->message }} <small> {{ isset($this->code) ? $this->code : '' }} </small></h3>
        </div>
    </div>
@stop