20 lines
327 B
PHP
20 lines
327 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class BlastWasap extends Model
|
|
{
|
|
protected $table = 'log_blast_wasap';
|
|
protected $connection = 'mysql7';
|
|
protected $fillable = [
|
|
'id',
|
|
'kodcaw',
|
|
'nokp',
|
|
'notelefon',
|
|
'created_at',
|
|
'updated_at',
|
|
];
|
|
}
|