# fluent-support/trunk/app/Http/Controllers/OptionsController.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version trunk. 19 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/trunk/code/app/Http/Controllers/OptionsController.php
- Raw: https://pluginprobe.com/plugins/fluent-support/trunk/raw/app/Http/Controllers/OptionsController.php
- Modified: 2026-02-05T14:04:40+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-support/trunk/code/app/Http/Controllers/OptionsController.php#L10-L20`.

```php
<?php

namespace FluentSupport\App\Http\Controllers;

use FluentSupport\App\Services\Helper;
use FluentSupport\App\Services\Includes\CountryNames;
use FluentSupport\Framework\Http\Request\Request;

class OptionsController extends Controller
{

    public function getCountries()
    {
        return [
            'countries' => CountryNames::get()
        ];
    }
}

```
