© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
1 reply
bennajah

Livewire 3 Help

Error:
Property type not supported in Livewire for property: [{"current_page":1,"data":[{"id":1,"name":"Alf.....
Property type not supported in Livewire for property: [{"current_page":1,"data":[{"id":1,"name":"Alf.....


<?php

namespace App\Livewire;

use App\Models\Product;
use Livewire\Component;
use Livewire\WithPagination;

class ProductList extends Component
{
    use WithPagination;
    public $products;

    public function mount()
    {
        $this->products = Product::paginate(5);
    }

    public function render()
    {
        return view('livewire.product-list');
    }
}
<?php

namespace App\Livewire;

use App\Models\Product;
use Livewire\Component;
use Livewire\WithPagination;

class ProductList extends Component
{
    use WithPagination;
    public $products;

    public function mount()
    {
        $this->products = Product::paginate(5);
    }

    public function render()
    {
        return view('livewire.product-list');
    }
}

product-list.blade.php
<div>
    @foreach ($products as $product)
        <div>
            {{ $product->name }}
        </div>
    @endforeach
    {{ $products->links() }}
</div>
<div>
    @foreach ($products as $product)
        <div>
            {{ $product->name }}
        </div>
    @endforeach
    {{ $products->links() }}
</div>
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

dispatch in livewire 3 and filament
FilamentFFilament / ❓┊help
16mo ago
filtering on a page livewire 3
FilamentFFilament / ❓┊help
2y ago
Livewire 3 wire loading 2 cycles
FilamentFFilament / ❓┊help
2y ago
Table Builder update data using Livewire 3
FilamentFFilament / ❓┊help
2y ago