UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_a0b9623cd445
/
app
/
Models
/
Environment
/
Gamification
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
BadgeRule.php
<?php namespace EstudioLMS\Models\Environment\Gamification; use Illuminate\Database\Eloquent\Model; class BadgeRule extends Model { protected $fillable = [ 'rule_type_id', 'badge_id', 'course_id', 'title', 'value', 'published' ]; public function badge() { return $this->hasOne('EstudioLMS\Models\Environment\Gamification\Badge', 'id', 'badge_id'); } public function ruleType() { return $this->hasOne('EstudioLMS\Models\Environment\Gamification\RuleType', 'id', 'rule_type_id'); } }
Copyright © 2026 - UnknownSec