IndustryController.php 340 B

123456789101112131415
  1. <?php
  2. namespace App\Http\Controllers\Api;
  3. use App\Modes\Industry;
  4. use Illuminate\Http\Request;
  5. use App\Http\Controllers\Controller;
  6. class IndustryController extends Controller
  7. {
  8. public function index()
  9. {
  10. return showJsonSucc('获取行业列表成功', Industry::whereStatus(1)->select(['id', 'content'])->get());
  11. }
  12. }