| 123456789101112131415 |
- <?php
- namespace App\Http\Controllers\Api;
- use App\Modes\Industry;
- use Illuminate\Http\Request;
- use App\Http\Controllers\Controller;
- class IndustryController extends Controller
- {
- public function index()
- {
- return showJsonSucc('获取行业列表成功', Industry::whereStatus(1)->select(['id', 'content'])->get());
- }
- }
|