mirror of
https://gh.wpcy.net/https://github.com/aiiddqd/AppCustom.git
synced 2026-07-18 10:53:47 +08:00
16 lines
290 B
PHP
16 lines
290 B
PHP
<?php
|
|
|
|
namespace Modules\AppCustom\Http\Controllers;
|
|
|
|
use Illuminate\Routing\Controller;
|
|
|
|
class AppCustomController extends Controller
|
|
{
|
|
|
|
/**
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public static function index(){
|
|
return \Response::json(['test ok' => 1]);
|
|
}
|
|
}
|