We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
8 | class Campaign extends Model |
||
9 | { |
||
10 | /** |
||
11 | * The table associated with the model. |
||
12 | * |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $table = 'campaigns'; |
||
16 | |||
17 | /** |
||
18 | * The attributes that are mass assignable. |
||
19 | * |
||
20 | * @var array |
||
21 | */ |
||
22 | protected $filliable = [ 'title', 'expires', 'user_id' ]; |
||
23 | |||
24 | protected $hidden = [ 'created_at', 'updated_at' ]; |
||
25 | |||
26 | public function owner() |
||
30 | } |
||
31 |