laravel-ward maintained by kabbouchi
Last update
2020/03/04 07:03
License
Require
- illuminate/contracts 5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0
- illuminate/queue 5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0
- illuminate/support 5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0
Last update
2020/03/04 07:03
License
Require
- illuminate/contracts 5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0
- illuminate/queue 5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0
- illuminate/support 5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0
Last update
2019/09/11 17:24
License
Require
- illuminate/contracts 5.5.*|5.6.*|5.7.*|5.8.*|^6.0
- illuminate/queue 5.5.*|5.6.*|5.7.*|5.8.*|^6.0
- illuminate/support 5.5.*|5.6.*|5.7.*|5.8.*|^6.0
Last update
2019/09/03 14:42
License
Require
- illuminate/contracts 5.5.*|5.6.*|5.7.*|5.8.*|^6.0
- illuminate/queue 5.5.*|5.6.*|5.7.*|5.8.*|^6.0
- illuminate/support 5.5.*|5.6.*|5.7.*|5.8.*|^6.0
Last update
2018/09/02 08:39
License
Require
- illuminate/contracts ~5.5
- illuminate/queue ~5.5
- illuminate/support ~5.5
Last update
2018/08/22 19:52
License
Require
- illuminate/contracts ~5.5
- illuminate/queue ~5.5
- illuminate/support ~5.5
Last update
2018/03/23 21:19
License
Require
- illuminate/contracts ~5.5
- illuminate/queue ~5.5
- illuminate/support ~5.5
comments powered by Disqus
Laravel Ward
Manage Your Laravel Log From A Web Dashboard
Install
composer require kabbouchi/laravel-ward
php artisan vendor:publish --tag=ward-config
php artisan vendor:publish --tag=ward-assets --force
Add WardServiceProvider to the providers array of your Laravel v5.4 application's config/app.php
KABBOUCHI\Ward\Providers\WardServiceProvider::class,
Web Dashboard Laravel Ward's dashboard is inspired by Laravel Horizon. Just like Horizon you can configure authentication to Ward's dashboard. Add the following to the boot method of your AppServiceProvider or wherever you might seem fit.
use KABBOUCCHI\Ward\Ward;
Ward::auth(function($request) {
// return true / false . For e.g.
return Auth::check();
});
By default Ward's dashboard only works in local environment. To view the dashboard point your browser to /ward of your app or change the uri
in config/ward.php
. For e.g. http://laravel.test/ward