mivita/packages/shoppingcart/CartItemOptions.php
Kevin Adametz bfa3bb1df4 08 2024
2024-08-05 12:05:24 +02:00

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);
}
}