1 | <?php |
||
11 | class User extends Model implements UserModel |
||
12 | { |
||
13 | protected $table = 'cas_users'; |
||
14 | protected $fillable = ['name']; |
||
15 | |||
16 | public function getName() |
||
17 | { |
||
18 | return $this->name; |
||
19 | } |
||
20 | |||
21 | public function getCASAttributes() |
||
22 | { |
||
23 | return [ |
||
24 | 'real_name' => $this->real_name, |
||
25 | ]; |
||
26 | } |
||
27 | |||
28 | public function getEloquentModel() |
||
29 | { |
||
30 | return $this; |
||
31 | } |
||
32 | } |
||
33 |