AngryTestie
AngryTestie
FFilament
Created by AngryTestie on 10/27/2024 in #❓┊help
Remove Manage Subscription from tenant menu
No description
6 replies
FFilament
Created by AngryTestie on 9/3/2024 in #❓┊help
Customize multi tenancy dropdown selector
No description
4 replies
FFilament
Created by AngryTestie on 8/21/2024 in #❓┊help
Multi Tenancy Dropdown - sort ascending?
No description
3 replies
FFilament
Created by AngryTestie on 7/18/2024 in #❓┊help
Get the company_id data after the user is created
No description
3 replies
FFilament
Created by AngryTestie on 7/12/2024 in #❓┊help
Get the active tenant id
No description
3 replies
FFilament
Created by AngryTestie on 7/12/2024 in #❓┊help
Attached user to a tenant
No description
5 replies
FFilament
Created by AngryTestie on 10/19/2023 in #❓┊help
Popup Modal after login for new users?
Is it possible to create a modal that will trigger after a new user login for the first time?
3 replies
FFilament
Created by AngryTestie on 10/12/2023 in #❓┊help
Check if the data has been change before saving
I'm trying to send a notification to the process owner everytime the data of process owner is change after saving. I don't want to spam notification everytime the user click the save so I want to check it before saving. The code below always returns false even if I'm changing the value of the process_owner protected function beforeSave(): void { dd($this->record->isDirty('process_owner')); }
4 replies
FFilament
Created by AngryTestie on 10/10/2023 in #❓┊help
How to set the Dashboard columns to 3 using custom widgets
No description
14 replies
FFilament
Created by AngryTestie on 9/28/2023 in #❓┊help
How to get the id of the data created using createOptionUsing()
I want to add a data in the pivot table after creating the data. Now I don't have the access on the id of the newly created data. How can I do this Forms\Components\Select::make('process_owner') ->label('Process Owner') ->relationship('processowner','name', fn (Builder $query) => $query->whereHas('companies', fn ($query) => $query->where('company_id', Auth::user()->current_company_id))) ->preload() ->searchable() ->createOptionForm([ Forms\Components\TextInput::make('name') ->required(), Forms\Components\TextInput::make('email') ->required(), Hidden::make('password') ->required() ->default(Hash::make('password')) ->disabled(), Hidden::make('current_company_id') ->default( Auth::user()->current_company_id) ]) ->createOptionUsing(function(array $data) { ),
5 replies
FFilament
Created by AngryTestie on 9/28/2023 in #❓┊help
How to run a function after adding new data using createOptionForm()
I want to inser data in pivot table after new data is save.How can I do that?here is my code . Forms\Components\Select::make('location') ->label('Location') ->multiple() ->relationship('locations','location_name',fn (Builder $query) => $query->where('company_id', Auth::user()->current_company_id)) ->preload() ->createOptionForm([ Forms\Components\TextInput::make('location_name') ->required(), Hidden::make('company_id') ->default( Auth::user()->current_company_id) ]),
6 replies
FFilament
Created by AngryTestie on 9/27/2023 in #❓┊help
Popup Modal for new Users after login?
Hello guys is it possible to add a functionality like this?
5 replies
FFilament
Created by AngryTestie on 9/26/2023 in #❓┊help
Retrieve data in pivot table many to many relationship
No description
3 replies
FFilament
Created by AngryTestie on 9/25/2023 in #❓┊help
404 in Deployment when clicking dropdowns
No description
2 replies
FFilament
Created by AngryTestie on 9/25/2023 in #❓┊help
How to not run the function when there is no change in the data when updating Resource
No description
2 replies
FFilament
Created by AngryTestie on 9/6/2023 in #❓┊help
Loop all the companies and to User Menu Items
No description
2 replies
FFilament
Created by AngryTestie on 8/30/2023 in #❓┊help
Spatie roles and permissions team feature
No description
9 replies
FFilament
Created by AngryTestie on 8/16/2023 in #❓┊help
Textarea Autoresize
4 replies
FFilament
Created by AngryTestie on 7/25/2023 in #❓┊help
Insert Data in Pivot Table
I have 2 tables companies and users with many to many relationship, now I want to add data in pivot table when I'm creating new user how can I do that?Please help
13 replies
FFilament
Created by AngryTestie on 7/17/2023 in #❓┊help
How to customize filament breezy registration page?
Can someone guide me step by step customize the filament breezy registration page. I want to add new fields thanks!
9 replies