21 lines
487 B
PHP
21 lines
487 B
PHP
<?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',
|
|
];
|
|
}
|