Files
api_arrahn/app/Cawangan.php
T
2023-12-04 08:33:10 +08:00

30 lines
475 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Cawangan extends Model
{
protected $table = 'arrahn_master_db';
protected $connection = 'mysql7';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
// protected $fillable = [
// ];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}