Jamie Cee
Jamie Cee
FFilament
Created by Jamie Cee on 11/19/2024 in #❓┊help
table layout styling
No description
4 replies
FFilament
Created by Jamie Cee on 11/18/2024 in #❓┊help
illegal offset type in tests
No description
27 replies
FFilament
Created by Jamie Cee on 11/11/2024 in #❓┊help
spotlight ManageRelatedRecords
No description
3 replies
FFilament
Created by Jamie Cee on 11/8/2024 in #❓┊help
slow performance and 500 errors with large data
I've looked over older questions and just want to clarify if this is something to be optimized in v4? In my loadtest I have 20,000 users, and it returns a 500 error. And if I downset to around 15,000 users, the page will load but runs extremely slow. Is there anything available to optimize that I may be missing?
56 replies
FFilament
Created by Jamie Cee on 11/7/2024 in #❓┊help
Unable to interact with last record of table, or the pagination when using large amounts of data.
I say "large" but current only have 69 records in the table. I can interact with the actions on every other record, except the last record. And I am unable to change the value of 'perPage' either. Any ideas?
6 replies
FFilament
Created by Jamie Cee on 11/5/2024 in #❓┊help
action group icon
Is there anything out the box to change the icon from an action group, (a chevron instead of the dots). Before I go down the overriding of the views? I cant see anything in the docs regarding this
2 replies
FFilament
Created by Jamie Cee on 10/16/2024 in #❓┊help
Policies for ManageRelatedRecords only
So in my Model, I have a class that extends ManageRelatedRecords, and is for managing users under that model. I only want to allow the attaching and detaching under that Model, but still hiding access to users as a whole navigation, which I cant do, even when in the Manager class, I define the canViewAny method
3 replies
FFilament
Created by Jamie Cee on 10/16/2024 in #❓┊help
soft delete modify query using
When a resource table is setup to use modifyQueryUsing(). how can I make it still filter with the trashed() functionality from the filter section?
2 replies
FFilament
Created by Jamie Cee on 10/16/2024 in #❓┊help
MorphToMany Select Relationship
Im getting completely frazzled with MorphToMany setup in a select instance. I have a User that Morphs to Many Organisation and Product. Im trying to merge the items into a single Select, and I have it working, except when trying to edit a user, I cant get it to show the already existing records as already selected values. I found this function
->loadStateFromRelationshipsUsing(function (User $record) {
// Retrieve the organisation IDs managed by the user
$organisationIds = $record->morphedOrganisations()->pluck(
(new Organisation())->getQualifiedKeyName()
)->toArray();

// Retrieve the product IDs managed by the user
$productIds = $record->morphedProducts()->pluck(
(new Product())->getQualifiedKeyName()
)->toArray();

dd(array_merge($organisationIds, $productIds));

// Combine both arrays of IDs
return array_merge($organisationIds, $productIds);
})
->loadStateFromRelationshipsUsing(function (User $record) {
// Retrieve the organisation IDs managed by the user
$organisationIds = $record->morphedOrganisations()->pluck(
(new Organisation())->getQualifiedKeyName()
)->toArray();

// Retrieve the product IDs managed by the user
$productIds = $record->morphedProducts()->pluck(
(new Product())->getQualifiedKeyName()
)->toArray();

dd(array_merge($organisationIds, $productIds));

// Combine both arrays of IDs
return array_merge($organisationIds, $productIds);
})
I can get the array of ids, but im not sure what im missing at displaying them as the selected values
5 replies
FFilament
Created by Jamie Cee on 10/9/2024 in #❓┊help
deleteAny policy - prevent self deletion
When using the deleteAny policy to allow bulk deletion, how can I modify to prevent allowing the ability to bulk delete myself from the list
6 replies
FFilament
Created by Jamie Cee on 10/1/2024 in #❓┊help
Loading indicator on a custom action with alpineClickHandler
My action process is ran with alpinejs component rather than a submit action
public function securityKeyAction(): Action
{
$name = \App\Services\TwoFactorService::SECURITY_KEY_METHOD;
return Action::make("securitykey")
->label("Register new key")
->icon('heroicon-c-plus-circle')
->color('success')
->hidden(function () use ($name) {
return $this->config['methods'][$name]['enabled'] ? false : true;
})
->extraAttributes(['x-data' => 'registerPasskey', 'x-show' => 'browserSupportsWebAuthn()'])
->alpineClickHandler('register("' . Str::random(10) . '")');
}
public function securityKeyAction(): Action
{
$name = \App\Services\TwoFactorService::SECURITY_KEY_METHOD;
return Action::make("securitykey")
->label("Register new key")
->icon('heroicon-c-plus-circle')
->color('success')
->hidden(function () use ($name) {
return $this->config['methods'][$name]['enabled'] ? false : true;
})
->extraAttributes(['x-data' => 'registerPasskey', 'x-show' => 'browserSupportsWebAuthn()'])
->alpineClickHandler('register("' . Str::random(10) . '")');
}
But I want to display a loading indicator while it goes through the flow, but cant seem to find a way to show the indicator. The blade is rendering just with ```php {{$this->securityKeyAction}} rather than blade components for the button etc
6 replies
FFilament
Created by Jamie Cee on 9/24/2024 in #❓┊help
Edit Action unexpected character
I have a table with an edit action.
EditAction::make('edit')
->label('Rename')
->modalHeading('Rename Key')
->modalWidth('sm')
// ->form([
// Forms\Components\TextInput::make('name')
// ->label('Name')
// ->required()
// ->default(function ($record) {
// return $record->name;
// })
// ])
->action(function (array $data, $record) {
$record->update($data);
$this->service->sendNotification(
title: 'Successfully renamed key.',
success: true
);
}),
EditAction::make('edit')
->label('Rename')
->modalHeading('Rename Key')
->modalWidth('sm')
// ->form([
// Forms\Components\TextInput::make('name')
// ->label('Name')
// ->required()
// ->default(function ($record) {
// return $record->name;
// })
// ])
->action(function (array $data, $record) {
$record->update($data);
$this->service->sendNotification(
title: 'Successfully renamed key.',
success: true
);
}),
This opens the modal, but as soon as I uncomment the form, I get an error saying:
SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data
SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data
And my table:
return $table
->query(Passkey::where('user_id', $this->user->getKey()))
return $table
->query(Passkey::where('user_id', $this->user->getKey()))
7 replies
FFilament
Created by Jamie Cee on 9/23/2024 in #❓┊help
underscore action name
Is it possible to have underscores in an action name, as that seems to prevent my action from working and just refreshes the page? key_name for example
3 replies
FFilament
Created by Jamie Cee on 9/12/2024 in #❓┊help
Struggling to find how to trigger a loader
So I want to trigger a loader when I press a toggle button and the state is true. But I cant seem to find anywhere on what the target must be set. Calling a function name doesn't seem to be working, nor a variable name?
7 replies
FFilament
Created by Jamie Cee on 9/4/2024 in #❓┊help
Toggle Input afterStateUpdated not doing anything
I have my Toggle component and have ->afterStateUpdated just to dd currently, but when I press the toggle button, nothing is happening
7 replies
FFilament
Created by Jamie Cee on 9/3/2024 in #❓┊help
Preload options limit from relation page
I have a relation page, and when I go to attach my relation, its all searcahable, but how can I add a preload with 5 records?
class ManageOrganisationProducts extends ManageRelatedRecords
{
protected static string $resource = OrganisationResource::class;

protected static string $relationship = 'products';

protected static ?string $navigationIcon = 'heroicon-o-square-3-stack-3d';

public static function getNavigationLabel(): string
{
return 'Products';
}

public function form(Form $form): Form
{
return $form
->schema([
Forms\Components\Grid::make(1)
->schema([
Forms\Components\TextInput::make('name')
->required()
->maxLength(255),
Forms\Components\Toggle::make('enabled')
->required(),
]),
]);
}

public function table(Table $table): Table
{
return $table
->recordTitleAttribute('name')
->columns([
])
->filters([])
->headerActions([
Tables\Actions\AttachAction::make(),
])
->actions([
Tables\Actions\ViewAction::make(),
Tables\Actions\DetachAction::make(),
])
->bulkActions([
Tables\Actions\BulkActionGroup::make([
Tables\Actions\DetachBulkAction::make(),
Tables\Actions\RestoreBulkAction::make(),
]),
])
->modifyQueryUsing(fn(Builder $query) => $query->withoutGlobalScopes([
SoftDeletingScope::class,
]));
}
}
class ManageOrganisationProducts extends ManageRelatedRecords
{
protected static string $resource = OrganisationResource::class;

protected static string $relationship = 'products';

protected static ?string $navigationIcon = 'heroicon-o-square-3-stack-3d';

public static function getNavigationLabel(): string
{
return 'Products';
}

public function form(Form $form): Form
{
return $form
->schema([
Forms\Components\Grid::make(1)
->schema([
Forms\Components\TextInput::make('name')
->required()
->maxLength(255),
Forms\Components\Toggle::make('enabled')
->required(),
]),
]);
}

public function table(Table $table): Table
{
return $table
->recordTitleAttribute('name')
->columns([
])
->filters([])
->headerActions([
Tables\Actions\AttachAction::make(),
])
->actions([
Tables\Actions\ViewAction::make(),
Tables\Actions\DetachAction::make(),
])
->bulkActions([
Tables\Actions\BulkActionGroup::make([
Tables\Actions\DetachBulkAction::make(),
Tables\Actions\RestoreBulkAction::make(),
]),
])
->modifyQueryUsing(fn(Builder $query) => $query->withoutGlobalScopes([
SoftDeletingScope::class,
]));
}
}
5 replies
FFilament
Created by Jamie Cee on 9/3/2024 in #❓┊help
Opening modal from a custom page
Is it possible to open a modal from a class that extends Page? $this->dispatch doesn't seem to be working, I want the modal to automatically open at the end of my submit function
34 replies
FFilament
Created by Jamie Cee on 8/20/2024 in #❓┊help
Feedback on FullCalendar Plugin
Just initially looking into available plugins for a use case that would be a booking system with calendar integration to select available slots with particular instructors. Has anyone had similar exposure to the FullCalendar with a similar use case? And able to share your experience with it, was there any complications etc
8 replies
FFilament
Created by Jamie Cee on 8/12/2024 in #❓┊help
Laracasts Alpine code in an action
Im following a guide on laracasts and im at a point for it has a form component, and has attributes for: x-data, x-on:submit.prevent. I am wondering if I can use a custom action to call the alpinejs function from my app.js file, rather than creating a new blade file etc Bit lost trying to find this in the docs?
41 replies
FFilament
Created by Jamie Cee on 8/6/2024 in #❓┊help
Read/Write Databases
Is there any configuration available for separate read/write database instances? Currently my list in my resource is empty since I added the configuration for separate read/write database hosts
2 replies