How to obtain a list of subscription plans from stripe with Laravel 5.4?
Is there even a way to retrieve a list of subscription plans?
the following checks if a user is subscribed to a plan
@if(Auth::user()->subscribed('dailyTest'))
but is there something like
@foreach (Stripe::plans() as $plan)