Replies: 1 comment 3 replies
-
I have the same problem. The table is drawn for one second and then lost with many console errors. almost empty project with starter laravel kit (Breeze and Livewire) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a lot of errors in console
<title>Laravel</title> @livewireStyles @Vite(['resources/css/app.css', 'resources/js/app.js'])Uncaught ReferenceError: laravellivewiretable is not defined
Uncaught ReferenceError: setTableId is not defined
Uncaught ReferenceError: shouldBeDisplayed is not defined
My view
`
use Rappasoft\LaravelLivewireTables\DataTableComponent;
use Rappasoft\LaravelLivewireTables\Views\Column;
use App\Models\User;
class UsersTable extends DataTableComponent
{
protected $model = User::class;
}
`
Beta Was this translation helpful? Give feedback.
All reactions