Completed
Push — master ( 6e07f5...872311 )
by
unknown
8s
created

ProgramKeahlian::user()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Bantenprov\ProgramKeahlian\Models\Bantenprov\ProgramKeahlian;
4
5
use Illuminate\Database\Eloquent\Model;
6
use Illuminate\Database\Eloquent\SoftDeletes;
7
8
class ProgramKeahlian extends Model
9
{
10
    use SoftDeletes;
11
12
    public $timestamps = true;
13
14
    protected $table = 'program_keahlians';
15
    protected $dates = [
16
        'deleted_at'
17
    ];
18
    protected $fillable = [
19
        'label',
20
        'keterangan',
21
        'user_id',
22
    ];
23
    /**
24
     * The attributes that should be hidden for arrays.
25
     *
26
     * @var array
27
     */
28
    protected $hidden = [];
29
30
        public function user()
31
    {
32
        return $this->belongsTo('App\User','user_id');
33
    }
34
35
}
36