public function index()
 {
     $businessPlans = BusinessPlan::all();
     $goats = Goat::all();
     $users = User::all();
     return view('manage_plan', compact('businessPlans', 'goats', 'users', 'user'));
 }