Level 75
Does resources/views/custom-pagination-links-view.blade.php file exist?
1 like
I follow the docs but have an error:
<?php
namespace App\Http\Livewire;
use Livewire\Component;
use App\Models\Transaction;
use Livewire\WithPagination;
class AdminTable extends Component
{
use WithPagination;
public function render()
{
return view('livewire.admin-table', [
'transactions' => Transaction::paginate(25)
]);
}
public function paginationView()
{
return 'custom-pagination-links-view';
}
}
// lw blade:
{{ $transactions->links() }}
// path:
// resource/livewire/custom-pagination-links-view.blade.php
Does resources/views/custom-pagination-links-view.blade.php file exist?
Please or to participate in this conversation.