BillReceive::category()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace App;
4
5
use Illuminate\Database\Eloquent\Model;
6
7
class BillReceive extends Model
8
{
9
    protected $fillable = ['date_launch','name','value','status','category_id'];
10
11
    protected $casts = ['status' => 'boolean'];
12
13
    protected $appends = ['type'];
14
15
    public function category()
16
    {
17
    	return $this->belongsTo('App\Category');
18
    }
19
20
    public function getTypeAttribute()
21
    {
22
    	return "in";
23
    }
24
}
25