Files
api_arrahn/app/WakilSurat.php
T
2023-12-26 11:44:16 +08:00

30 lines
501 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class WakilSurat extends Model
{
protected $table = 'wakil_surat';
public $timestamps = true;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'nosiri',
'no_surat',
'norujukan',
't_cetak'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}