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

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

2021-08-13 15:50:47 +09:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Meeting extends Model
{
use HasFactory;
2021-11-10 22:13:09 +09:00
protected $fillable = ['father_id', 'title', 'text', 'memo', 'pdf'];
2021-08-13 15:50:47 +09:00
}