관리-도구
편집 파일: Picture.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Picture extends Model { use SoftDeletes; /** * The attributes that should be mutated to dates. * * @var array */ protected $dates = ['deleted_at']; protected $table = 'picture'; protected $fillable = [ 'picture', 'user_id', 'ip', 'showhide', 'type' ]; public static $showhide = ["show" => "show", "hide" => "hide", ]; }