*/ class SubscriptionsController extends Controller { public function index(Customer $customer) { $subscriptions = $customer->subscriptions()->orderBy('due_date')->get(); return view('customers.subscriptions', compact('customer', 'subscriptions')); } }