diff --git a/src/Datatables/src/Datatable.php b/src/Datatables/src/Datatable.php index f759d20..68d567c 100644 --- a/src/Datatables/src/Datatable.php +++ b/src/Datatables/src/Datatable.php @@ -177,16 +177,6 @@ public function actions(): array return []; } - /** - * Get the default action group for the datatable. - * - * @deprecated Use ActionGroup::auto() instead. - */ - public static function defaultActionGroup(array $actions, ?string $label = null, ?string $icon = null): array - { - return ActionGroup::auto($actions, $label, $icon); - } - /** * Get the bulk actions for the datatable. */ diff --git a/tests/Unit/Core/Models/SettingTest.php b/tests/Unit/Core/Models/SettingTest.php index 87a4e0e..a10cc4b 100644 --- a/tests/Unit/Core/Models/SettingTest.php +++ b/tests/Unit/Core/Models/SettingTest.php @@ -27,7 +27,7 @@ it('returns the configured default for a key including nested dot paths', function () { expect(Setting::default('theme.primary'))->toBe('blue') - ->and(Setting::default('app_name.en'))->toBe('Dashboard') + ->and(Setting::default('app_name.en'))->toBe('Nexus') ->and(Setting::default('missing'))->toBeNull(); });