19 lines
No EOL
312 B
PHP
19 lines
No EOL
312 B
PHP
<?php
|
|
|
|
namespace App\Packages\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);
|
|
}
|
|
} |