Files
backend-mm/app/Repositories/SearchRepository.php
2025-09-25 03:03:31 +05:00

22 lines
306 B
PHP

<?php
namespace App\Repositories;
class SearchRepository
{
public string $name;
public function __construct()
{
$this->name = __('Search');
}
/**
* Products page
*/
public function productsPage(): string
{
return route('web.search.index');
}
}