PHP Classes

File: App/View/errors/404.php

Recommend this page to a friend!
  Classes of Ahmed Saad   Simple PHP MVC Framework   App/View/errors/404.php   Download  
File: App/View/errors/404.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: 1 year ago
Size: 211 bytes
 

Contents

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

@section( 'title' )
    Not Found
@stop
@section( 'content' )
   
    <div class="panel panel-danger">
        <div class="panel-body text-center">
            <h3>Page Not Found</h3>
        </div>
    </div>
@stop