Files
api_arrahn/app/Pekerjaan.php
T
2021-01-04 08:48:55 +08:00

26 lines
422 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Pekerjaan extends Model
{
protected $table = 'pekerjaan';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'kodkerja','keterangan'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}