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

13 行
249 B
PHP
Raw 通常表示 履歴

2021-08-13 13:17:12 +09:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
2021-08-13 14:44:08 +09:00
class Child extends Model
2021-08-13 13:17:12 +09:00
{
use HasFactory;
2021-10-01 12:46:49 +09:00
protected $fillable = ['father_id', 'title', 'text', 'memo', 'pdf'];
2021-08-13 13:17:12 +09:00
}