I have a problem with the tailwind pagination view(https://laravel-news.com/laravel-7-13-0).
If I first try to find something out in my users table and click on the next page I get the following error message:
The GET method is not supported for this route. Supported methods: POST.
The code that I have written is very simple:
class UsersTable extends Component
{
use WithPagination;
public $search = '';
public $perPage = 10;
public function render()
{
return view('livewire.users-table', [
'users' => User::search(
$this->search
)->paginate($this->perPage)
]);
}
}
and this is how Iām displaying tailwind pagination:
{{ $users->links('vendor.pagination.tailwind') }}
Here are some screenshots: