| @@ -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 | |