Search
 
SCRIPT & CODE EXAMPLE
 

PHP

laravel gigapay create payout

use MazimezGigapayPayout;

$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();
Comment

laravel gigapay get single payout

use MazimezGigapayPayout;

$payout = Payout::findById('1'); //getting payout by it's id
return $payout->getJson();
Comment

PREVIOUS NEXT
Code Example
Php :: curl upload image huawei 
Php :: time debug php 
Php :: php laravel convert blob type to string 
Php :: barryvdh laravel dompdf pages total 
Php :: onde fica o php ini ubuntu 
Php :: how to change directory in command processor 
Php :: laravel query with optional filter 
Php :: redirect from controller to named route with prams in URL 
Php :: html css js php 
Php :: Solution for unseting an array 
Php :: show only fatal errors php 
Php :: Argument #1 ($baseObject) must be of type DateTimeInterface, string given 
Php :: Change COD default order status to “On Hold” instead of “Processing” in Woocommerce 
Php :: laravel class is not recognized in tinker 
Php :: Comment supprimer le fil d’Ariane WooCommerce dans WordPress 
Php :: wp dev tehem support widget 
Php :: Laravel Http client retry request if fail 
Php :: get product price with thousands separator 
Php :: PHP 7 - Fatal error: Call to undefined method PDF::FPDF() 
Php :: How to display limited post content in WordPress 
Php :: Best Performance monitoring tools for php 
Php :: setup wp cron from external / cpanel cron service 
Php :: child data retrive without timestamp laravel 
Php :: print array blade laravel 
Php :: php ?: 
Php :: spatie media library 
Php :: laravel array update 
Php :: php catch mysqli_connect(): (HY000/1045): Access denied 
Php :: laravel transaction 
Php :: schema add column laravel 
ADD CONTENT
Topic
Content
Source link
Name
1+5 =