14 行
355 B
PHP
14 行
355 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
|
|
class Child extends Authenticatable
|
|
{
|
|
use HasFactory;
|
|
protected $fillable = ['identity', 'tel', 'last_name', 'first_name', 'email', 'password', 'image', 'company'];
|
|
protected $hidden = ['password'];
|
|
}
|