Billie/app/Models/Android/SubmitsTestCase.php
2025-05-06 09:47:26 +07:00

19 lines
506 B
PHP

<?php
namespace App\Models\Android;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use App\Models\Android\Testcase;
class SubmitsTestCase extends Model
{
protected $table = "android_submits_testcase";
protected $fillable = ["user_id", "android_submit_id", "android_testcase_id", "status", "status_waiting"];
public function android_testcase() : BelongsTo{
return $this->belongsTo( Testcase::class, 'android_testcase_id', 'id' );
}
}