20 lines
323 B
PHP
20 lines
323 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class Pengguna extends Model
|
||
|
{
|
||
|
/**
|
||
|
* The table associated with the model.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $table = 'tbl_pengguna';
|
||
|
|
||
|
public function divisi()
|
||
|
{
|
||
|
return $this->hasOne(Divisi::class,'id');
|
||
|
}
|
||
|
}
|