PHP code example of paulo-hortelan / onmt
1. Go to this page and download the library: Download paulo-hortelan/onmt 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/ */
paulo-hortelan / onmt example snippets
<livewire:requests-graph cols="6" />
bash
php artisan vendor:publish --tag=onmt-config
php artisan vendor:publish --tag=onmt-migrations
php artisan vendor:publish --tag=onmt-models
return [
// ...
'recorders' => [
// Existing recorders...
\PauloHortelan\RequestsGraphPulse\Recorders\RequestsGraphRecorder::class => [
'enabled' => env('PULSE_REQUESTS_GRAPH_ENABLED', true),
'sample_rate' => env('PULSE_REQUESTS_GRAPH_SAMPLE_RATE', 1),
'record_informational' => env('PULSE_REQUESTS_GRAPH_RECORD_INFORMATIONAL', false),
'record_successful' => env('PULSE_REQUESTS_GRAPH_RECORD_SUCCESSFUL', true),
'record_redirection' => env('PULSE_REQUESTS_GRAPH_RECORD_REDIRECTION', false),
'record_client_error' => env('PULSE_REQUESTS_GRAPH_RECORD_CLIENT_ERROR', true),
'record_server_error' => env('PULSE_REQUESTS_GRAPH_RECORD_SERVER_ERROR', true),
'ignore' => [
'#^/pulse$#', // Pulse dashboard...
],
],
]
]
bash
php artisan vendor:publish --tag=pulse-dashboard