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

14 行
334 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 = ['email', 'password', 'father_id', 'title', 'text', 'memo', 'pdf'];
protected $hidden = ['password'];
}