Edit File: ProcessViews.php
<?php namespace Spatie\LaravelPackageTools\Concerns\PackageServiceProvider; trait ProcessViews { protected function bootPackageViews(): self { if (! $this->package->hasViews) { return $this; } $namespace = $this->package->viewNamespace; $vendorViews = $this->package->basePath('/../resources/views'); $appViews = base_path("resources/views/vendor/{$this->packageView($namespace)}"); $this->loadViewsFrom($vendorViews, $this->package->viewNamespace()); if ($this->app->runningInConsole()) { $this->publishes([$vendorViews => $appViews], "{$this->packageView($namespace)}-views"); } return $this; } }
Back