PHP code example of malcolmknott / displaylog

1. Go to this page and download the library: Download malcolmknott/displaylog library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

malcolmknott / displaylog example snippets


'providers' => [
    Malcolmknott\Displaylog\DisplayLogServiceProvider::class,
];

'storage' => [
    'driver' => 'local',
    'root' => storage_path(),
]

Route::get('display-log', '\Malcolmknott\Displaylog\DisplayLogController@show');
bash
php artisan make:auth
bash
php artisan vendor:publish --provider="Malcolmknott\Displaylog\DisplayLogServiceProvider" --tag="views"