����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 52.14.232.226 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/./gltevjme/bofirm.gltechlimited.com/vendor/devianl2/laravel-scorm/src/Model/ |
Upload File : |
<?php namespace Peopleaps\Scorm\Model; use Illuminate\Database\Eloquent\Model; /** * @property int $id * @property string $uuid * @property string $title * @property string $version * @property string $entryUrl */ class ScormModel extends Model { /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'id', 'resource_id', 'resource_type', 'title', 'origin_file', 'version', 'ratio', 'uuid', 'identifier', 'entry_url', 'created_at', 'updated_at', ]; /** * Get the parent resource model (user or post). */ public function resourceable() { return $this->morphTo(__FUNCTION__, 'resource_type', 'resource_id'); } public function getTable() { return config('scorm.table_names.scorm_table', parent::getTable()); } public function scos() { return $this->hasMany(ScormScoModel::class, 'scorm_id', 'id'); } }