Meet our new PHP SDK for MT4 API, which allows you to easily and efficiently integrate the functionality offered by dev4traders into your application.
Also Laravel specific SDK is available to simplify your work with the MT4 API in Laravel applications.
Here are a few examples:
use D4T\Mt4Sdk\Facades\MT4Manager;
// creating an account
$account = MT4Manager::createAccount([
'email' => '1@1.com',
'name' => 'Test Name'
]);
// updating an account
$account = MT4Manager::updateAccount(124,
[
'email' => '1@1.com',
'name' => 'Test Name'
]);