This section will help you set up the frontend components
Laravel install
composer require humweb\inertia-table
or
Go Adapter install
go get github.com/humweb/inertia-go
Checkout https://github.com/humweb/inertia-go for mor info
frontend package
// Laravel
npm i [email protected]
// Go
npm i inertia-vue-table
import {Table, HasInertiaTable} from 'inertia-vue-table';
Add mixin to your component
mixins: [HasInertiaTable]
<Table
:records="records"
:pagination="pagination"
v-model="tableData"
/>
The MIT License (MIT). Please see License File for more information.