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?
Is this possible?

public function table(Table $table): Table
{
return $table
->contentGrid([
'md' => 2,
'xl' => 3,
])
->columns([
//...
]);
}