Can I get come help with this error?
Class App\Livewire\V1\Admin\Delivery\DeliveryIndex contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (Filament\Tables\Contracts\HasTable::makeFilamentTranslatableContentDriver)
2 Replies
Sounds like you did add an Interface but forgot to add the Trait for your component.
I just ran into this issue too today, upgrading from V2 to V3. It seems the upgrade tool doesn't add the
HasForms
interface and use InteractsWithForms;
trait to any components using the tables package, hence the above error. I couldn't find anything in the tables upgrade guide either about manually doing it.
Screenshots are v2 vs v3 for adding a table.