Blade Components

I just started out working on blade components under core concepts in filament 3. My problem is that I'm trying to have a flex in row direction but it doesnt seem to work
<x-filament-panels::page class="flex flex-col grid">

<x-filament::section class="w-1/4">
<x-slot name="heading">
Message List
</x-slot>

Content
</x-filament::section>

<x-filament::section class="w-3/4">
<x-slot name="heading">
Message Body
</x-slot>

Content
</x-filament::section>

</x-filament-panels::page>
Solution
Got it working, used a custom layout instead of using <x-filament-panels::page>
Was this page helpful?