Delete
Deletes a specific tax registration.
Examples
Delete a model by id:
\SureCart\Models\TaxRegistration::delete('8ba8d60f-5277-4e6b-807c-dee8166446d5');
Delete a model directly.
$tax_registration = \SureCart\Models\TaxRegistration::find('8ba8d60f-5277-4e6b-807c-dee8166446d5');
$tax_registration->delete();