PHPackages                             igormatkovic/laravel-livelogger - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. igormatkovic/laravel-livelogger

ActiveLibrary[Framework](/categories/framework)

igormatkovic/laravel-livelogger
===============================

Log and display you app live to your developers

1.0.3(11y ago)1611MITPHPPHP &gt;=5.4.0

Since Aug 17Pushed 10y ago1 watchersCompare

[ Source](https://github.com/igormatkovic/laravel-livelogger)[ Packagist](https://packagist.org/packages/igormatkovic/laravel-livelogger)[ RSS](/packages/igormatkovic-laravel-livelogger/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (1)Dependencies (4)Versions (5)Used By (0)

\#Laravel LiveLogger
====================

[](#laravel-livelogger)

Simple way to display live logs on a custom dashboard.

The idea behind this was to have a TV on the office wall to display the data. And in a future release to send out a sound if there is a error or similar.

This app uses Pusher.com to send the data. There will be a Websocket version also but since Pusher's free account allows up to 100k messages a day im not sure anybody is going to use it.

\##Composer

```
    "require": {
		"igormatkovic/laravel-livelogger": "~1.0"
    }
```

\##Setup

In app/config/app.php

Comment the Laravel Log Service provider

```
    //'Illuminate\Log\LogServiceProvider',
```

And add this one:

```
    'Igormatkovic\Livelogger\LiveloggerServiceProvider',
```

Also change the Log alias:

From:

```
    'Log'       => 'Illuminate\Support\Facades\Log',
```

To:

```
    'Log'       => 'Igormatkovic\Livelogger\Facades\Livelogger'
```

From the command line publish and edit the config:

```
    php artisan config:publish igormatkovic/laravel-livelogger
```

And insert your app data from Pusher.com

```
return array(

    'log_level'         => (getenv('log_level') ?: 'error'),
    'dateformat'        => (getenv('dateformat') ?: 'H:i:s'),
    'channel_name'      => (getenv('channel_name') ?: 'livelogger'),
    'pusher_app_id'     => (getenv('pusher_app_id') ?: 'pusher_app_id'),
    'pusher_api_key'    => (getenv('pusher_api_key') ?: 'pusher_api_key'),
    'pusher_api_secret' => (getenv('pusher_api_secret') ?: 'pusher_api_secret'),
    'pusher_use_ssl'    => (getenv('pusher_use_ssl') ?: false),
);
```

Or you can just insert the data in your .env.php to keep it out of GIT

Once you have added your data, just generate the livelogger dash html

```
    php artisan livelogger:generate
```

Then just open your $domain.com/livelogger.html to see whats getting logged

I would recommend using that URL as a iframe so you can put it in your custom dashboard.

But you can just integrate it directly into your own view:

```

    var pusher = new Pusher('{{ $pusher_api_key }}');
    var channel = pusher.subscribe('{{ $chanel_name }}');
    channel.bind('log', function(data) {
        $('#notify-messages').prepend('['+data.date+'] '+data.message+'');
    });

```

Don't forget to set your chanel\_name and pusher\_api\_key

Keep in mind. The more log pushes you have the slower the site is going to be!

This app is for more critical parts of the app.

\###TO DO

- Unit tests.
- Sound for critical events.
- Secure the URL with a token or something.
- Design a better output interface, this one sucks.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 88.9% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~24 days

Total

4

Last Release

4212d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/65602f365138878980125607ea33928261d4a9069b4a4ab57bc261e09d81090d?d=identicon)[igormatkovic](/maintainers/igormatkovic)

---

Top Contributors

[![igormatkovic](https://avatars.githubusercontent.com/u/2323435?v=4)](https://github.com/igormatkovic "igormatkovic (8 commits)")[![thijsvdanker](https://avatars.githubusercontent.com/u/429548?v=4)](https://github.com/thijsvdanker "thijsvdanker (1 commits)")

---

Tags

frameworklaraveldevelopers

### Embed Badge

![Health badge](/badges/igormatkovic-laravel-livelogger/health.svg)

```
[![Health](https://phpackages.com/badges/igormatkovic-laravel-livelogger/health.svg)](https://phpackages.com/packages/igormatkovic-laravel-livelogger)
```

###  Alternatives

[laravel/cashier

Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.

2.5k25.9M107](/packages/laravel-cashier)[laravel/reverb

Laravel Reverb provides a real-time WebSocket communication backend for Laravel applications.

1.5k9.4M48](/packages/laravel-reverb)[laravel/ui

Laravel UI utilities and presets.

2.7k134.9M601](/packages/laravel-ui)[laravel/lumen-framework

The Laravel Lumen Framework.

1.5k26.2M709](/packages/laravel-lumen-framework)[laravel/jetstream

Tailwind scaffolding for the Laravel framework.

4.1k19.8M136](/packages/laravel-jetstream)[laravel-lang/publisher

Localization publisher for your Laravel application

2167.7M24](/packages/laravel-lang-publisher)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
