Level 30
Okay solved it. Looked into the Billable trait
/**
* Get all of the subscriptions for the user.
*
* @return \Illuminate\Database\Eloquent\Collection
*/
public function subscriptions()
{
return $this->hasMany(Subscription::class)->orderBy('created_at', 'desc');
}
so i can access the users subscription with
$request->user()->subscriptions