# fluent-cart/1.6.4/app/Models/DynamicModel.php

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

- Page: https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/app/Models/DynamicModel.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.6.4/raw/app/Models/DynamicModel.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.6.4/code/app/Models/DynamicModel.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Models;

use FluentCart\App\Models\Concerns\CanSearch;

class DynamicModel extends Model
{
    use CanSearch;

    public function __construct($attributes = [], $table = null)
    {
        parent::__construct($attributes);
        $this->table = $table;
    }

    protected $guarded = [];
}
```
