第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在 Laravel 中使用兩個(gè)輸入框從數(shù)據(jù)庫(kù)中過(guò)濾數(shù)據(jù)

如何在 Laravel 中使用兩個(gè)輸入框從數(shù)據(jù)庫(kù)中過(guò)濾數(shù)據(jù)

PHP
尚方寶劍之說(shuō) 2023-06-24 15:31:45
我需要有自己的自定義設(shè)計(jì),我可以在其中添加 @foreach 并自定義設(shè)計(jì),我不知道該怎么做,我嘗試了很多方法但失敗了。有人可以建議我一個(gè)解決方案,或者建議我遵循任何教程,我可以根據(jù)需要將過(guò)濾后的數(shù)據(jù)加載到我的視圖中。這是我的stores.blade.php搜索字段和表格所在的位置,? ?<h3 align="center">Store Locator</h3>? ? ? ? <div class="row">? ? ? ? ? ? <div class="col-md-4"></div>? ? ? ? ? ? <div class="col-md-4">? ? ? ? ? ? ? ? <div class="form-group">? ? ? ? ? ? ? ? ? ? <select name="filter_district" id="filter_district" class="form-control" required>? ? ? ? ? ? ? ? ? ? ? ? <option value="">Select Distric</option>? ? ? ? ? ? ? ? ? ? ? ? @foreach ($district_name as $district)? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<option value="{{ $district->district }}">{{ $district->district }}</option>? ? ? ? ? ? ? ? ? ? ? ? @endforeach? ? ? ? ? ? ? ? ? ? </select>? ? ? ? ? ? ? ? </div>? ? ? ? ? ? ? ? <div class="form-group">? ? ? ? ? ? ? ? ? ? <select name="filter_outlet" id="filter_outlet" class="form-control" required>? ? ? ? ? ? ? ? ? ? ? ?<option value="">Select Outlet</option>? ? ? ? ? ? ? ? ? ? ? ? @foreach($outlet_name as $country)? ? ? ? ? ? ? ? ? ? ? ? ? ? <option value="{{ $country->outlet }}">{{ $country->outlet }}</option>? ? ? ? ? ? ? ? ? ? ? ? @endforeach? ? ? ? ? ? ? ? ? ? </select>? ? ? ? ? ? ? ? </div>? ? ? ? ? ? ? ??? ? ? ? ? ? ? ? <div class="form-group" align="center">? ? ? ? ? ? ? ? ? ? <button type="button" name="filter" id="filter" class="btn form-submit">Filter</button>? ? ? ? ? ? ? ? ? ? <button type="button" name="reset" id="reset" class="btn form-submit">Reset</button>? ? ? ? ? ? ? ? </div>? ? ? ? ? ? </div>? ? ? ? ? ? <div class="col-md-4"></div>? ? ? ? </div>? ? ? ? <br />
查看完整描述

1 回答

?
FFIVE

TA貢獻(xiàn)1797條經(jīng)驗(yàn) 獲得超6個(gè)贊

通過(guò) eager load 發(fā)送結(jié)果時(shí),需要包含商店的區(qū)域名稱。因此,在您的商店模型中,創(chuàng)建一個(gè)belongsTo關(guān)系


public function district() {

    return $this->belongsTo('App\District', 'district');

}

所以當(dāng)你發(fā)送結(jié)果時(shí),你可以寫


$data = Store::select('id','outlet', 'province', 'district', 'no1', 'no2', 'no3', 'address')

     ->where('district', $request->filter_district)

     ->where('outlet', $request->filter_outlet)

     ->with(['district'])

     ->get();


查看完整回答
反對(duì) 回復(fù) 2023-06-24
  • 1 回答
  • 0 關(guān)注
  • 150 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)