kingflamez/laravelrave

Sub account

Justicea83 opened this issue · 1 comments

You can create Subaccounts like below, ensuring that you provide the properties found on https://developer.flutterwave.com/reference/endpoints/collection-subaccount#create-a-collection-subaccount

`<?php
$data = [
'account_number' => '0690000034',
'account_bank' => '044',
'business_name' => 'Christian Jombo and Sons',
'business_mobile' => '08000000000',
'split_type' => 'flat',
'split_value' => 1000
];

$subaccount = Flutterwave::subaccounts()->create($data);

dd($subaccount);`