#tradewind:test

This commit is contained in:
2021-06-08 18:35:18 +08:00
parent 15b344e983
commit 5f850e288d
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<?php
namespace App\Http\Controllers\Api;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class TestController extends Controller
{
//
public function index(){
$data = ['key' => 'value'];
return response()->json($data);
}
}