# fluent-cart/1.6.4/app/Http/Requests/TaxCountryStatusRequest.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.6.4. 23 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/app/Http/Requests/TaxCountryStatusRequest.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.6.4/raw/app/Http/Requests/TaxCountryStatusRequest.php
- Modified: 2026-06-11T12:21:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/app/Http/Requests/TaxCountryStatusRequest.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Http\Requests;

use FluentCart\Framework\Foundation\RequestGuard;

class TaxCountryStatusRequest extends RequestGuard
{
    public function rules(): array
    {
        return [
            'enabled' => 'required|numeric|min:0|max:1',
        ];
    }

    public function sanitize(): array
    {
        return [
            'enabled' => 'intval',
        ];
    }
}

```
