# fluent-cart/1.3.23/app/Http/Policies/ProductPolicy.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.3.23. 14 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.3.23/code/app/Http/Policies/ProductPolicy.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.3.23/raw/app/Http/Policies/ProductPolicy.php
- Modified: 2025-10-29T13:35:30+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.3.23/code/app/Http/Policies/ProductPolicy.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Http\Policies;

use FluentCart\Framework\Http\Request\Request;

class ProductPolicy extends Policy
{
    public function verifyRequest(Request $request): bool
    {
        return $this->hasRoutePermissions();
    }
}

```
