All checks were successful
Push image to registry / build-image (push) Successful in 5m59s
Still need testing and making proper notifications
18 lines
290 B
PHP
18 lines
290 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class HellcaseBattle extends Model
|
|
{
|
|
protected $fillable = [
|
|
"battle_id",
|
|
"value",
|
|
];
|
|
|
|
public function getUrl() {
|
|
return "https://hellcase.com/casebattle/{$this->battle_id}";
|
|
}
|
|
}
|