diff --git a/CHANGELOG.md b/CHANGELOG.md
index fba1b25..9f1c545 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,10 +1,14 @@
# Changelog
-## 0.1.21 - WIP
+## 0.2.0 - WIP
### Add
-- CI/CD: Add Caching vendors in GitHub actions pipeline
+- You can watch your LaraLens report with your browser (not just with your terminal);
+- Makefile to manage development tasks;
+- Add timeout when checking HTTP connection;
+- CI/CD: Add Caching vendors in GitHub actions pipeline.
+
### Change
-- DOCS: Update README, add some docs about skip database connection and database
+- DOCS: Update README, add some docs about skip database connection and database.
## 0.1.20 - 2020-09-11
### Fix
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f1af603
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,19 @@
+
+help: ## Show this help.
+ @fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
+
+phpstan: ## Execute phpstan
+ phpstan analyse src --level=1
+
+test: ## Execute phpunit
+ vendor/bin/phpunit
+
+coverage: ## Execute the coverage test
+ vendor/bin/phpunit --coverage-text
+
+phpcs: ## execute phpcs
+ phpcs src
+
+allcheck: phpcs phpstan ## all check
+
+
diff --git a/README.md b/README.md
index e1aed11..b3caefc 100755
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
# LaraLens
-![CICD Github Actions](https://github.com/Hi-Folks/lara-lens/workflows/PHP%20Composer/badge.svg)
+![CI/CD Github Actions](https://github.com/Hi-Folks/lara-lens/workflows/PHP%20Composer/badge.svg)
![GitHub last commit](https://img.shields.io/github/last-commit/hi-folks/lara-lens)
![GitHub Release Date](https://img.shields.io/github/release-date/hi-folks/lara-lens)
![Packagist PHP Version Support](https://img.shields.io/packagist/php-v/hi-folks/lara-lens)
@@ -112,6 +112,39 @@ composer test
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
+## Usage as Web Page
+
+LaraLens provides information with the command line via terminal as shown above.
+You have also the opportunity to see the information via your web browser.
+You can enable web view via the configuration.
+
+Publish default configuration for LaraLens in your Laravel Application:
+```shell script
+php artisan vendor:publish --provider="HiFolks\LaraLens\LaraLensServiceProvider" --tag="config"
+```
+
+After that,you will have a new configuration file in your config directory. The file is: config/lara-lens.php
+
+With the following configuration you will enable the web view (_web-enabled_ parameter) under _/laralens/_ path:
+
+```php
+return [
+ 'prefix' => 'laralens', // URL prefix (default=laralens)
+ 'middleware' => ['web'], // middleware to use (default=web)
+ 'web-enabled' => 'on' // Activate web view (default=off)
+];
+```
+
+### Web view configuration hint
+LaraLens shows some internal configuration of your Laravel application, so I suggest you to disable it in a production environment.
+To disable LaraLens web view, make sure that _web-enabled_ is _off_:
+```
+'web-enabled' => 'off'
+```
+
+
+
+
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
@@ -125,7 +158,7 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
## Credits
- [Roberto Butti](https://github.com/hi-folks)
-- [All Contributors](../../contributors)
+- [All Contributors](https://github.com/Hi-Folks/lara-lens/graphs/contributors)
- [Laravel Package Boilerplate](https://laravelpackageboilerplate.com)
## Who talks about LaraLens
diff --git a/config/config.php b/config/config.php
index 48d0ee9..220311d 100755
--- a/config/config.php
+++ b/config/config.php
@@ -1,8 +1,10 @@
'laralens', // URL prefix (default=laralens)
+ 'middleware' => ['web'], // middleware to use (default=web)
+ 'web-enabled' => 'off' // Activate web view (default=off)
+];
diff --git a/resources/views/laralens/index.blade.php b/resources/views/laralens/index.blade.php
new file mode 100644
index 0000000..78023ae
--- /dev/null
+++ b/resources/views/laralens/index.blade.php
@@ -0,0 +1,98 @@
+
+
+