vietstars/logs-viewer
logs-viewer
============
Compatible
Log Viewer for Laravel 10
Install via composer
composer require Vietstars/logs-viewer
Add the following in bootstrap/app.php:
$app->register(\Vietstars\LogsViewer\LogsViewerServiceProvider::class);
Explicitly set the namespace in app/Http/routes.php:
$router->group(['namespace' => '\Vietstars\LogsViewer'], function() use ($router) {
$router->get('logs', 'LogsViewerController@index');
});
Customize view
Publish log.blade.php into /resources/views/vendor/logs-viewer/ for view customization:
php artisan vendor:publish \
--provider="Vietstars\LogsViewer\LogsViewerServiceProvider" \
--tag=views
Edit configuration
Publish logviewer.php configuration file into /config/ for configuration customization:
php artisan vendor:publish \
--provider="Vietstars\LogsViewer\LogsViewerServiceProvider"
Related Packages
laboiteacode/filament-logs-explorer
Read and search your Laravel log files without leaving your Filament panel.
2,752
5
skeylup/owlogs-agent
Owlogs agent — ship Laravel logs to an Owlogs server for aggregation and viewing...
407
1
robbiekibler/laravel-posthog-logs
Send Laravel logs to PostHog using OpenTelemetry OTLP format
419
0