33 lines
614 B
PHP
33 lines
614 B
PHP
<?php namespace App\Models;
|
|
/**
|
|
* @copyright (c) 2025 Notsoweb Software (https://notsoweb.com) - All Rights Reserved
|
|
*/
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Descripción
|
|
*
|
|
* @author Moisés Cortés C. <moises.cortes@notsoweb.com>
|
|
*
|
|
* @version 1.0.0
|
|
*/
|
|
class ApkLog extends Model
|
|
{
|
|
protected $fillable = [
|
|
'apk_version_id',
|
|
'downloaded_by',
|
|
];
|
|
|
|
public function apkVersion()
|
|
{
|
|
return $this->belongsTo(ApkVersion::class, 'apk_version_id');
|
|
}
|
|
|
|
public function downloader()
|
|
{
|
|
return $this->belongsTo(User::class, 'downloaded_by');
|
|
}
|
|
}
|