“LARAVEL GIGAPAY Список выплат” Ответ

Laravel Gigapay создать выплату

use Mazimez\Gigapay\Payout;

$payout = Payout::create(
            '9aa16b42-d0f3-420f-ba57-580c3c86c419', //employee id
            'Instagram samarbete 2021-11-13.', //description for payout
            120, //amount of payout
            null, //cost of payout
            null, //invoice amount of payout
            'SEK', //currency of payout
            json_encode([
                "data" => "data from your system" //metadata of payout
            ]),
            null, //The time at which the gig will start. Displayed as ISO 8601 string.
            null, //The time at which the gig will end. Displayed as ISO 8601 string.
            3 //Unique identifier for the object.
);
return $payout->getJson();
Asif Patel

LARAVEL GIGAPAY Список выплат

use Mazimez\Gigapay\Payout;

$payouts = Payout::list(); //getting list of employee
$payouts = $payouts->paginate(1, 5);  //add pagination
return $payouts->getJson();
Asif Patel

Ответы похожие на “LARAVEL GIGAPAY Список выплат”

Вопросы похожие на “LARAVEL GIGAPAY Список выплат”

Больше похожих ответов на “LARAVEL GIGAPAY Список выплат” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования