????

Your IP : 3.16.112.220


Current Path : /home/thenclexdoctor.com/public_html/app/Models/
Upload File :
Current File : /home/thenclexdoctor.com/public_html/app/Models/WebinarAssignmentAttachment.php

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class WebinarAssignmentAttachment extends Model
{
    protected $table = 'webinar_assignment_attachments';
    public $timestamps = false;
    protected $dateFormat = 'U';
    protected $guarded = ['id'];

    public function getDownloadUrl()
    {
        return "/course/assignment/{$this->assignment_id}/download/{$this->id}/attach";
    }

    public function getFileSize()
    {
        $size = null;

        $file_path = public_path($this->attach);

        if (file_exists($file_path)) {
            $size = formatSizeUnits(filesize($file_path));
        }

        return $size;
    }
}

Page not found | The NCLEX Doctor

Page not found!

Sorry, this page is not available...