Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ravinderk/2d546275c9a20af6118b255498c74c9b to your computer and use it in GitHub Desktop.
Save ravinderk/2d546275c9a20af6118b255498c74c9b to your computer and use it in GitHub Desktop.
StellarPay - Get All Subscription Of Logged-in Customer
<?php
use StellarPay\Subscriptions\Models\Subscription;
$subscriptions = Subscription::query()
->where('customer_id', get_current_user_id())
->orderBy('created_at_gmt', 'DESC')
->getAll();
var_export($subscriptions);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment