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; } }