# fluent-cart/1.3.22/app/Http/Policies/CustomerFrontendPolicy.php

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

- Page: https://pluginprobe.com/plugins/fluent-cart/1.3.22/code/app/Http/Policies/CustomerFrontendPolicy.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.3.22/raw/app/Http/Policies/CustomerFrontendPolicy.php
- Modified: 2025-10-14T16:36:46+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.22/code/app/Http/Policies/CustomerFrontendPolicy.php#L10-L20`.

```php
<?php
namespace FluentCart\App\Http\Policies;

use FluentCart\Framework\Http\Request\Request;

class CustomerFrontendPolicy extends Policy
{
    public function verifyRequest(Request $request): bool
    {
        // check user logged in
        return is_user_logged_in();
    }
}

```
