Skip to content

Laravel 4 Packages. Adds 403,404,500 and 503 customizable error pages.

Notifications You must be signed in to change notification settings

nWidart/HttpStatus-l4-package

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SensioLabsInsight Latest Stable Version Total Downloads Latest Unstable Version License

HttpStatus

HttpStatus is a small package that adds pretty error pages.

It listens at App::error() and App::down() to provide error pages. Note that these error pages will only show when debug is set to true.

Installation

Add nwidart/httpstatus as a requirement to composer.json:

{
    ...
    "require": {
        ...
        "nwidart/httpstatus": "dev-master"
    },
}

Update composer:

$ php composer.phar update

Add 'Nwidart\Httpstatus\HttpstatusServiceProvider' to your app/config/app.php file in the providers array.

(Optional) Publish package config:

$ php artisan config:publish nwidart/httpstatus

Configuration

After the configuration file has been published you can return your own error views. You can provide a view for each error:

return array(
    'views' => array(
        '403' => 'errors.your403',
        '404' => 'errors.your404',
        '500' => 'errors.your500',
        '503' => 'errors.your503',
    )
);

Credits

It's inspired by Traffic-Signs

About

Laravel 4 Packages. Adds 403,404,500 and 503 customizable error pages.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages