PHP code example of primefaceshero / mobile-traffic-meter

1. Go to this page and download the library: Download primefaceshero/mobile-traffic-meter 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/ */

    

primefaceshero / mobile-traffic-meter example snippets

 bash


namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class LogUseEvent extends Model
{
    protected $fillable = [
        'event',
        'user_id',
        'created_at'
    ];
}
 bash
Route::get('/faker/{count}', function ($count) {
    MobileTrafficMeter::faker($count);
    return "done";
});
 bash
MobileTrafficMeter::getByEventAndDate($event, $start_date, $end_date)
 bash
MobileTrafficMeter::getByEventAndDate($start_date, $end_date)