love_php/app/Models/Server/SurveyService.php
2026-04-02 09:20:51 +08:00

17 lines
284 B
PHP

<?php
namespace App\Models\Server;
use Illuminate\Database\Eloquent\Model;
class SurveyService extends Model
{
protected $fillable = [];
protected $guarded = [];
public function survey()
{
return $this->belongsTo(Survey::class, 'survey_id', 'id');
}
}