IndexController.php 247 B

123456789101112131415161718
  1. <?php
  2. namespace App\Http\Controllers\Home;
  3. use Illuminate\Http\Request;
  4. use App\Http\Controllers\Controller;
  5. class IndexController extends Controller
  6. {
  7. public function index()
  8. {
  9. return '前台主页,暂无内容';
  10. }
  11. }