bhavinjr/auditor-view is a Laravel package for laravel-auditor view.
It currently has 0 GitHub stars and 4 downloads on Packagist (latest version v0.1).
Install it with composer require bhavinjr/auditor-view.
Discover more Laravel packages by bhavinjr
or browse all Laravel packages to compare alternatives.
Last updated
Auditor view provides a dashboard for msonowal/laravel-auditor package which is used for an activity log(Mongo DB)
Auditor view is created using Vue Component. Structure and theme from (laravel/horizon)
composer require bhavinjr/auditor-view
After installing Auditor view, publish its assets using the vendor:publish Artisan command:
Auditor view exposes a dashboard at /viewdit. By default, you will only be able to access this dashboard in the local environment. To define a more specific access policy for the dashboard, you should use the Viewdit::auth method. The auth method accepts a callback which should return true or false, indicating whether the user should have access to the Viewdit dashboard:
use Bhavinjr\Viewdit\Viewdit;
Viewdit::auth(function ($request) {
return //true or false
});
laravel/horizon and msonowal/laravel-auditor
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.