UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_fac93aa56cd7
/
app
/
Models
/
Config
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
Gateway.php
<?php namespace EstudioLMS\Models\Config; use EstudioLMS\Scopes\GatewayScope; use Illuminate\Database\Eloquent\Model; /** * EstudioLMS\Models\Config\Gateway * * @property int $id * @property string $title * @property string $lang_title * @property string $route * @property bool $show * @property \Carbon\Carbon $created_at * @property \Carbon\Carbon $updated_at * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Config\Gateway whereCreatedAt($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Config\Gateway whereId($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Config\Gateway whereLangTitle($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Config\Gateway whereRoute($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Config\Gateway whereShow($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Config\Gateway whereTitle($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Config\Gateway whereUpdatedAt($value) * @mixin \Eloquent */ class Gateway extends Model { protected $fillable = [ 'title', 'lang_title', 'route', 'installments', 'show' ]; protected static function boot() { parent::boot(); // TODO: Change the autogenerated stub static::addGlobalScope(new GatewayScope); } }
Copyright © 2026 - UnknownSec