관리-도구
편집 파일: Story.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Story extends Model { protected $fillable = [ 'title', 'description', ]; protected $table = 'story'; }