Renzo
Renzo
FFilament
Created by Renzo on 5/8/2024 in #❓┊help
Issue with ->multiple() method for select after v3.2.74 update
All good, thanks!
7 replies
FFilament
Created by Renzo on 5/8/2024 in #❓┊help
Issue with ->multiple() method for select after v3.2.74 update
Thanks!
7 replies
FFilament
Created by Renzo on 4/24/2024 in #❓┊help
FileUpload field inside an Infolist
Very nice, thank you!!
11 replies
FFilament
Created by Renzo on 4/24/2024 in #❓┊help
FileUpload field inside an Infolist
Let me know how it goes, thanks! 🙂
11 replies
FFilament
Created by Renzo on 4/24/2024 in #❓┊help
FileUpload field inside an Infolist
Yes, I have. Can't seem to find anything for other files like .pdf
11 replies
FFilament
Created by Renzo on 4/24/2024 in #❓┊help
Getting rid of create button
Thank you so much!
6 replies
FFilament
Created by Renzo on 10/10/2023 in #❓┊help
Twilio Integration
Gotcha, thanks for the tip
7 replies
FFilament
Created by Renzo on 10/10/2023 in #❓┊help
Twilio Integration
Got it, but it's possible to integrate Twilio with Filament right?
7 replies
FFilament
Created by Renzo on 9/25/2023 in #❓┊help
Notifications Issue
@Hugh Messenger Phew, thanks! I thought I messed something up.
13 replies
FFilament
Created by Renzo on 9/25/2023 in #❓┊help
Notifications Issue
@Matthew
13 replies
FFilament
Created by Renzo on 9/25/2023 in #❓┊help
Notifications Issue
Just the default notification, I haven't added any custom notifs yet. Seems like it was broken on v60-61 update.
13 replies
FFilament
Created by Renzo on 9/25/2023 in #❓┊help
Notifications Issue
No description
13 replies
FFilament
Created by Renzo on 9/1/2023 in #❓┊help
Table Data Visibility
Make it worked! 🙂 ->modifyQueryUsing(function (Builder $query) { $user = Auth::user(); // If the user is a Vendor, modify the query to only show their assigned workorders. if($user->hasRole('Vendor')) { $query->where('user_id', $user->id); } return $query; })
4 replies
FFilament
Created by Renzo on 9/1/2023 in #❓┊help
Table Data Visibility
Here's my schema for User and Workorder for reference: Schema::create('users', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->boolean('user_preferred')->nullable(); $table->rememberToken(); $table->timestamps(); }); Schema::create('workorders', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('customer_id')->nullable(); $table->unsignedBigInteger('user_id')->nullable(); $table->string('wo_number')->nullable(); $table->string('wo_problem')->nullable(); $table->string('wo_problem_type')->nullable(); $table->string('wo_description')->nullable(); $table->string('wo_customer_po')->nullable(); $table->string('wo_asset')->nullable(); $table->string('wo_priority')->nullable(); $table->string('wo_trade')->nullable(); $table->string('wo_category')->nullable(); $table->string('wo_tech_nte')->nullable(); $table->string('wo_schedule')->nullable(); $table->string('wo_status')->nullable(); $table->timestamps(); });
4 replies
FFilament
Created by Renzo on 8/31/2023 in #❓┊help
Hide a Toggle field depending on Select option
Thanks 🙂
41 replies
FFilament
Created by Renzo on 8/31/2023 in #❓┊help
Hide a Toggle field depending on Select option
Yeah, it still does the same behavior :/ weird, anywho, I'll just stick to boolean like on the documentation
41 replies
FFilament
Created by Renzo on 8/31/2023 in #❓┊help
Hide a Toggle field depending on Select option
Oh wait, it shows up when I try to pick any role which is weird
41 replies
FFilament
Created by Renzo on 8/31/2023 in #❓┊help
Hide a Toggle field depending on Select option
Oh it worked! Tho when I try to select another role again it still shows up. I'll try to do the adjustments 🙂
41 replies
FFilament
Created by Renzo on 8/31/2023 in #❓┊help
Hide a Toggle field depending on Select option
Yes, this one Select::make('roles') ->relationship('roles', 'name') ->reactive(), Toggle::make('user_preferred') ->hidden(fn ($get) => dd($get('roles')))
41 replies
FFilament
Created by Renzo on 8/31/2023 in #❓┊help
Hide a Toggle field depending on Select option
Oh still the same, doesn't return anything when I select a role.
41 replies