1 | <?php namespace Lahaxearnaud\U2f\Models; |
||
11 | class U2fKey extends Model |
||
12 | { |
||
13 | public $table = "u2f_key"; |
||
14 | |||
15 | public $primaryKey = "id"; |
||
16 | |||
17 | public $timestamps = TRUE; |
||
18 | |||
19 | public $fillable = [ |
||
20 | "user_id", |
||
21 | "keyHandle", |
||
22 | "publicKey", |
||
23 | "certificate", |
||
24 | "counter" |
||
25 | ]; |
||
26 | |||
27 | /** |
||
28 | * @author LAHAXE Arnaud <[email protected]> |
||
29 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
30 | */ |
||
31 | public function user() |
||
36 | } |
||
37 |