daftar kakitangan:

This commit is contained in:
Afiq
2021-01-10 08:56:13 +08:00
parent 38a66ac70f
commit a812f411c5
12 changed files with 490 additions and 34 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Role extends Model
{
protected $table = 'roles';
protected $fillable = [
'keterangan'
];
}