PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 6.2.14
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v6.2.14
6.2.14 6.2.13 6.2.12 6.2.10 6.2.11 6.2.9 6.2.8 6.2.7 6.2.6 6.2.5 6.2.4 6.2.3 6.2.2 3.6.22 3.6.31 3.6.40 3.6.41 3.6.42 3.6.50 3.6.51 3.6.60 3.6.61 3.6.62 3.6.64 3.6.65 All 196 releases
← All changes | app/Models/Form.php +17 -0 6.2.66.2.14 View file →
@@ -5,8 +5,25 @@
5 5 use FluentForm\App\Modules\Payments\PaymentHelper;
6 6 use FluentForm\Framework\Support\Arr;
7 7 use FluentForm\App\Models\Traits\PredefinedForms;
8 8
9 +/**
10 + * Column properties resolved at runtime via the ORM's magic __get; declared
11 + * here so static analysis can verify attribute access against the real schema
12 + * (database/Migrations/Forms.php).
13 + *
14 + * @property int $id
15 + * @property string $title
16 + * @property string|null $status
17 + * @property string|null $appearance_settings
18 + * @property string|null $form_fields
19 + * @property int $has_payment
20 + * @property string|null $type
21 + * @property string|null $conditions
22 + * @property int|null $created_by
23 + * @property string|null $created_at
24 + * @property string|null $updated_at
25 + */
9 26 class Form extends Model
10 27 {
11 28 use PredefinedForms;
12 29