Pints
Pints
FFilament
Created by Pints on 7/26/2024 in #❓┊help
Accessing repeater value from outside
Thank you so much sir! I didn't know it can be done like that.
12 replies
FFilament
Created by Pints on 7/26/2024 in #❓┊help
Accessing repeater value from outside
Is it possible to make it reactive or live? When I update the values inside the repeater, it doesn't change automatically
12 replies
FFilament
Created by Pints on 7/26/2024 in #❓┊help
Accessing repeater value from outside
Thank you for this! You're a life saver.
12 replies
FFilament
Created by Pints on 7/26/2024 in #❓┊help
Accessing repeater value from outside
But when I use $get('quantity') or $get('../quantity'), the result is null
12 replies
FFilament
Created by Pints on 7/26/2024 in #❓┊help
Accessing repeater value from outside
Everytime I dd($get('products')), the result is like this: array:1 [▼ // app\Filament\Resources\PurchaseResource.php:316 "04768f37-5be1-45a2-9df3-90b68ede9137" => array:2 [▼ "quantity" => 100 "price" => 100 ] ]
12 replies
FFilament
Created by Pints on 7/26/2024 in #❓┊help
Accessing repeater value from outside
I don't quite understand your suggestion, I'm sorry
12 replies
FFilament
Created by Pints on 5/30/2024 in #❓┊help
Livewire Component passing variable to Blade Error
I got it working bro, the solution is I deleted the Announcement Class and its View file and created a new livewire component.
19 replies
FFilament
Created by Pints on 5/30/2024 in #❓┊help
Livewire Component passing variable to Blade Error
It's okay bro, gonna find it out soon, thanks btw
19 replies
FFilament
Created by Pints on 5/30/2024 in #❓┊help
Livewire Component passing variable to Blade Error
No description
19 replies
FFilament
Created by Pints on 5/30/2024 in #❓┊help
Livewire Component passing variable to Blade Error
"filament/filament": "^3.2.71", "hasnayeen/themes": "^3.0", "jeffgreco13/filament-breezy": "^2.3", "laravel/framework": "^11.0", "laravel/tinker": "^2.9", "livewire/livewire": "^3.5",
19 replies
FFilament
Created by Pints on 5/30/2024 in #❓┊help
Livewire Component passing variable to Blade Error
No description
19 replies
FFilament
Created by Pints on 5/30/2024 in #❓┊help
Livewire Component passing variable to Blade Error
This is my code in AppServiceProvider <?php namespace App\Providers; use Illuminate\Support\ServiceProvider; use Filament\Support\Facades\FilamentView; use Illuminate\Contracts\View\View; use Filament\View\PanelsRenderHook; use Illuminate\Support\Facades\Blade; class AppServiceProvider extends ServiceProvider { /** * Register any application services. */ public function register(): void { } /** * Bootstrap any application services. */ public function boot(): void { FilamentView::registerRenderHook( PanelsRenderHook::GLOBAL_SEARCH_BEFORE, fn (): View => view('livewire.clock'), ); FilamentView::registerRenderHook( PanelsRenderHook::BODY_START, fn (): string => Blade::render('@livewire(\'announcement\')'), ); } }
19 replies
FFilament
Created by Pints on 5/30/2024 in #❓┊help
Livewire Component passing variable to Blade Error
No description
19 replies
FFilament
Created by Pints on 5/30/2024 in #❓┊help
Livewire Component passing variable to Blade Error
I registered the livewire in the AppServiceProvider using this code FilamentView::registerRenderHook( PanelsRenderHook::BODY_START, fn (): View => view('livewire.announcement'), );
19 replies
FFilament
Created by Pints on 5/30/2024 in #❓┊help
Livewire Component passing variable to Blade Error
Still Undefined variable $message
19 replies