Edit File: TranslatableServiceProvider.php
<?php namespace Spatie\Translatable; use Illuminate\Support\ServiceProvider; class TranslatableServiceProvider extends ServiceProvider { public function boot() { $this->publishes([ __DIR__.'/../config/translatable.php' => config_path('translatable.php'), ], 'config'); } public function register() { $this->mergeConfigFrom(__DIR__.'/../config/translatable.php', 'translatable'); } }
Back to File Manager