© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
2 replies
Alvika Aji Prahasta

Unable to find component: [app.filament.widgets.kickoff-property-table-widget]

Seek Help, i've code like this, but have some errors, when i create di kickoff the result Unable to find component: [app.filament.widgets.kickoff-property-table-widget] but that data success input to database

App\Filament\Widgets\KickoffPropertyTableWidget.php
<?php

namespace App\Filament\Widgets;


use App\Models\KickoffProperty;
use Filament\Widgets\TableWidget as BaseWidget;

class KickoffPropertyTableWidget extends BaseWidget
{

    public $data;

    public function mount($data = null)
    {
        $this->data = $data;
    }

    protected $listeners = ['refreshScorecardTable' => '$refresh'];
    public function table(Table $table): Table
    {
        return $table
            ->query(
                KickoffProperty::query()
            )
            ->columns([
      
            ])
            ->paginated(false);
    }
}
App\Filament\Widgets\KickoffPropertyTableWidget.php
<?php

namespace App\Filament\Widgets;


use App\Models\KickoffProperty;
use Filament\Widgets\TableWidget as BaseWidget;

class KickoffPropertyTableWidget extends BaseWidget
{

    public $data;

    public function mount($data = null)
    {
        $this->data = $data;
    }

    protected $listeners = ['refreshScorecardTable' => '$refresh'];
    public function table(Table $table): Table
    {
        return $table
            ->query(
                KickoffProperty::query()
            )
            ->columns([
      
            ])
            ->paginated(false);
    }
}

App\Filament\Resources\JourneyResource\Pages\CreateJourney.php
 Step::make('Kickoff Property')
                ->schema([
                    Actions::make([
                        Action::make('Create Kickoff Property')
                            ->form([
                              
                            ])
                            ->action(function (array $data, Get $get, $livewire) {
                                $kickOff = new KickoffProperty;
                                $kickOff->save();
                                // Refresh the table data
                                $livewire->dispatch('refreshScorecardTable');
                            }),
                    ]),
                    View::make('kicoffTable')
                        ->view('filament.widgets.kickoff-property-table-widget')
                ])
App\Filament\Resources\JourneyResource\Pages\CreateJourney.php
 Step::make('Kickoff Property')
                ->schema([
                    Actions::make([
                        Action::make('Create Kickoff Property')
                            ->form([
                              
                            ])
                            ->action(function (array $data, Get $get, $livewire) {
                                $kickOff = new KickoffProperty;
                                $kickOff->save();
                                // Refresh the table data
                                $livewire->dispatch('refreshScorecardTable');
                            }),
                    ]),
                    View::make('kicoffTable')
                        ->view('filament.widgets.kickoff-property-table-widget')
                ])


views\filament\widgets\kickoff-property-table-widget.blade.php
<div>
    @livewire(\App\Filament\Widgets\KickoffPropertyTableWidget::class, [
        'data' => $this->data['data_result_investment_schema'] ?? [],
    ])
</div>
views\filament\widgets\kickoff-property-table-widget.blade.php
<div>
    @livewire(\App\Filament\Widgets\KickoffPropertyTableWidget::class, [
        'data' => $this->data['data_result_investment_schema'] ?? [],
    ])
</div>
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Unable to find component: [Filament\Widgets\WidgetConfiguration]
FilamentFFilament / ❓┊help
2y ago
Unable to find component: [app.filament.widgets.office-overview]
FilamentFFilament / ❓┊help
13mo ago
Unable to find component: [app.filament.widgets.orders-to-schedule]
FilamentFFilament / ❓┊help
3y ago
Widget error - unable to find component
FilamentFFilament / ❓┊help
3y ago