예제 #1
0
 public function checkout_step1()
 {
     $user_id = $this->user_id;
     $address = UserAddress::where('user_id', $user_id)->get()->toArray();
     return View::make('checkout')->with('store', $this->store)->with('departments', $this->departments)->with('zipcode', $this->zipcode)->with('city', $this->city)->with('stores1', $this->stores)->with('address', $address);
 }