@extends('layouts.app')
@section('content')
Custom Table
@livewire('custom-table', [
'url' => 'https://your-api-endpoint',
'columns' => [
['title' => 'Name', 'dataIndex' => 'name'],
['title' => 'Email', 'dataIndex' => 'email'],
],
'actions' => [
['type' => 'edit', 'path' => '/edit'],
['type' => 'view', 'path' => '/view'],
['type' => 'delete'],
],
'keyValue' => 'id'
])
@endsection