gruene-seele/packages/shoppingcart/Facades/Cart.php
2025-04-01 10:39:21 +02:00

16 lines
301 B
PHP

<?php
namespace App\Packages\Shoppingcart\Facades;
use Illuminate\Support\Facades\Facade;
class Cart extends Facade {
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'cart';
}
}