hasibkamal/view-logs

To view laravel logs in details

Installs: 15

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:laravel-package

pkg:composer/hasibkamal/view-logs

1.0.0 2024-06-10 09:23 UTC

This package is auto-updated.

Last update: 2025-12-10 13:14:28 UTC


README

The package will help to view laravel logs easily.

Prerequisites

PHP >= 5.3.0

Installing

Install the package via Composer by following command:

composer require hasibkamal/view-logs

Once package installation done, register the service provider in config/app.php in the providers array like bellow:

providers' => [
    ...
    HasibKamal\ViewLog\LogServiceProvider::class
  ]

For publishing views

php artisan vendor:publish \
  --provider="HasibKamal\ViewLog\LogServiceProvider" \
  --tag=views

Then add folloiwng route in your routes file:

Route::get('/logs', '\Hasibkamal\ViewLog\ViewLogController@index');

Now you can browse your laravel website logs using {your-website-url}/logs.

For example:

http://www.example.com/logs

Enjoy!