tambah rekod blast sms

This commit is contained in:
Nur Izzati Zulkifli
2023-11-22 15:38:31 +08:00
committed by Hafifie PKB
parent 135b9c37bc
commit de6e4a5c38
7 changed files with 177 additions and 17 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class BlastSMS extends Model
{
protected $table = 'log_blast_sms';
protected $connection = 'mysql7';
protected $fillable = [
'id',
'kodcaw',
'nokp',
'notelefon',
'status',
'created_at',
'updated_at',
];
}