edms2023/app/Language.php

20 lines
304 B
PHP
Raw Permalink Normal View History

2023-09-14 20:59:46 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Language extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'languages';
protected $fillable = [
'name', 'short_name', 'serial_no', 'status',
];
}