mohdaftab
mohdaftab
FFilament
Created by mohdaftab on 3/15/2025 in #❓┊help
How to save hintAction form on keypress enter?
Hello, I have a booking form which has all the inputs disabled on EditPage, we have added an hintAction form to open a modal and make the changes to that input and it works fine. My client is now asking to add a functionality to press enter and save that form. Please let me know if there is a Filamentphp way to do it? or Alpine JS way? I have attached TextInput code for one of my fields. Thank you
8 replies
FFilament
Created by mohdaftab on 3/14/2025 in #❓┊help
sortable() resets the sorting on 3rd click
Hello, I am facing this issue with sortable() columns on my tables. It sorts perfectly when I click on it once, then it toggles the direction on another click and then on 3rd click it just resets the sorting and then I have to click on it again to sort. Please watch the attached video for reference. Please let me know how do I fix this? Thank you so much.
11 replies
FFilament
Created by mohdaftab on 3/11/2025 in #❓┊help
How do I completely hide this label from a list resource?
No description
14 replies
FFilament
Created by mohdaftab on 3/10/2025 in #❓┊help
How to use a Resource as the main dashboard page?
Hello, I had a BookingResource with List, Edit and Create pages which works good and the slug is /dashboard/bookings I wanted to use the BookingResource as a main Dashboard page with the slug / which is accessible using /dashboard But the issue is my client wants the edit page to be /dashboard/bookings/1/edit instead of /dashboard/1/edit and same for create page. Please let me know how do I achieve that? Thank you
6 replies
FFilament
Created by mohdaftab on 3/9/2025 in #❓┊help
How to only get list of tenants in the drop down if the user has any role to that tenant
Hello, I am using multi-tenancy in my project. I have around 3 tenants added and each user has different role with each tenant. I prevent user to login to the tenant login page if that user has no access to that tenant, but they can login to another tenant. But after they login to it they are presented with the tenants list drop down and it has all the tenants they are linked to. I want to hide the tenants from the drop down menu if the user has no role for that tenant.
public function getTenants(Panel $panel): Collection
{
return $this->companies;
}
public function getTenants(Panel $panel): Collection
{
return $this->companies;
}
the companies are the tenants in my project. I understand that whatever companies are returned in the above function will be listed in the dropdown, but unfortunately I can't filter the companies out which users are not allowed to access because of no roles assigned to them. Please let me know how do I make this work? Thank you so much.
51 replies
FFilament
Created by mohdaftab on 3/9/2025 in #❓┊help
How to load different ListPage based on permission on multi-tenant resource?
Hello, I am using multi-tenancy on my Filament Project and using Spatie roles and permissions. I am trying to load different ListPage on my resource based on the permission as you can see in the code below, but the getPages() doesn't recognize Filament::getTenant()->id which is causing the problem to check for the permission for the authenticated user.
public static function getPages(): array
{
$user = auth()->user();

setPermissionsTeamId(Filament::getTenant()->id);
return [
'index' => ($user->can('create booking')) ? Pages\ListBookings::route('/') : ListUsers::route('/'),
'create' => Pages\CreateBooking::route('/create'),
'edit' => Pages\EditBooking::route('/{record}/edit'),
];
}
public static function getPages(): array
{
$user = auth()->user();

setPermissionsTeamId(Filament::getTenant()->id);
return [
'index' => ($user->can('create booking')) ? Pages\ListBookings::route('/') : ListUsers::route('/'),
'create' => Pages\CreateBooking::route('/create'),
'edit' => Pages\EditBooking::route('/{record}/edit'),
];
}
My question is how do I make this load different index route based on the permission please? Thank you
6 replies
FFilament
Created by mohdaftab on 3/8/2025 in #❓┊help
Stats widget above the table linked to the table data
No description
10 replies
FFilament
Created by mohdaftab on 2/28/2025 in #❓┊help
How to add button to Datetimepicker?
No description
8 replies
FFilament
Created by mohdaftab on 2/27/2025 in #❓┊help
How to check if the created request is made through Filament?
Hello, I am trying to create status of booking in my project using the Observer to be "confirmed" if the booking is created using the Filament Panel and "unconfirmed" if the booking is created using the API or any request other than Filament Panel. Please let me know how do I detect if the create request is made through Filament Panel or not? Thank you so much
10 replies
FFilament
Created by mohdaftab on 12/15/2024 in #❓┊help
How to load action form quicker on edit page?
No description
21 replies
FFilament
Created by mohdaftab on 12/13/2024 in #❓┊help
How to show Filament Notification on unsavedChangesAlerts?
Hello, Is there a way to show Filament Notification when there is an unsaved change in the form? Also my client is asking to highlight the fields which are changed when there is an unsaved event, is it even possible? Thank you
45 replies
FFilament
Created by mohdaftab on 12/8/2024 in #❓┊help
Show 404 if tenant doesn't exists
Hello everyone, I am using subdomains for multi-tenancy in my Filamentphp v3 project. The login pages for subdomains are like company-1.domain.com/dashboard/login company-2.domain.com/dashboard/login both company-1 and company-2 are registered as a tenant and the login page works good, but when I try to access company-3 subdomain which isn't registered, I still see the login page. Is there a way to show 404 page if the tenant status is not active or it doesn't exist. Thank you so much.
17 replies
FFilament
Created by mohdaftab on 11/25/2024 in #❓┊help
Fileupload multiple image in a tab not displaying images properly
No description
34 replies
FFilament
Created by mohdaftab on 10/20/2024 in #❓┊help
Sushi to dynamically load data from API using search keyword
Hello, I am using Sushi to load a data into a table with API data using a search keyword. But I am missing something here as I am not able to load the data from API after the search but if I provide the search term initially then it loads the proper data to the table. Please check my code and help me fix this, thank you so much. This is my custom page code, removed the imports due to limitations.
<?php

namespace App\Filament\Dashboard\Pages;

class TargetFinderGenerator extends Page implements HasForms, HasTable
{

use InteractsWithTable, InteractsWithForms;

public $keyword;
public $selected = [];

protected static ?string $navigationIcon = 'heroicon-o-arrow-right-end-on-rectangle';

protected static ?string $navigationGroup = 'Target Finder';

protected static string $view = 'filament.dashboard.pages.target-finder-generator';


public ?array $data = [];



public function form(Form $form): Form
{
return $form
->statePath('data')
->schema([
Grid::make(2)
->schema([
TextInput::make("keyword")
->default(2)
->required(),
])

]);
}

public static function table(Table $table): Table
{
return $table
->columns([
TextColumn::make("name"),
TextColumn::make("email"),
TextColumn::make("body"),
])
->filters([])
->actions([])
->bulkActions([])
->query(TargetFinder::query());
}


public function fetchApiData()
{
$this->selected = [];
(new TargetFinder)->getRows($this->data);
}
}
<?php

namespace App\Filament\Dashboard\Pages;

class TargetFinderGenerator extends Page implements HasForms, HasTable
{

use InteractsWithTable, InteractsWithForms;

public $keyword;
public $selected = [];

protected static ?string $navigationIcon = 'heroicon-o-arrow-right-end-on-rectangle';

protected static ?string $navigationGroup = 'Target Finder';

protected static string $view = 'filament.dashboard.pages.target-finder-generator';


public ?array $data = [];



public function form(Form $form): Form
{
return $form
->statePath('data')
->schema([
Grid::make(2)
->schema([
TextInput::make("keyword")
->default(2)
->required(),
])

]);
}

public static function table(Table $table): Table
{
return $table
->columns([
TextColumn::make("name"),
TextColumn::make("email"),
TextColumn::make("body"),
])
->filters([])
->actions([])
->bulkActions([])
->query(TargetFinder::query());
}


public function fetchApiData()
{
$this->selected = [];
(new TargetFinder)->getRows($this->data);
}
}
Thank you
8 replies
FFilament
Created by mohdaftab on 8/23/2024 in #❓┊help
DateTimePicker showing seconds with minDate
No description
12 replies
FFilament
Created by mohdaftab on 8/16/2024 in #❓┊help
Replication causes 500 internal server error
Hello, I am using Replication with filament-fabricator and was facing this issue on production server whenever we created a replica page I made it redirect to the edit page but it always gave me 500 server error because the newly created page id was not found in routes somehow. I figured I always had to run php artisan optimize:clear command to make that page work so I created an observer to run this command everytime the page is created and it works ok but some times the optimize doesn't work and my client gets 500 server error. Please let me know if any of you have faced this situation on production server? Also please let me know how do I fix this issue on production server? The local server works great without any commands. Thank you
8 replies
FFilament
Created by mohdaftab on 8/15/2024 in #❓┊help
How do I close Action modal using $wire when process is done
No description
49 replies
FFilament
Created by mohdaftab on 8/13/2024 in #❓┊help
How to disable create button on Wizard's last step using Alpine?
Hello, I have a 2 step wizard which I am using to add card details for Stripe. Step one takes the card details and goes to step two to submit the form. But before submitting the form I need to disable the create button and as soon as the Step two loads I need to send the Step one data (card details) to Stripe JS to receive the token that I want to set as value for Step two's hidden field named card_token. Once the card_token field is filled I need to enable the Create button to submit the form. Please let me know how to do that? I am struggling to make this work. Thank you so much.
3 replies
FFilament
Created by mohdaftab on 8/13/2024 in #❓┊help
How to add card details and generate stripe token using Relation manager form?
Hello, I am using stripe-php to add card information to Stripe and using card details relation manager for customers. I am able to add the card details in the self hosted form but Stripe requires us to generate token by sending card details using their Javascript api which I can send by dispatching the Livewire event but I am not able to set the value for the token field with the class card_token on the form after getting response from Stripe. Please let me know how can I generate the token, validate it and set the token as value for card_token textinput before submitting the form. Thank you
6 replies
FFilament
Created by mohdaftab on 8/2/2024 in #❓┊help
Use form builder and table builder on front-end
Hello, I am trying to add Filament Form and Table in a Livewire component to use on front-end which but I need to import all the styles and scripts that the dashboard uses please as the form and table are not functioning properly if I am using external Tailwindcss styles. Please let me know how can I make this work. Thank you
5 replies