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
16 lines
340 B
<?php
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\AgentInfo;
|
|
use Illuminate\Http\Request;
|
|
|
|
class AgentInfoController extends Controller
|
|
{
|
|
public function about()
|
|
{
|
|
$about = AgentInfo::where('agent_id', $this->agent_id)->value('about');
|
|
return $this->success(['about' => $about]);
|
|
}
|
|
}
|