public function compose($view)
 {
     $planId = Auth::user()->plan_id;
     $plan = MembershipPlan::find($planId);
     $view->with('user', Auth::user())->with('membership', $plan);
 }