13 lines
220 B
PHP
13 lines
220 B
PHP
<?php
|
|
|
|
namespace App\Models\Sppm;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PusatMengundi extends Model
|
|
{
|
|
protected $connection = 'sppm';
|
|
protected $table = 'pusat_mengundi';
|
|
protected $guarded = [];
|
|
}
|