This commit is contained in:
Lizandro Guarnizo
2026-04-24 21:40:10 -05:00
parent 877a0d393a
commit 148fa6b9f9
36 changed files with 3037 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class WhatsappMessageTemplate extends Model
{
protected $table = 'whatsapp_message_templates';
protected $fillable = [
'name', 'template_name', 'language_code', 'status', 'body_text',
'header_type', 'header_text', 'footer_text', 'components', 'example_parameters',
];
protected $casts = [
'components' => 'array',
'example_parameters' => 'array',
];
}