17 lines
284 B
PHP
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');
|
||
|
|
}
|
||
|
|
}
|