add function surat wakil

This commit is contained in:
Amirah
2023-12-26 11:44:16 +08:00
parent c5ee13d643
commit c56a908d2f
4 changed files with 200 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<?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 = [];
}