filament create&edit redirect

This commit is contained in:
xiaomlove
2022-12-01 00:45:22 +08:00
parent 058bb995c1
commit fe6564dd7e
19 changed files with 63 additions and 111 deletions
+8
View File
@@ -4,6 +4,7 @@ namespace Nexus\Install;
use App\Models\Setting;
use App\Models\User;
use App\Repositories\SearchBoxRepository;
use App\Repositories\UserRepository;
use Illuminate\Support\Str;
use Nexus\Database\NexusDB;
@@ -711,4 +712,11 @@ class Install
return $this->steps[$step - 1] ?? '';
}
public function migrateSearchBoxModeRelated()
{
$this->doLog("[migrateSearchBoxModeRelated]");
$searchBoxRep = new SearchBoxRepository();
$searchBoxRep->migrateToModeRelated();
}
}