Refactor table components to use GenericTableSettings and remove deprecated classes

This commit is contained in:
David
2025-04-25 01:19:30 -04:00
parent 7466083798
commit 9f12bc28d0
17 changed files with 177 additions and 203 deletions

View File

@@ -1,18 +0,0 @@
<?php
namespace App\Livewire\Examples;
use App\Tables\TableWithMySettings;
use Livewire\Component;
class MyCustomSettingsTableComponent extends Component
{
public function render()
{
return view('livewire.examples.my-custom-settings-table-component', [
'table' => TableWithMySettings::class
])
->extends('components.layouts.app')
->section('content');
}
}