Download the PHP package lameck/lexcept without Composer
On this page you can find all versions of the php package lameck/lexcept. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download lameck/lexcept
More information about lameck/lexcept
Files in lameck/lexcept
Download lameck/lexcept
More information about lameck/lexcept
Files in lameck/lexcept
Vendor lameck
Package lexcept
Short Description "Exceptions Pages Resource"
License MIT
Homepage https://github.com/EuFreela/PL5-Lexcept
Package lexcept
Short Description "Exceptions Pages Resource"
License MIT
Homepage https://github.com/EuFreela/PL5-Lexcept
Please rate this library. Is it a good library?
Informations about the package lexcept
PL5-Lexcept
Exception Pages Resource Laravel 5.^
composer-plugin
Packager para resource de páginas de erros.
401
404
500
Instalação
composer require lameck/lexcept
Configuração
Adicione o Provider:
Lameck\Lexcept\LexceptServiceProvider::class
composer dumpautoload
App/Exceptions/Handler.php
Adicione as linhas do packager em function render
if($this->isHttpException($exception)){ switch ($exception->getStatusCode()) { case 401: return response()->view('Lameck\Lexcept::errors.401'); break; case 404: return response()->view('Lameck\Lexcept::errors.404'); break; case 500: return response()->view('Lameck\Lexcept::errors.500'); break; } } return parent::render($request, $exception);
Teste: 127.0.0.1:8000/hello

All versions of lexcept with dependencies
PHP Build Version
Package Version
No informations.
The package lameck/lexcept contains the following files
Loading the files please wait ....