first commit

This commit is contained in:
Sampanna Rimal
2024-08-27 17:48:06 +05:45
commit 53c0140f58
10839 changed files with 1125847 additions and 0 deletions

View File

@ -0,0 +1,37 @@
<?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()
);
}
}