芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/store.kwesioben.com/app/Model/Attribute.php
morphMany(Translation::class, 'translationable'); } public function getNameAttribute($name) { if (strpos(url()->current(), '/admin') || strpos(url()->current(), '/seller')) { return $name; } return $this->translations[0]->value??$name; } protected static function boot() { parent::boot(); static::addGlobalScope('translate', function (Builder $builder) { $builder->with(['translations' => function ($query) { if (strpos(url()->current(), '/api')){ return $query->where('locale', App::getLocale()); }else{ return $query->where('locale', Helpers::default_lang()); } }]); }); } }