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