| 1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class PromptTemplate extends Model
- {
- protected $table = 'prompt_templates';
- protected $fillable = [
- 'template_name',
- 'template_type',
- 'template_content',
- 'variables',
- 'description',
- 'tags',
- 'is_active',
- ];
- protected $casts = [
- 'variables' => 'array',
- 'tags' => 'array',
- 'is_active' => 'boolean',
- ];
- }
|