Nobody
Nobody
FFilament
Created by Nobody on 12/16/2024 in #❓┊help
Is It Possible to Use a Single Login URL for All Roles in Filament Shield?
the problem is in public function canAccessPanel(Panel $panel): bool
28 replies
FFilament
Created by Nobody on 12/16/2024 in #❓┊help
Is It Possible to Use a Single Login URL for All Roles in Filament Shield?
Thank you very much for your reply. I have found the problem.
28 replies
FFilament
Created by Nobody on 12/16/2024 in #❓┊help
Is It Possible to Use a Single Login URL for All Roles in Filament Shield?
I have made sure the email and password to login are correct Is this because I am using filament-shield? I use filament shield to ensure that the courier account cannot access the admin panel.
28 replies
FFilament
Created by Nobody on 12/16/2024 in #❓┊help
Is It Possible to Use a Single Login URL for All Roles in Filament Shield?
when I am a courier I try to login with the admin/login url It error like this These credentials do not match our records. but when the courier account tries to login with the courier/login url the courier account can enter the courier panel
28 replies
FFilament
Created by Nobody on 12/16/2024 in #❓┊help
Is It Possible to Use a Single Login URL for All Roles in Filament Shield?
i am using laravel 11
28 replies
FFilament
Created by Nobody on 12/16/2024 in #❓┊help
Is It Possible to Use a Single Login URL for All Roles in Filament Shield?
Based on the tutorial you provided, we only need to create a LoginResponse and register it in the AppServiceProvider, right?
class AppServiceProvider extends ServiceProvider
{
public $singletons = [
\Filament\Http\Responses\Auth\Contracts\LoginResponse::class => \App\Http\Responses\LoginResponse::class,
];
/**
* Register any application services.
*/
public function register(): void
{

}
}
class AppServiceProvider extends ServiceProvider
{
public $singletons = [
\Filament\Http\Responses\Auth\Contracts\LoginResponse::class => \App\Http\Responses\LoginResponse::class,
];
/**
* Register any application services.
*/
public function register(): void
{

}
}
I suspect this Singleton has not been registered properly, why I think so because, when the admin user logs out, he does not receive the Route [login] not defined error message. according to the tutorial
28 replies
FFilament
Created by Nobody on 12/16/2024 in #❓┊help
Is It Possible to Use a Single Login URL for All Roles in Filament Shield?
No description
28 replies
FFilament
Created by Nobody on 12/16/2024 in #❓┊help
Is It Possible to Use a Single Login URL for All Roles in Filament Shield?
Thank you for the information
28 replies
FFilament
Created by Nobody on 10/21/2024 in #❓┊help
Why when I deploy Filament on the server the data dropdown is empty?
I added code like this in AppServiceProviders.php
if (config('app.env') !== 'local') { // pastikan hanya di production/staging
URL::forceScheme('https');
}
if (config('app.env') !== 'local') { // pastikan hanya di production/staging
URL::forceScheme('https');
}
and it works thank you very much
16 replies
FFilament
Created by Nobody on 10/21/2024 in #❓┊help
Why when I deploy Filament on the server the data dropdown is empty?
No description
16 replies
FFilament
Created by Nobody on 10/21/2024 in #❓┊help
Why when I deploy Filament on the server the data dropdown is empty?
so why does it get an error here? do you have a solution for this
16 replies
FFilament
Created by Nobody on 10/21/2024 in #❓┊help
Why when I deploy Filament on the server the data dropdown is empty?
No description
16 replies
FFilament
Created by Nobody on 10/21/2024 in #❓┊help
Why when I deploy Filament on the server the data dropdown is empty?
No description
16 replies
FFilament
Created by Nobody on 9/23/2024 in #❓┊help
I have created a new resource, in the partner panel but it does not appear in the display
Solved✅
3 replies
FFilament
Created by Nobody on 9/9/2024 in #❓┊help
How to set the DateTimePicker in the minutes section
thanks for the information
9 replies
FFilament
Created by Nobody on 9/9/2024 in #❓┊help
How to set the DateTimePicker in the minutes section
No description
9 replies
FFilament
Created by Nobody on 9/9/2024 in #❓┊help
How to set the DateTimePicker in the minutes section
I have used ->minutesStep(30) but in the minutes section all the numbers still appear, I only want to display in the minutes section only minutes 30 and 00. DateTimePicker::make('pickupBefore') ->required() ->minutesStep(30) ->seconds(false) ->minDate(now()->toDateTimeLocalString(unitPrecision: 'minute')) ->label('Pickup Befores')
9 replies
FFilament
Created by Nobody on 8/29/2024 in #❓┊help
Infolist has no [record()] or [state()] set.
No description
3 replies
FFilament
Created by Nobody on 8/25/2024 in #❓┊help
Custom Layout in Filament V3
okay thanks for your suggestion. i will try it later
5 replies
FFilament
Created by Nobody on 8/25/2024 in #❓┊help
Custom Layout in Filament V3
In my case, I want to make the display look like the picture, is it better to use custom pages or custom layouts?
5 replies