Files
pingan_unionpay_new/app/Api/Controllers/IndexController.php
2021-01-31 11:50:56 +08:00

17 lines
253 B
PHP

<?php
namespace App\Api\Controllers;
class IndexController extends Controller
{
public function index()
{
return $this->respond('200', [
'code' => 200,
'message' => 'Json Api is ready',
]);
}
}