|ShopItem newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|ShopItem newQuery() * @method static \Illuminate\Database\Eloquent\Builder|ShopItem query() * @method static \Illuminate\Database\Eloquent\Builder|ShopItem whereCount($value) * @method static \Illuminate\Database\Eloquent\Builder|ShopItem whereItemVnum($value) * @method static \Illuminate\Database\Eloquent\Builder|ShopItem whereShopVnum($value) * @mixin \Eloquent */ class ShopItem extends Model { /** * Indicates if the model should be timestamped. * * @var bool */ public $timestamps = false; /** * The table associated with the model. * * @var string */ protected $table = 'shop_item'; /** * The primary key for the model. * * @var string */ protected $primaryKey = ''; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ ]; /** * The attributes that should be hidden for serialization. * * @var array */ protected $hidden = [ ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ ]; }