%PDF- %PDF-
Direktori : /var/www/html/workeasy-api/app/Models/ |
Current File : /var/www/html/workeasy-api/app/Models/Feedback.php |
<?php namespace Workeasy\Models; class Feedback extends BaseModel { protected $fillable = [ 'rating', 'description', ]; protected $guarded = [ 'interview_id', ]; public function interview() { return $this->belongsTo(Interview::class); } }