Передача значения объекта, затем поиск по этому объекту - PullRequest
0 голосов
/ 02 мая 2018

У меня работает поисковая система, которая находит пользователей, чьи настройки совпадают с собственностью помещиков Это все хорошо, но я хочу, чтобы домовладелец мог выбрать свойство, затем нажать кнопку поиска и передать этот объект свойства для сравнения.

Это изображение поиска

Screenshot

Какое бы свойство не было выбрано из списка, оно используется для поиска в поиске.

Это вид поиска

<div class="row">
                <div class="col-md-10">
                  <select class="form-control" id="property_address" name="property_address">
                    <!--Gets all counties from DB -->
                    @foreach ($properties as $property)
                      <option value="{{$property->address . ', ' . $property->town . ', ' . $property->county}}">{{$property->address . ', ' . $property->town . ', ' . $property->county}}</option>
                    @endforeach
                  </select>
                </div> <!-- ./ col-6-->
              </div> <!-- ./ row-5  -->

            <div class="row mt-md-4">
                <div class="col-md-4">
                    <button type="submit" class="form-control btn btn-primary">
                        Search
                    </button>
                </div>
            </div>

Это контроллер

Первая часть отображает форму поиска

public function searchhome(){
      //Search Filter UI
      //Populates fields.
      $user = Auth::user();
      $properties = PropertyAdvert::where('user_id', Auth::id())->get();
      return view('pages/account/search/index', compact('user', 'properties'));}

Следующая логика

public function searchresults(Request $request){

    //Gets all users that are tenants
    $tenants = User::where('userType', 'tenant')->first();

    //Gets all preferances
    $Prefereances = TenantPreferance::all()->first();
    //Gets the prefereances that match a tenant id
    $pref = $Prefereances::where('user_id', $tenants->id)->first();

    //Gets the current signed in users property

    //Attempting to get value of property by name
    $property = $request->property_address;

    $result = $pref
              ->where('county' , $property->county)
              ->where('type' , $property->type)
              ->where('rent', '<=', $property->rent)
              ->where('bedrooms', '<=', $property->bedrooms)
              ->where('bathrooms', '<=', $property->bathrooms);

    $users = $result->get();

    return view('pages/account/search/results', compact('users'));
  }

Я пытался использовать объект запроса, чтобы установить выбранное свойство как сравниваемое.

Есть идеи?

1 Ответ

0 голосов
/ 03 мая 2018

Вместо того, чтобы заполнять значение select адресом, заполните его идентификатором свойства, а затем получите это свойство из базы данных по идентификатору, переданному из select.

$property = Property::find($request->property_id);


$result = $pref
          ->where('county' , $property->county)
          ->where('type' , $property->type)
          ->where('rent', '<=', $property->rent)
          ->where('bedrooms', '<=', $property->bedrooms)
          ->where('bathrooms', '<=', $property->bathrooms);

$users = $result->get();
...