路由方法不存在

时间:2019-11-06 15:54:14

标签: laravel-5 routes

我正在尝试创建路线,但出现错误。方法Illuminate \ Routing \ Route :: get不存在。

Route::get('/', function () {
    $url = parse_url(URL::all());
    $domain = explode('.', $url['host']);
    $subdomain = $domain[0];
    $name = DB::table('users')->where('name', $subdomain)->get();
    dd($name); 
    // write the rest of your code.
});

找不到此错误

0 个答案:

没有答案
相关问题