Merged updates from other projects
This commit is contained in:
28
app/Http/Controllers/SearchController.php
Normal file
28
app/Http/Controllers/SearchController.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\{Group,Product};
|
||||
|
||||
class SearchController extends Controller
|
||||
{
|
||||
use \App\Traits\GetImportDate;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the application dashboard.
|
||||
*
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function search(Request $request)
|
||||
{
|
||||
$result = [];
|
||||
|
||||
return json_encode($result);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user