1 | <?php |
||
8 | class Build extends UuidModel |
||
9 | { |
||
10 | use BelongsToMinistryTrait; |
||
11 | |||
12 | protected $guarded = ['id']; |
||
13 | protected $table = 'fg_app_builds'; |
||
14 | |||
15 | public const BUILD_STATUS = ['successful', 'failed', 'building']; |
||
16 | |||
17 | /** |
||
18 | * Links the current build to many logs. |
||
19 | * |
||
20 | * @return \Illuminate\Database\Eloquent\Relations\HasMany |
||
21 | */ |
||
22 | public function buildLogs() |
||
26 | } |
||
27 |