Feat: Upgrading Lunar to 1.5

This commit is contained in:
2026-08-31 13:16:13 +03:00
parent 661e8b9a96
commit d873cb4931
42 changed files with 229 additions and 173 deletions
@@ -2,18 +2,18 @@
namespace Modules\Core\Auth\Extensions;
use Filament\Forms\Form;
use Filament\Schemas\Schema;
use Lunar\Admin\Support\Extending\ResourceExtension;
class StaffResourceExtension extends ResourceExtension
{
public function extendForm(Form $form): Form
public function extendForm(Schema $form): Schema
{
$schema = collect($form->getComponents())
->reject(fn ($component) => method_exists($component, 'getName') && $component->getName() == 'password')
->values()
->all();
return $form->schema($schema);
return $form->components($schema);
}
}
+2 -2
View File
@@ -15,7 +15,7 @@ class Login extends SimplePage
{
use WithRateLimiting;
protected static string $view = 'core::auth.filament.pages.login';
protected string $view = 'core::auth.filament.pages.login';
public ?string $email = '';
public ?string $otp = '';
@@ -78,7 +78,7 @@ class Login extends SimplePage
]);
}
if ($staff instanceof FilamentUser && !$staff->canAccessPanel(Filament::getCurrentPanel())) {
if ($staff instanceof FilamentUser && !$staff->canAccessPanel(Filament::getCurrentOrDefaultPanel())) {
throw ValidationException::withMessages([
'email' => 'You do not have access to this panel.',
]);