芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/database/seeders/FrontSeeder.php
first(); // Manually call observer event('eloquent.saved: App\Models\LanguageSetting', $language); $this->frontDetailsInsert(); $command = new FixUpgradeCompanyCommand(); $command->languageFixFront(); } private function frontDetailsInsert() { $frontDetails = new FrontDetail(); $frontDetails->primary_color = '#453130'; $frontDetails->get_started_show = 'yes'; $frontDetails->sign_in_show = 'yes'; $frontDetails->address = '4868 Ben Street Lansing Michigan 48906'; $frontDetails->phone = '+91 1234567890'; $frontDetails->email = 'company@example.com'; $frontDetails->locale = 'en'; $frontDetails->social_links = json_encode([ ['name' => 'facebook', 'link' => 'https://www.facebook.com/worksuiteapp'], ['name' => 'twitter', 'link' => 'https://twitter.com/worksuiteapp'], ['name' => 'instagram', 'link' => 'https://www.instagram.com/worksuiteapp/'], ['name' => 'dribbble', 'link' => 'https://dribbble.com'], ['name' => 'youtube', 'link' => 'https://www.youtube.com/channel/UCoqD9VJ4E1UHz3nE_noyKng'] ]); $frontDetails->save(); } }