19 lines
302 B
PHP
19 lines
302 B
PHP
<?php
|
|
|
|
namespace App\Livewire\Home\Product;
|
|
|
|
use Livewire\Attributes\Layout;
|
|
use Livewire\Component;
|
|
|
|
#[Layout('components.layouts.home', [
|
|
'title' => 'Product',
|
|
])]
|
|
class Index extends Component
|
|
{
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.home.product.index');
|
|
}
|
|
}
|