Replies: 1 comment 5 replies
-
that's code works fine on me |
Beta Was this translation helpful? Give feedback.
5 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.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, i have installed laravel-livewire-tables and configured it to use bootstrap-5 but i can't make it work.
even with a simple example like this:
UsersTable.php
`<?php
namespace App\Http\Livewire;
use App\Models\User;
use Illuminate\Database\Eloquent\Builder;
use Rappasoft\LaravelLivewireTables\DataTableComponent;
use Rappasoft\LaravelLivewireTables\Views\Column;
class UsersTable extends DataTableComponent
{
public function configure(): void {
$this->setPrimaryKey('id');
}
}`
the view where i put the livewire component <livewire:users-table /> is broken and only a white page is shown
what am I doing wrong?
Beta Was this translation helpful? Give feedback.
All reactions