# fluent-support/1.10.1/app/Models/Model.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version 1.10.1. 21 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/1.10.1/code/app/Models/Model.php
- Raw: https://pluginprobe.com/plugins/fluent-support/1.10.1/raw/app/Models/Model.php
- Modified: 2023-12-15T11:35:04+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/1.10.1/code/app/Models/Model.php#L10-L20`.

```php
<?php

namespace FluentSupport\App\Models;

use FluentSupport\Framework\Database\Orm\Model as BaseModel;

class Model extends BaseModel
{
    protected $guarded = ['id', 'ID'];

    public function __construct($attributes = [])
    {
        parent::__construct($attributes);
    }

    public function getPerPage()
    {
        return (isset($_REQUEST['per_page'])) ? intval($_REQUEST['per_page']) : 15;
    }
}

```
