parfum/app/Livewire/Home/Product/Index.php
2025-12-03 22:28:45 +07:00

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');
}
}