Files
id/src/Id/Concerns/ManagesTaxation.php
2025-09-21 17:12:19 +00:00

20 lines
302 B
PHP

<?php
namespace Anikeen\Id\Concerns;
use Throwable;
trait ManagesTaxation
{
use HasBillable;
/**
* Get VAT for the current user.
*
* @throws Throwable
*/
public function vatRate(): float
{
return $this->getUserData()->vat_rate;
}
}