kabbouchi/laravel-ward

370,237 25
Install
composer require kabbouchi/laravel-ward
Latest Version:v0.6.0
License:MIT
Last Updated:Feb 20, 2023
Links: GitHub  ·  Packagist
Maintainer: KABBOUCHI

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

Related Packages

jackiedo/log-reader

An easy log reader and management tool for Laravel

435,092 151
timetorock/laravel-monolog-sentry

Laravel 5.4 library for integration Monolog with Sentry

2,172 2
achyutn/filament-log-viewer

A Filament package to view and manage Laravel logs.

196,957 51