Edit File: HasInertia.php
<?php namespace Spatie\LaravelPackageTools\Concerns\Package; trait HasInertia { public bool $hasInertiaComponents = false; public function hasInertiaComponents(?string $namespace = null): static { $this->hasInertiaComponents = true; $this->viewNamespace = $namespace; return $this; } }
Back to File Manager