Files
api_arrahn/app/BlastSMS.php
T
Nur Izzati Zulkifli 68ee50139e tambah rekod blast sms
2023-11-22 15:38:31 +08:00

21 lines
341 B
PHP

<?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',
];
}