UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_75220104be0c
/
app
/
Models
/
Courses
/
Resources
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
SlideShareLesson.php
<?php namespace EstudioLMS\Models\Courses\Resources; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; /** * EstudioLMS\Models\Courses\Resources\SlideShareLesson * * @property int $id * @property int $resource_type_id * @property int $user_id * @property string $title * @property string $slide_share_key * @property string $description * @property string $slug * @property \Carbon\Carbon $created_at * @property \Carbon\Carbon $updated_at * @property string $deleted_at * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Courses\Resources\SlideShareLesson whereCreatedAt($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Courses\Resources\SlideShareLesson whereDeletedAt($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Courses\Resources\SlideShareLesson whereDescription($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Courses\Resources\SlideShareLesson whereId($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Courses\Resources\SlideShareLesson whereResourceTypeId($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Courses\Resources\SlideShareLesson whereSlideShareKey($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Courses\Resources\SlideShareLesson whereSlug($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Courses\Resources\SlideShareLesson whereTitle($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Courses\Resources\SlideShareLesson whereUpdatedAt($value) * @method static \Illuminate\Database\Query\Builder|\EstudioLMS\Models\Courses\Resources\SlideShareLesson whereUserId($value) * @mixin \Eloquent */ class SlideShareLesson extends Model { use SoftDeletes; protected $fillable = [ 'resource_type_id', 'user_id', 'title', 'slide_share_key', 'description', 'slug' ]; }
Copyright © 2026 - UnknownSec