관리-도구
편집 파일: CartItemOptions.php
<?php namespace Gloudemans\Shoppingcart; use Illuminate\Support\Collection; class CartItemOptions extends Collection { /** * Get the option by the given key. * * @param string $key * * @return mixed */ public function __get($key) { return $this->get($key); } }