PHP code example of rapideinternet / laravel-apm-events

1. Go to this page and download the library: Download rapideinternet/laravel-apm-events 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/ */

    

rapideinternet / laravel-apm-events example snippets


php artisan vendor:publish

php artisan apm-events:create_schema

Route::get('click', function()
{
    return \Rapide\LaravelApmEvents\Facade::event("click")
                   ->insert('thumbnail', array(
                        'movie_name' => 'Interstellar',
                          'year' => '2014')
                );
});

Route::get('all', function()
{
    return \Rapide\LaravelApmEvents\Facade::event("click")->get();
});