Laravel\Cashier\Invoice::addOns PHP Method

addOns() public method

Get the add-on codes applied to the invoice.
public addOns ( ) : array
return array
    public function addOns()
    {
        $addOns = [];
        foreach ($this->transaction->addOns as $addOn) {
            $addOns[] = $addOn->id;
        }
        return $addOns;
    }