diff --git a/README.md b/README.md
index 5a85c2b..27bed79 100644
--- a/README.md
+++ b/README.md
@@ -15,19 +15,22 @@ https://github.com/Laravel-Backpack/Base
composer require eduardoarandah/backpacklogviewer
php artisan vendor:publish --provider="EduardoArandaH\BackpackLogViewer\BackpackLogViewerServiceProvider"
-This will install views in resources/views/vendor/log-viewer
+Add to your .env file:
-## Configuration
+ APP_LOG=daily
+ ARCANEDEV_LOGVIEWER_MIDDLEWARE=web,admin
-Set a daily log in config/app.php
+This will set your log files to "daily" and set "admin" middleware
- 'log' => 'daily',
+## Sidebar Link
-## Security
+go to
-Add 'admin' middleware to your .env file
+ resources/views/vendor/backpack/base/inc/sidebar.blade.php
- ARCANEDEV_LOGVIEWER_MIDDLEWARE=web,admin
+add this line
+
+
Log Viewer
## (optional) Configure Permission
@@ -42,17 +45,6 @@ Permission Manager lets you manage access to certain roles

-
-## Sidebar Link
-
-go to
-
- resources/views/vendor/backpack/base/inc/sidebar.blade.php
-
-add this line
-
- Log Viewer
-
## (Optional) Change URL
By default, log-viewer URL is http://website/log-viewer
diff --git a/src/assets/views/_template/master.blade.php b/src/assets/views/_template/master.blade.php
index 81cdf2f..8a7e45a 100644
--- a/src/assets/views/_template/master.blade.php
+++ b/src/assets/views/_template/master.blade.php
@@ -7,7 +7,6 @@
LogViewer - version {{ log_viewer()->version() }}
- by ARCANEDEV ©
+ @if (config('app.log')=='single')
+
+
Error: you have your logs configured as "single", please change to "daily"
+ Add this line to your .env file
+ APP_LOG=daily
+
+ @endif
+ @if (LogViewer::isEmpty())
+
+
Logs empty
+
You don't have log files
+
+
+ @endif
@endsection
@section('after_scripts')