HighSpeaker/.history/app/controller/api_20221224191423.php

21 lines
363 B
PHP
Raw Permalink Normal View History

2022-12-24 19:40:40 +05:30
<?php
namespace app\controller;
use support\Request;
use Webman\Captcha\CaptchaBuilder;
use support\View;
use Respect\Validation\Validator as v;
use support\Redis;
class api
{
public function search(Request $request)
{
$content=$request->post('content');
$contenttype=v::ip()->validate($content);
return view('login');
}
}