How to customize Table/List view

I'm trying to get rid of the table completely inside of the resource, and replace the results with cards Is this possible?
3 Replies
tuto1902
tuto190210mo ago
You can try turning your table into a grid (which looks like cards):
public function table(Table $table): Table
{
return $table
->contentGrid([
'md' => 2,
'xl' => 3,
])
->columns([
//...
]);
}
public function table(Table $table): Table
{
return $table
->contentGrid([
'md' => 2,
'xl' => 3,
])
->columns([
//...
]);
}
tuto1902
tuto190210mo ago
I've used this in combination with Stack and Split to achieve something like this
No description
JamesTechDude
JamesTechDude10mo ago
Thanks I'll give it a shot!