如何在表格的页面上仅显示“搜索”数据?

时间:2018-10-11 09:12:06

标签: php database laravel search-form

我制作了搜索表单,并尝试通过搜索来检索数据。但是在我开始搜索页面上已经检索的数据之前。因为我已经以这种方式制作了控制器。当我删除该检索功能时,页面仅运行白屏。所以问题就在这里,我想查看搜索后的表和数据,而不是之前的。但是对如何做或做错了事感到困惑。

这是控制者:

public function welcome()
{

    $estates = Estates::orderBy('price')->get();

    $data['estates'] = $estates;
    return view('welcome', $data);

}

public function search(Request $request)
{
    $q = $request->q;
    if (trim($q) !== ""){//here

        $estates = \DB::table('estates')->where("name","LIKE", "%" . $q . "%")
            ->orWhere("address","LIKE", "%" . $q . "%")
            ->get();

        dd($estates);

        if(count($estates) > 0){
            return view("welcome", compact('estates'))->withQuery($q);
        }

    }

    $estates = array();//here
    return view("welcome", compact('estates'))->withMessage("No Found!");//here
}

还有我的路线:

Route::get("/", "PagesController@welcome");

Route::post("/search", "PagesController@search")->name('search.route');

另外,当我尝试搜索时,页面不是像表格那样出现,而是像这样。

Collection {#221 ▼
  #items: array:1 [▶]
}

如果您需要查看我的视图页面,我也可以添加它。 谢谢您的帮助!

1 个答案:

答案 0 :(得分:0)

我解决了这个问题:

public function welcome()
    {

        $estates = array();//here

        $data['estates'] = $estates;
        return view('welcome', $data);

    }

    public function search(Request $request)
    {
        $q = $request->q;
        if ($q !== null && trim($q) !== ""){//here

            $estates = \DB::table('estates')
                ->where("name","LIKE", "%" . $q . "%")
                ->orWhere("address","LIKE", "%" . $q . "%")
                ->orWhere("company_name","LIKE", "%" . $q . "%")
                ->orderBy('price')->get();

            if(count($estates) > 0){
                return view("search", compact('estates'))->withQuery($q);
            }

        }

        $estates = array();//here
        return view("search", compact('estates'))->withMessage("No Found!");//here
    }