Silverhand
Silverhand
FFilament
Created by Silverhand on 7/23/2024 in #❓┊help
How do I create a non-tenancy page and route with a multi-tenancy configuration?
OK, thanks a lot for your assist, I have one more question, I know it's a bit silly, but can I remove the tenantID for that AnnouncementResource on the URL? So it's only /admin/announcements, without the tenant ID. 😃
9 replies
FFilament
Created by Silverhand on 7/23/2024 in #❓┊help
How do I create a non-tenancy page and route with a multi-tenancy configuration?
It's actually AnnouncementResource, I want to make the resource is accessible to all tenants 😃
9 replies
FFilament
Created by Silverhand on 7/23/2024 in #❓┊help
How do I create a non-tenancy page and route with a multi-tenancy configuration?
@toeknee No, I would like to make a page that can be accessed by all tenants and without specifying the tenant ID on the URL, do you think it's possible?
9 replies
FFilament
Created by Silverhand on 6/6/2024 in #❓┊help
Form with deeper relationship
Okay, @awcodes thanks for your reply. What would be the ideal way to accomplish what I'm trying to do? Any suggestion?
7 replies
FFilament
Created by Silverhand on 6/3/2024 in #❓┊help
Show using modals, but edit and delete using a normal page
No description
18 replies
FFilament
Created by Silverhand on 6/3/2024 in #❓┊help
Show using modals, but edit and delete using a normal page
Thanks for your assist man, I appreciate it!
18 replies
FFilament
Created by Silverhand on 6/3/2024 in #❓┊help
Show using modals, but edit and delete using a normal page
😆😆
18 replies
FFilament
Created by Silverhand on 6/3/2024 in #❓┊help
Show using modals, but edit and delete using a normal page
Yeah it works if I click the view icon, is it possible to make it works when I clicking the row?
18 replies
FFilament
Created by Silverhand on 6/3/2024 in #❓┊help
Show using modals, but edit and delete using a normal page
Could you show me how you wrote the table(), please?
18 replies
FFilament
Created by Silverhand on 6/3/2024 in #❓┊help
Show using modals, but edit and delete using a normal page
It's visit an edit page, I already defined the infolists that only works if I delete edit and create routes
18 replies
FFilament
Created by Silverhand on 6/3/2024 in #❓┊help
Show using modals, but edit and delete using a normal page
I did, I put it on the ->actions([]), is there anything wrong from this?
public static function table(Table $table): Table
{
return $table
->columns([
...
])
->actions([
Tables\Actions\ViewAction::make(), Tables\Actions\EditAction::make(),
])
->bulkActions([
Tables\Actions\BulkActionGroup::make([
ChangeApplicantStatusAction::make(),
Tables\Actions\DeleteBulkAction::make(),
]),
]);
}
public static function table(Table $table): Table
{
return $table
->columns([
...
])
->actions([
Tables\Actions\ViewAction::make(), Tables\Actions\EditAction::make(),
])
->bulkActions([
Tables\Actions\BulkActionGroup::make([
ChangeApplicantStatusAction::make(),
Tables\Actions\DeleteBulkAction::make(),
]),
]);
}
18 replies