Completed
Push — dev5 ( 8e8b96...5f8a7c )
by Ron
09:14
created

FileLinkFiles::User()   A

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
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
namespace App;
4
5
use Illuminate\Database\Eloquent\Model;
6
7
class FileLinkFiles extends Model
8
{
9
    protected $primaryKey = 'link_file_id';
10
    protected $fillable = ['link_id', 'file_id', 'user_id', 'added_by', 'upload'];
11
    protected $casts = [
12
        'created_at' => 'datetime:M d, Y',
13
        'updated_at' => 'datetime:M d, Y'
14
    ];
15
16
    public function fileLinks()
17
    {
18
        return $this->hasMany('App\FileLinks', 'link_id', 'link_id');
19
    }
20
21
    public function files()
22
    {
23
        return $this->hasOne('App\Files', 'file_id', 'file_id');
24
    }
25
26
    public function User()
27
    {
28
        return $this->hasOne('App\User', 'user_id', 'user_id');
29
    }
30
}
31