PabloZagni
PabloZagni
FFilament
Created by PabloZagni on 7/6/2024 in #❓┊help
php artisan make:filament-user
Hi. I think it would be nice if the command php artisan make:filament-user ask to set the email_verified_at fiel to verified. So we can create the first Admin user with validated email.
2 replies
FFilament
Created by PabloZagni on 7/5/2024 in #❓┊help
Tenant APP
No description
2 replies
FFilament
Created by PabloZagni on 7/1/2024 in #❓┊help
emailVerification with Tenant panel problem.
Hi. If the user creates an account in a non-tenant panel, then /user/email-verification/prompt is shown. Great. But if I add ->tenant(Team::class) to the panel, the user is redirected to / when creating account. How can I fix this?
2 replies
FFilament
Created by PabloZagni on 6/30/2024 in #❓┊help
Translate resource label
No description
6 replies
FFilament
Created by PabloZagni on 6/29/2024 in #❓┊help
CreateAction Visible on condition
No description
5 replies
FFilament
Created by PabloZagni on 6/29/2024 in #❓┊help
Status field
No description
3 replies
FFilament
Created by PabloZagni on 6/26/2024 in #❓┊help
Tenant sort
No description
2 replies
FFilament
Created by PabloZagni on 6/25/2024 in #❓┊help
Special Tenant Case
Hi. I'm developing an Issue tracking system. Each user belongs to a Team (Sales, Marketing, Development, Support, etc). Issue model has: title, description, priority, team_id Any user can create an Issue to other Teams. But, when the Issue is created, since Team is the tenant, team_id is set to my current tenant instead the team selected in the form. Is there a way to save the Issue to the database with the selected team_id and not the current tenant? Thanks
16 replies
FFilament
Created by PabloZagni on 6/12/2024 in #❓┊help
Enable / Disable Wizard Next step button
Hi. Is there a way to enable or disable the next step button? I want to enable it when all required fields are completed. Thanks
2 replies
FFilament
Created by PabloZagni on 6/4/2024 in #❓┊help
ImageEntry not responsive
No description
3 replies
FFilament
Created by PabloZagni on 6/2/2024 in #❓┊help
Form Select Loading indicator while filling from API
No description
35 replies
FFilament
Created by PabloZagni on 5/28/2024 in #❓┊help
Check for user profile complete
Hi! My user model has some extra fields that I would like to be completed. My UserPanel is like this public function panel(Panel $panel): Panel { return $panel ->id('user') ->path('user') ->login() ->profile(MyEditProfile::class, isSimple: false) ->middleware([ VerifyProfileComplete::class ]) But I have many redirects! How can I exclude the VerifyProfileComplete Middleware from the MyEditProfile?
6 replies
FFilament
Created by PabloZagni on 4/3/2024 in #❓┊help
Can't access User profile "isSimple:false" on Team tenant
Hi. Trying to get to User's profile (http://app.test/dashboard/profile) This works public function panel(Panel $panel): Panel { return $panel ->tenant(Team::class, ownershipRelationship:'team', slugAttribute: 'slug') ->tenantRegistration( RegisterTeam::class ) ->tenantProfile( EditTeamProfile::class ) ->default() ->id('dashboard') ->path('dashboard') ->login() ->registration() // user can register ->passwordReset() // user can reset password ->emailVerification() // user must verify email ->profile() This doesn't ->profile(isSimple: false) It shows error: Missing required parameter for [Route: filament.dashboard.pages.dashboard] [URI: dashboard/{tenant}] [Missing parameter: tenant]. It seams that can't build the URLs of the sidebar. Any solution? Thanks
2 replies
FFilament
Created by PabloZagni on 3/22/2024 in #❓┊help
Is there a way to set focus on filter input when table shows?
Hi, I use keyboard a lot, and I wish to have focus on the search field when the table shows. Is it possible? Thanks
2 replies
FFilament
Created by PabloZagni on 3/20/2024 in #❓┊help
Show detail fields of a selected item in a Forms\Components\Select
Hi. My "ContractResource" selects a "person_id". I would like to show the Address, ID, and many other fields of the person on a Card below the Select. Is it possible? Thanks.
2 replies
FFilament
Created by PabloZagni on 3/19/2024 in #❓┊help
How to combine multiple fields into one? Address field
Hi, my model has: $table->string('name'); $table->string('email')->nullable()->unique(); $table->string('phone')->nullable(); $table->string('address')->nullable(); $table->integer('number')->nullable(); $table->string('city')->nullable(); $table->string('state')->nullable(); So, I need to have a searchable TextColumn with the field concatenated like: 4 Pennsylvania Plaza, New York, NY 10001, EE. UU. I've tryed to create an attirbute public function getFulladdressAttribute() : string { return $this->address.' '.$this->number.' '.$this->city', '.$this->state; } but it's not found in the database. Thanks
8 replies
FFilament
Created by PabloZagni on 1/5/2024 in #❓┊help
panel
No description
12 replies
FFilament
Created by PabloZagni on 11/21/2023 in #❓┊help
Navbar customize
Hi. I'm using filament 3 and Jetstream, and I need to add the option to customize Jetstream teams from the Admin panel,
2 replies
FFilament
Created by PabloZagni on 11/21/2023 in #❓┊help
Add link button to panel
How can I add a link to another URL of my site in the Admin Panel?
9 replies
FFilament
Created by PabloZagni on 10/30/2023 in #❓┊help
replace header with Jetstream navigation-menu
Hi. I need to KEEP my "navigation-menu" (or mix with Filament) since my APP has Teams, and the user need to configure the team, his personal account, etc. How can I modify the header?
9 replies