Game-Jaming/Backend/Models/KeyWord.php

19 lines
279 B
PHP
Raw Permalink Normal View History

<?php
2021-04-19 07:15:15 +00:00
2021-03-03 11:56:14 +00:00
namespace Backend\Models;
2021-04-19 07:15:15 +00:00
use Illuminate\Database\Eloquent\Model as Eloquent;
2021-04-19 07:15:15 +00:00
class KeyWord extends Eloquent
{
protected $fillable = [
2021-03-08 12:09:50 +00:00
'key_word'
];
2021-03-03 11:48:49 +00:00
2021-04-19 07:15:15 +00:00
public function registration()
{
return $this->belongsTo(Registration::class);
2021-03-03 11:48:49 +00:00
}
}