add login by passkey

This commit is contained in:
xiaomlove
2022-07-06 13:10:22 +08:00
parent 29fa81f7e0
commit 889413e2a8
8 changed files with 34 additions and 8 deletions

View File

@@ -12,8 +12,6 @@ use Illuminate\Support\Facades\DB;
class DashboardRepository extends BaseRepository
{
const FILAMENT_VERSION = '2.13.15';
public function getSystemInfo(): array
{
$result = [];
@@ -39,7 +37,7 @@ class DashboardRepository extends BaseRepository
$result[$name] = [
'name' => $name,
'text' => nexus_trans("dashboard.system_info.$name"),
'value' => self::FILAMENT_VERSION,
'value' => \Composer\InstalledVersions::getPrettyVersion('filament/filament'),
];
$name = 'php_version';
$result[$name] = [