PHP code example of amidesfahani / nova-log-cleaner
1. Go to this page and download the library: Download amidesfahani/nova-log-cleaner 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/ */
amidesfahani / nova-log-cleaner example snippets
namespace App\Providers;
[...]
class NovaServiceProvider extends NovaApplicationServiceProvider
{
[...]
public function card()
{
return [
(new \Amidesfahani\NovaLogCleaner\NovaLogCleaner())->width('1/3'),
];
}
[...]
}