├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── screenshot-404.png ├── screenshot-500.png └── src ├── LaravelErrorViewsServiceProvider.php ├── assets └── svg │ ├── 403.svg │ ├── 404.svg │ ├── 500.svg │ └── 503.svg ├── config └── laravel-error-views.php └── views └── errors ├── 403.blade.php ├── 404.blade.php ├── 500.blade.php ├── 503.blade.php └── layout.blade.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode 3 | vendor 4 | composer.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/composer.json -------------------------------------------------------------------------------- /screenshot-404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/screenshot-404.png -------------------------------------------------------------------------------- /screenshot-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/screenshot-500.png -------------------------------------------------------------------------------- /src/LaravelErrorViewsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/src/LaravelErrorViewsServiceProvider.php -------------------------------------------------------------------------------- /src/assets/svg/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/src/assets/svg/403.svg -------------------------------------------------------------------------------- /src/assets/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/src/assets/svg/404.svg -------------------------------------------------------------------------------- /src/assets/svg/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/src/assets/svg/500.svg -------------------------------------------------------------------------------- /src/assets/svg/503.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/src/assets/svg/503.svg -------------------------------------------------------------------------------- /src/config/laravel-error-views.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/src/config/laravel-error-views.php -------------------------------------------------------------------------------- /src/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/src/views/errors/403.blade.php -------------------------------------------------------------------------------- /src/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/src/views/errors/404.blade.php -------------------------------------------------------------------------------- /src/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/src/views/errors/500.blade.php -------------------------------------------------------------------------------- /src/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/src/views/errors/503.blade.php -------------------------------------------------------------------------------- /src/views/errors/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmarn/laravel-error-views/HEAD/src/views/errors/layout.blade.php --------------------------------------------------------------------------------