海南旅游SAAS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
340 B

  1. <?php
  2. namespace App\Http\Controllers\Api;
  3. use App\Http\Controllers\Controller;
  4. use App\Models\AgentInfo;
  5. use Illuminate\Http\Request;
  6. class AgentInfoController extends Controller
  7. {
  8. public function about()
  9. {
  10. $about = AgentInfo::where('agent_id', $this->agent_id)->value('about');
  11. return $this->success(['about' => $about]);
  12. }
  13. }