FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
app
/
src
/
Controllers
/
Rest
Edit File: TaxOverrideController.php
<?php namespace SureCart\Controllers\Rest; use SureCart\Models\TaxOverride; /** * Handle Tax Override requests through the REST API */ class TaxOverrideController extends RestController { /** * Always fetch with these subcollections. * * @var array */ protected $with = [ 'tax_zone', 'product_collection' ]; /** * Class to make the requests. * * @var string */ protected $class = TaxOverride::class; }
Save
Back