mivita/packages/shoppingcart/Facades/Cart.php
Kevin Adametz bfa3bb1df4 08 2024
2024-08-05 12:05:24 +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';
}
}