Package Data | |
---|---|
Maintainer Username: | emtiazzahid |
Maintainer Contact: | emtiazzahid@gmail.com (Md. Emtiaz Zahid) |
Package Create Date: | 2020-01-22 |
Package Last Update: | 2023-01-25 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-02 03:09:17 |
Package Statistics | |
---|---|
Total Downloads: | 2,409 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 5 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 0 |
Git Log Viewer for Laravel 5, 6, 7, 8 & 9. Install with composer, create a route to GitLogLaravelController
. No public assets, no vendor routes, works with and/or without log rotate. Inspired by rap2hpoutre's Laravel log viewer
Install via composer
composer require emtiazzahid/git-log-laravel
Add Service Provider to config/app.php
in providers
section
Emtiazzahid\GitLogLaravel\GitLogServiceProvider::class,
Add or use existing route in your web routes file:
Route::get('git-log', '\EmtiazZahid\GitLogLaravel\GitLogLaravelController@index')->name('git-log');
Go to http://myapp/git-log
or some other route
Optionally publish git.blade.php
into /resources/views/vendor/git-log-laravel/
for view customization:
php artisan vendor:publish \
--provider="EmtiazZahid\GitLogLaravel\GitLogServiceProvider" \
--tag=views
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
.