관리-도구
편집 파일: Websit.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Websit extends Model { use HasFactory; protected $table = 'websit'; protected $primaryKey = 'w_id'; protected $fillable = [ 'm_name', 'm_key', 'm_discription', 'm_titile', 'm_logo', 'm_favicon', 'm_all', ]; }