Upgrading to V4 broke some custom pages / tables

Hi all! Currently upgrading from v3 to v4, and we have some custom pages and table columns rendering custom blade files which are now broken as we are trying to use some filament components, which now seem broken. We have some custom pages, but now this blade file breaks:
<x-filament-panels::page>
<x-filament-panels::resources.tabs />

{{ $this->table }}
</x-filament-panels::page>
<x-filament-panels::page>
<x-filament-panels::resources.tabs />

{{ $this->table }}
</x-filament-panels::page>
x-filament-panels::resources.tabs no longer exists. How do we automatically render tabs on custom pages which use tables? Also, how do i access filaments table columns in blade files? This used to work:
<div>
@if($isRestricted())
<x-filament::icon icon="heroicon-o-lock-closed"
class="w-6"
></x-filament::icon>

@php return @endphp
@endif
</div>

@include('filament-tables::columns.text-column')
<div>
@if($isRestricted())
<x-filament::icon icon="heroicon-o-lock-closed"
class="w-6"
></x-filament::icon>

@php return @endphp
@endif
</div>

@include('filament-tables::columns.text-column')
But now filament-tables::columns.text-column does not exist. Thanks!
0 Replies
No replies yetBe the first to reply to this messageJoin

Did you find this page helpful?