Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Laravel Log Viewer | 2,958 | 663 | 63 | 3 months ago | 80 | April 06, 2022 | 42 | mit | PHP | |
:dromedary_camel: Laravel log viewer | ||||||||||
Log Viewer | 2,561 | 4 days ago | 31 | September 16, 2022 | 3 | mit | PHP | |||
Fast and beautiful Log Viewer for Laravel | ||||||||||
Logviewer | 2,277 | 509 | 48 | 3 months ago | 118 | February 10, 2022 | 15 | mit | PHP | |
:page_with_curl: Provides a log viewer for Laravel | ||||||||||
Laravel Log Reader | 254 | 3 years ago | 7 | November 07, 2020 | 2 | |||||
A simple and beautiful laravel log reader | ||||||||||
Laravel Log Reader | 143 | 4 | 2 | 4 months ago | 34 | February 18, 2023 | mit | PHP | ||
A log reader and management tool for Laravel | ||||||||||
Nova Logs | 78 | 1 | 1 | 8 months ago | 12 | February 07, 2021 | 17 | mit | Vue | |
Laravel Nova Log Viewer | ||||||||||
Laravel Log Viewer | 21 | 10 months ago | 1 | mit | PHP | |||||
Dcat Log Viewer是一个Laravel日志查看工具,支持大文件日志的查看、搜索以及多层级目录功能。 | ||||||||||
Better Log Viewer | 16 | 3 months ago | 18 | March 05, 2022 | 7 | mit | Vue | |||
A speedy and clean Laravel Log viewer with search and pagination | ||||||||||
Log Viewer | 13 | 6 months ago | PHP | |||||||
Provides a log viewer for Botble CMS | ||||||||||
Laravel Log Viewer | 10 | 3 years ago | mit | PHP | ||||||
Laravel log viewer |
Log Viewer for Laravel 5, 6, 7, 8 & 9 (still compatible with 4.2 too) and Lumen. Install with composer, create a route to LogViewerController
. No public assets, no vendor routes, works with and/or without log rotate. Inspired by Micheal Mand's Laravel 4 log viewer (works only with laravel 4.1)
Small log viewer for laravel. Looks like this:
Install via composer
composer require rap2hpoutre/laravel-log-viewer
Add Service Provider to config/app.php
in providers
section
Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider::class,
Add a route in your web routes file:
Route::get('logs', [\Rap2hpoutre\LaravelLogViewer\LogViewerController::class, 'index']);
Go to http://myapp/logs
or some other route
Install via composer
composer require rap2hpoutre/laravel-log-viewer
Add the following in bootstrap/app.php
:
$app->register(\Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider::class);
Explicitly set the namespace in app/Http/routes.php
:
$router->group(['namespace' => '\Rap2hpoutre\LaravelLogViewer'], function() use ($router) {
$router->get('logs', '[email protected]');
});
Publish log.blade.php
into /resources/views/vendor/laravel-log-viewer/
for view customization:
php artisan vendor:publish \
--provider="Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider" \
--tag=views
Publish logviewer.php
configuration file into /config/
for configuration customization:
php artisan vendor:publish \
--provider="Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider"
If you got a InvalidArgumentException in FileViewFinder.php
error, it may be a problem with config caching. Double check installation, then run php artisan config:clear
.