reupload
This commit is contained in:
21
app/Repositories/SearchRepository.php
Normal file
21
app/Repositories/SearchRepository.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user