Pritbor
Pritbor
FFilament
Created by Pritbor on 3/1/2025 in #❓┊help
canAccessPanel() Not being called
Error was due to using the Custom authentication middleware in all my panels. I had commented out Authenticate::class from all auth middleware. Filament native authenticate middleware calls canAccessPanel() method directly. Whereas I implemented CustomAuthenticate::class and removed filament one which caused and issue. Fix was to include this below peice of code in my CustomAuthentciate.
$panel = Filament::getCurrentPanel();

abort_if(
$user instanceof FilamentUser ?
(! $user->canAccessPanel($panel)) :
(config('app.env') !== 'local'),
403,
);
$panel = Filament::getCurrentPanel();

abort_if(
$user instanceof FilamentUser ?
(! $user->canAccessPanel($panel)) :
(config('app.env') !== 'local'),
403,
);
13 replies
FFilament
Created by Pritbor on 3/1/2025 in #❓┊help
canAccessPanel() Not being called
Thsnks I got the fix. I implemented
$panel = Filament::getCurrentPanel();

abort_if(
$user instanceof FilamentUser ?
(! $user->canAccessPanel($panel)) :
(config('app.env') !== 'local'),
403,
);
$panel = Filament::getCurrentPanel();

abort_if(
$user instanceof FilamentUser ?
(! $user->canAccessPanel($panel)) :
(config('app.env') !== 'local'),
403,
);
in my CustomAuthenticate middleware and it did what i needed.
13 replies
FFilament
Created by Pritbor on 3/1/2025 in #❓┊help
canAccessPanel() Not being called
Yes I checked. CanAccessPanel is now called when i commented out my Customauthenticate::class and reused filament Authenticate::class. not sure how to fix this.
13 replies
FFilament
Created by Pritbor on 3/1/2025 in #❓┊help
canAccessPanel() Not being called
I am using like
->authMiddleware([
// Authenticate::class,
CustomAuthenticate::class,
EnsureUserHasVerifiedEmailMobile::class,
], isPersistent: true)
->authMiddleware([
// Authenticate::class,
CustomAuthenticate::class,
EnsureUserHasVerifiedEmailMobile::class,
], isPersistent: true)
in all panels.
13 replies
FFilament
Created by Pritbor on 3/1/2025 in #❓┊help
canAccessPanel() Not being called
Hi @Dennis Koch I have custom authenticate middleware. Can this be an issue? Unable to figureout issue.
use Illuminate\Auth\Middleware\Authenticate as Middleware;




class CustomAuthenticate extends Middleware
{

public function handle($request, Closure $next, ...$guards)
{

if (!Auth::check()) {
// Save the intended URL in the session
session(['url.intended' => $request->url()]); // Save intended URL

session()->flash('open_authentication_modal', true);
// Handle AJAX (JSON) request case
if ($request->expectsJson()) {
return response()->json(['message' => 'Unauthorized.'], 401);
}

// Return null to allow the modal to open without redirecting
return redirect('/'); // Redirect to the home page
}

return $next($request); // Continue processing the request
}
}
use Illuminate\Auth\Middleware\Authenticate as Middleware;




class CustomAuthenticate extends Middleware
{

public function handle($request, Closure $next, ...$guards)
{

if (!Auth::check()) {
// Save the intended URL in the session
session(['url.intended' => $request->url()]); // Save intended URL

session()->flash('open_authentication_modal', true);
// Handle AJAX (JSON) request case
if ($request->expectsJson()) {
return response()->json(['message' => 'Unauthorized.'], 401);
}

// Return null to allow the modal to open without redirecting
return redirect('/'); // Redirect to the home page
}

return $next($request); // Continue processing the request
}
}
13 replies
FFilament
Created by Pritbor on 3/1/2025 in #❓┊help
canAccessPanel() Not being called
Hi @Dennis Koch . I tested in both local and production.
13 replies
FFilament
Created by Pritbor on 12/3/2024 in #❓┊help
Problem creating Custom Field rendering Livewire
5 replies
FFilament
Created by Pritbor on 12/6/2024 in #❓┊help
Custom Field passing dynamic data challenge
Here is how issue is resolved. In form I used
Select::make('brand_id')
->relationship(name: 'brand', titleAttribute: 'name')
->searchable()
->preload()
->optionsLimit(5)
->required()
->live()
->afterStateUpdated(function (Set $set, $state) {
$set('business_category_id', null);
}),


SelectItemModelBusinessCategory::make('business_category_id')
->label('Business Category')
->modelId(function ( Get $get): int {
return $get('brand_id');
}),
Select::make('brand_id')
->relationship(name: 'brand', titleAttribute: 'name')
->searchable()
->preload()
->optionsLimit(5)
->required()
->live()
->afterStateUpdated(function (Set $set, $state) {
$set('business_category_id', null);
}),


SelectItemModelBusinessCategory::make('business_category_id')
->label('Business Category')
->modelId(function ( Get $get): int {
return $get('brand_id');
}),
And in Custom Field class I used
class SelectItemModelBusinessCategory extends Field
{
protected string $view = 'forms.components.select-item-model-business-category';

// protected ?int $modelId = null;

protected int | Closure | null $modelId = null;

/**
* Pass modelId to the view
*/
protected function setUp(): void
{
parent::setUp();

}

public function modelId(int | Closure | null $modelId): static
{
$this->modelId = $modelId;

return $this;
}

public function getModelId(): ?int
{

return $this->evaluate($this->modelId);
}

}
class SelectItemModelBusinessCategory extends Field
{
protected string $view = 'forms.components.select-item-model-business-category';

// protected ?int $modelId = null;

protected int | Closure | null $modelId = null;

/**
* Pass modelId to the view
*/
protected function setUp(): void
{
parent::setUp();

}

public function modelId(int | Closure | null $modelId): static
{
$this->modelId = $modelId;

return $this;
}

public function getModelId(): ?int
{

return $this->evaluate($this->modelId);
}

}
Finally i rendered my livewire in field view class like
<livewire:filament.categories.item-model-business-category-selection
wire:model.live="{{ $getStatePath() }}"
:modelId="$getModelId()"
:key="'item-model-business-category-' . $getModelId()" />
<livewire:filament.categories.item-model-business-category-selection
wire:model.live="{{ $getStatePath() }}"
:modelId="$getModelId()"
:key="'item-model-business-category-' . $getModelId()" />
5 replies
FFilament
Created by Pritbor on 12/6/2024 in #❓┊help
Custom Field passing dynamic data challenge
BTW my livewire is perfect, If $getMeta('modelId') is returning valid value then livewire works as expected else.
5 replies
FFilament
Created by Pritbor on 12/3/2024 in #❓┊help
Problem creating Custom Field rendering Livewire
@LeandroFerreira issue is straight forward..... I am trying to create a custom field. But I would like to bind the data used in the Livewire with the field name. wire:model="{{ $getStatePath() }}" used in the livewire rendering is giving the mentioned error. Object of class Closure could not be converted to string.
5 replies
FFilament
Created by Pritbor on 11/18/2024 in #❓┊help
Don't want Create Form to show if No Subscription
I created custom create action listpage.
protected function getHeaderActions(): array
{
return [
Actions\Action::make('create')
->label('Create Job Seeking Post')
->action(function () {
// This action will be called when the user clicks "Create"
// It will first check for subscription status.
$this->checkSubscriptionAndRedirect();
}),
];
}

protected function checkSubscriptionAndRedirect()
{
$subscriptionService = app(SubscriptionService::class); // Get your subscription service

if (! $subscriptionService->canPerformAction(Auth::user()->member, ModelType::JOB_SEEKING_POST, 'create')) {
Notification::make()
->warning()
->title('You don\'t have an active subscription!')
->body('Choose a plan to continue.')
->persistent()
->actions([
Action::make('subscribe')
->button()
->url(route('subscribe'), shouldOpenInNewTab: true),
])
->send();

return; // Stop further execution
}

// If subscribed, redirect to create page
return redirect()->route('filament.user.resources.job-seeking-posts.create');
}
protected function getHeaderActions(): array
{
return [
Actions\Action::make('create')
->label('Create Job Seeking Post')
->action(function () {
// This action will be called when the user clicks "Create"
// It will first check for subscription status.
$this->checkSubscriptionAndRedirect();
}),
];
}

protected function checkSubscriptionAndRedirect()
{
$subscriptionService = app(SubscriptionService::class); // Get your subscription service

if (! $subscriptionService->canPerformAction(Auth::user()->member, ModelType::JOB_SEEKING_POST, 'create')) {
Notification::make()
->warning()
->title('You don\'t have an active subscription!')
->body('Choose a plan to continue.')
->persistent()
->actions([
Action::make('subscribe')
->button()
->url(route('subscribe'), shouldOpenInNewTab: true),
])
->send();

return; // Stop further execution
}

// If subscribed, redirect to create page
return redirect()->route('filament.user.resources.job-seeking-posts.create');
}
4 replies
FFilament
Created by Pritbor on 11/14/2024 in #❓┊help
UserMenuItem with User Tenant Switch Option
thanks alot. my bad. yes i am able to achieve desired functionality using render hooks.
5 replies
FFilament
Created by Pints on 10/31/2024 in #❓┊help
Filament Shield: 1 Same Model in 2 Filament Resource
Sheild has a way to have custom permissions for each resource. So maybe you can create permissions with slghtly different names for each resource and then select accordingly. Further in your Model policy file develope the conditional logic accordingly. https://filamentphp.com/plugins/bezhansalleh-shield#custom-permissions
4 replies
FFilament
Created by Nicole on 10/18/2024 in #❓┊help
Filament Teams with Some Multi-Tenancy Features
You need to basically create three panels. First panel is could be default panel (admin panel). Second you can create UserPanel and third is your Tenant panel. Try to setup multitenancy between User panel and Tenant panel. Use roles and permission to make clear separation between users with multi-tenancy. And users who will be respobsible for managing platform. Only they can access this Admin panel provider. Ofcourse you can setup rolses and permissions within this group of users.
9 replies
FFilament
Created by RawaN on 8/29/2024 in #❓┊help
How to use filament component in front-end of website?
@FilamentStyles @FilamentScripts is just a wrapper around livewireStyles and livewireScripts with additional filament features. Ensure you configure talwindConfig correctly.
7 replies
FFilament
Created by RawaN on 8/29/2024 in #❓┊help
How to use filament component in front-end of website?
You should use only @FilamentStyles @FilamentScripts I am using it. Further, to use any blade component as given in Filament blade, you can just use as per documentation. But to you forms, table, actions and more you would need livewire or any filament custom pages and follow documentation of using forms, table, action etc in livewire.
7 replies
FFilament
Created by Pritbor on 8/25/2024 in #❓┊help
MorphToSelect is too slow
I realised using Preload() is the problem. I removed and I see significant jump. But still i was wondering if i am using preload() with ->optionsLimit(5), then there should not be an issue but i see my page just hangs when i try typing .
6 replies
FFilament
Created by Pritbor on 8/25/2024 in #❓┊help
MorphToSelect is too slow
yes i have name field set as index in both Company and User model.
6 replies
FFilament
Created by Pritbor on 8/22/2024 in #❓┊help
Table relationship sort error.
Thanks @toeknee . You mean have $name = 'member.memberable.name' in table and use $name in column. I tried this and it gives same error. But then i wrote callback query inside sortable()
4 replies
FFilament
Created by Pritbor on 8/6/2024 in #❓┊help
Attach action error in RelationManager
Hi @Dennis Koch . i tried
public function scopeWithNoChildren(Builder $query): Builder
{
return $query->whereDoesntHave('children');
}

// Method to get categories with no children
public static function businessCategories(): Builder
{
return self::withNoChildren();
}
public function scopeWithNoChildren(Builder $query): Builder
{
return $query->whereDoesntHave('children');
}

// Method to get categories with no children
public static function businessCategories(): Builder
{
return self::withNoChildren();
}
But i still get error Call to undefined method Illuminate\Database\Eloquent\Builder::getRelated(). I am writing custom Attach action now.
7 replies