Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
invoiceshelf
/
modules
/
src
/
Routing
:
AssetPublisher.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Nwidart\Modules\Publishing; use Nwidart\Modules\Support\Config\GenerateConfigReader; class AssetPublisher extends Publisher { /** * Determine whether the result message will shown in the console. * * @var bool */ protected $showMessage = false; /** * Get destination path. * * @return string */ public function getDestinationPath() { return $this->repository->assetPath($this->module->getLowerName()); } /** * Get source path. * * @return string */ public function getSourcePath() { return $this->getModule()->getExtraPath( GenerateConfigReader::read('assets')->getPath() ); } }