123456789101112131415161718192021222324 |
- <?php
- /**
- * Created by PhpStorm.
- * User: zilongs
- * Date: 20-9-29
- * Time: 上午11:09
- */
- namespace App\Http\Controllers\Api\V1;
- class DocterController extends AuthController
- {
- public function docterConsultList()
- {
- $req = request()->post();
- $this->validate(request(), [
- 'type' => 'required|in:1,2',
- 'docter_name' => 'max:50',
- 'organization_name' => 'max:255',
- ]);
- }
- }
|