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
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class WhatsappWebhookLog extends Model
{
protected $table = 'whatsapp_webhook_logs';
public $timestamps = false;
protected $fillable = ['payload', 'response', 'status_code'];
protected $casts = [
'created_at' => 'datetime',
];
}