Laravel 9 View Logs Using LogViewer Package Tutorial

Reading Time: 6 minutes
3,508 Views

Inside this article we will see a composer package which is very much beneficial to create a log viewer. We can easily track errors on files after looking over log viewer dashboard.

LogViewer is a composer package. There are few steps to install it. It will create a dashboard by the help of which user can easily see application status without finding log files inside application.

This tutorial will help you to understand laravel 9 Views logs using logViewer package steps.

Learn More –

Let’s get started.

Laravel Installation

Open terminal and run this command to create a laravel project.

composer create-project laravel/laravel myblog

It will create a project folder with name myblog inside your local system.

To start the development server of laravel –

php artisan serve

URL: http://127.0.0.1:8000

Assuming laravel already installed inside your system.

Installation of LogViewer Package

Open project into terminal and run this composer command to install LogViewer package.

$ composer require arcanedev/log-viewer

It will install package into application.

Open .env file and this line into it.

LOG_CHANNEL=daily

Generate LogViewer Scaffolding Files

LogViewer composer package generates layout file, css file, config file etc. These all are the scaffolding files to make it working with great UI.

Open terminal and run this command.

Publish the Config and Translations Files

$ php artisan log-viewer:publish

If you are not able to publish files, you can publish it forcefully.

$ php artisan log-viewer:publish --force

Publishing the config only

$ php artisan log-viewer:publish --tag=config

Application requirements & log files check

$ php artisan log-viewer:check

LogViewer When No Log Available

We will see when there is no log available then how log viewer will looks like.

Open terminal and start development server.

$ php artisan serve

URL – http://127.0.0.1:8000/log-viewer

Dashboard Tab

Logs Tab

There is no data available as we can see.

Let’s create few Test logs.

Create Sample Logs

Open web.php file from /routes folder. Add these code into it.

//...

use Illuminate\Support\Facades\Log;

//...

Route::get("log-message", function () {

    $message = "This is a sample message for Test.";

    Log::emergency($message);
    Log::alert($message);
    Log::critical($message);
    Log::error($message);
    Log::warning($message);
    Log::notice($message);
    Log::info($message);
    Log::debug($message);
});

//...

Start development server and type

URL - http://127.0.0.1:8000/log-message

This will create a log file. Log file will be created inside /storage/logs with name like laravel-2022-06-03.log at root.

Inside log file, data will be like.

[2022-06-03 02:55:07] local.EMERGENCY: This is a sample message for Test.  
[2022-06-03 02:55:07] local.ALERT: This is a sample message for Test.  
[2022-06-03 02:55:07] local.CRITICAL: This is a sample message for Test.  
[2022-06-03 02:55:07] local.ERROR: This is a sample message for Test.  
[2022-06-03 02:55:07] local.WARNING: This is a sample message for Test.  
[2022-06-03 02:55:07] local.NOTICE: This is a sample message for Test.  
[2022-06-03 02:55:07] local.INFO: This is a sample message for Test.  
[2022-06-03 02:55:07] local.DEBUG: This is a sample message for Test.  

Application Testing

Run this command into project terminal to start development server,

php artisan serve

URL – http://127.0.0.1:8000/log-viewer

Dashboard Tab

Logs Tab

Single Log Detail

When we click on any log, it will open a single log detail page.

We hope this article helped you to learn about Laravel 9 View Logs Using LogViewer Package Tutorial in a very detailed way.

Online Web Tutor invites you to try Skillshike! Learn CakePHP, Laravel, CodeIgniter, Node Js, MySQL, Authentication, RESTful Web Services, etc into a depth level. Master the Coding Skills to Become an Expert in PHP Web Development. So, Search your favourite course and enroll now.

If you liked this article, then please subscribe to our YouTube Channel for PHP & it’s framework, WordPress, Node Js video tutorials. You can also find us on Twitter and Facebook.

Sanjay KumarHello friends, I am Sanjay Kumar a Web Developer by profession. Additionally I'm also a Blogger, Youtuber by Passion. I founded Online Web Tutor and Skillshike platforms. By using these platforms I am sharing the valuable knowledge of Programming, Tips and Tricks, Programming Standards and more what I have with you all. Read more