https://github.com/matthewbdaly/laravel-devheader
Laravel middleware that adds a header to the page when not in production so you don't mix up dev, staging and production environments.
https://github.com/matthewbdaly/laravel-devheader
laravel php
Last synced: 3 months ago
JSON representation
Laravel middleware that adds a header to the page when not in production so you don't mix up dev, staging and production environments.
- Host: GitHub
- URL: https://github.com/matthewbdaly/laravel-devheader
- Owner: matthewbdaly
- License: mit
- Created: 2018-05-12T16:14:37.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-12T16:23:42.000Z (about 7 years ago)
- Last Synced: 2024-04-14T04:02:28.752Z (about 1 year ago)
- Topics: laravel, php
- Language: PHP
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# laravel-devheader
Laravel middleware that adds a header to the page when not in production so you don't mix up dev, staging and production environments.
How do I use it?
----------------Install it like this:
```bash
$ composer require matthewbdaly/laravel-devheader
```Then include the middleware in the `web` group in `app/Http/Kernel.php`:
```php
Matthewbdaly\LaravelDevheader\Http\Middleware\DevHeader::class
```