|
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container my-5">
|
|
<h1 class="mb-4">Data List</h1>
|
|
@livewire('data-list', [
|
|
'url' => 'your-api-endpoint',
|
|
'avatar' => true,
|
|
'viewPath' => '/view/:id',
|
|
'header' => 'List Header',
|
|
'footer' => 'List Footer'
|
|
])
|
|
</div>
|
|
@endsection |