芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/portpulselogistics.com/app/Console/Commands/AppInstall.php
"Database\Seeders\UsersSeeder" ]); // Artisan::call('database:import'); // Create languages Artisan::call('languages:seed'); // Create translations Artisan::call('translations:sync'); // Create permissions Artisan::call('permissions:sync'); // Refresh cache Artisan::call('refresh:cache'); // Seed all modules Artisan::call('module:seed'); $user_demo = User::find(1); if (!$user_demo) { $this->newLine(); $this->info('App installed successfully.'); $this->newLine(); $this->line('User Login ->'); $this->line('Email: admin@admin.com'); $this->line('Password: 123456'); $this->newLine(); $this->line('Url: ' . url(env('PREFIX_ADMIN', 'admin'))); } else { $this->newLine(); $this->error('There was an error installing the application.'); } } }