| @@ -3,8 +3,16 @@ | ||
| 3 | 3 | namespace FluentCommunity\App\Models; |
| 4 | 4 | |
| 5 | 5 | use FluentCommunity\App\Functions\Utility; |
| 6 | 6 | |
| 7 | +/** | |
| 8 | + * @property int $id | |
| 9 | + * @property string|null $slug | |
| 10 | + * @property string|null $title | |
| 11 | + * @property string|null $taxonomy_name | |
| 12 | + * @property string|null $description | |
| 13 | + * @property mixed $settings | |
| 14 | + */ | |
| 7 | 15 | class Term extends Model |
| 8 | 16 | { |
| 9 | 17 | protected $table = 'fcom_terms'; |
| 10 | 18 | |