NELC Laravel Integration
xAPI Integration with Saudi NELC (National Center for e-Learning) for your Laravel app
Installation
You can install the package via composer:
composer require msaaq/nelc-laravel
After install the package you need to set API credentials in config/services.php
file:
[
// ...
'nelc' => [
'key' => env('NELC_KEY'),
'secret' => env('NELC_SECRET'),
'platform' => [
'name' => env('NELC_PLATFORM_NAME'),
'identifier' => env('NELC_PLATFORM_IDENTIFIER'),
],
'sandbox' => env('NELC_SANDBOX', false),
],
]
Usage
Now you can send xAPI statements to NELC using Msaaq\NelcLaravel\Nelc
facade:
use Msaaq\NelcLaravel\Nelc;
app(Nelc::class)->sendStatement($statement);
Or
use Nelc;
Nelc::sendStatement($statement);
Or from your controller like this:
use Msaaq\NelcLaravel\Nelc;
class MyController extends Controller
{
public function index(Request $request, Nelc $nelc)
{
$nelc->sendStatement($statement);
}
}
Statements
For more information about the statements, please visit nelc-xapi-php-sdk