芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/portpulselogistics.com/Modules/Localization/Entities/Translation.php
'boolean' ]; public $translatable = ['phrase']; // Columns to translate public function getNameAttribute() { $word_key = $this->key; $key_in_module = strpos($word_key, '::') != -1 ? true : false; $index_cuting = $key_in_module ? 1 : 0; $word_key_arr = array_slice(explode('.', $word_key), $index_cuting); $word_key_sluged = collect($word_key_arr)->map(function ($value) { return Str::replace('-', ' ', Str::slug($value)); })->implode(' - '); $name = Str::title($word_key_sluged); return $name; } }