13 lines
221 B
PHP
13 lines
221 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class TlaSuggestion extends Model
|
|
{
|
|
protected $table = 'tla_suggestion';
|
|
|
|
protected $fillable = ['acronym', 'hint', 'language', 'context'];
|
|
}
|