我需要有自己的自定義設(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 />
如何在 Laravel 中使用兩個(gè)輸入框從數(shù)據(jù)庫(kù)中過(guò)濾數(shù)據(jù)
尚方寶劍之說(shuō)
2023-06-24 15:31:45