mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-04 23:11:01 +08:00
19 lines
348 B
PHP
19 lines
348 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Controllers;
|
||
|
|
|
||
|
|
use App\Http\Resources\SearchBoxResource;
|
||
|
|
use App\Repositories\SearchBoxRepository;
|
||
|
|
use Illuminate\Http\Request;
|
||
|
|
|
||
|
|
class SearchBoxController extends Controller
|
||
|
|
{
|
||
|
|
private $repository;
|
||
|
|
|
||
|
|
public function __construct(SearchBoxRepository $repository)
|
||
|
|
{
|
||
|
|
$this->repository = $repository;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|