このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
kikikan/backend/app/Models/Father.php

14 行
328 B
PHP
Raw 通常表示 履歴

2021-08-12 15:56:52 +09:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
2021-08-12 15:56:52 +09:00
class Father extends Authenticatable
2021-08-12 15:56:52 +09:00
{
use HasFactory;
2021-10-21 11:07:16 +09:00
protected $fillable = ['email', 'password', 'company', 'image', 'profile', 'tel'];
protected $hidden = ['password'];
2021-08-12 15:56:52 +09:00
}