updating user and language models

This commit is contained in:
2022-12-07 11:42:36 -07:00
parent fdba9f1ae7
commit 64d4d326b7
4 changed files with 9 additions and 7 deletions

View File

@ -7,18 +7,20 @@ use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Prunable;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\SoftDeletes;
class Language extends Model
{
use HasFactory;
use Prunable;
use SoftDeletes;
/** @var string */
protected $table = 'languages';
/** @var array<int,string> */
protected $fillable = [
'locale',
'locale_name',
'iso_code',
'name',
'localized_name',