FleetCart/Modules/Shipping/ShippingMethodManager.php

14 lines
221 B
PHP
Raw Normal View History

2023-06-11 12:14:03 +00:00
<?php
namespace Modules\Shipping;
use Modules\Support\Manager;
class ShippingMethodManager extends Manager
{
public function available()
{
return $this->all()->filter->available();
}
}