mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-19 08:10:49 +08:00
API: upload sections list
This commit is contained in:
18
app/Http/Controllers/SearchBoxController.php
Normal file
18
app/Http/Controllers/SearchBoxController.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user