관리-도구
편집 파일: ContactInfo.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class ContactInfo extends Model { protected $table = 'contactinfo'; protected $fillable = [ 'type', 'name', 'image', 'number', ]; }