Zaczynam przygodę z Laravelem i natrafiłem na mały problem

Wykorzystuję w moim projekcie Laravel 5.8.
Mam działający kod wyświetlający listę użytkowników.
Mój kod wygląda następująco:
Users:
class User extends Authenticatable implements MustVerifyEmail { use Notifiable; use psCMS\Presenters\UserPresenter; protected $fillable = ['user_height', 'year_birth', 'company_id', 'enable', 'name', 'surname', 'email', 'email_verified_at', 'password', 'counter', 'url_address', 'isCompany', 'isMailing', 'content', 'nip1', 'business1', 'phone1', 'street1', 'number1', 'postal_code1', 'city1', 'country_id1', 'provincial_id1', 'nip2', 'business2', 'phone2', 'street2', 'number2', 'postal_code2', 'city2', 'country_id2', 'provincial_id2', 'nip3', 'business3', 'phone3', 'street3', 'number3', 'postal_code3', 'city3', 'country_id3', 'provincial_id3', 'cash', 'lng', 'lat', 'enable_map', 'remember_token', 'created_at', 'updated_at', 'last_login_at', 'last_login_ip']; protected $hidden = [ 'password', 'remember_token', ]; public function roles() { return $this->belongsToMany('App\Role'); } public function mainRole() { return $this->hasOne('App\Role'); } } Schema::create('users', function (Blueprint $table) { $table->bigIncrements('id'); $table->bigInteger('company_id')->unsigned(); $table->foreign('company_id')->references('id')->on('companies')->onDelete('cascade'); $table->boolean('enable')->default(0); $table->string('name', 120)->nullable(); $table->string('surname', 120)->nullable(); $table->string('email', 120)->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->bigInteger('counter')->default(0); $table->string('url_address', 160); $table->boolean('isCompany')->default(0); $table->boolean('isMailing')->default(0); $table->text('content')->nullable(); $table->string('nip1', 12)->nullable(); $table->string('business1', 120)->nullable(); $table->string('phone1', 60)->nullable(); $table->string('street1', 150)->nullable(); $table->string('number1', 8)->nullable(); $table->string('postal_code1', 12)->nullable(); $table->string('city1', 100)->nullable(); $table->bigInteger('country_id1')->default(0); $table->bigInteger('provincial_id1')->default(0); $table->string('nip2', 12)->nullable(); $table->string('business2', 120)->nullable(); $table->string('phone2', 60)->nullable(); $table->string('street2', 150)->nullable(); $table->string('number2', 8)->nullable(); $table->string('postal_code2', 12)->nullable(); $table->string('city2', 100)->nullable(); $table->bigInteger('country_id2')->default(0); $table->bigInteger('provincial_id2')->default(0); $table->string('nip3', 12)->nullable(); $table->string('business3', 120)->nullable(); $table->string('phone3', 60)->nullable(); $table->string('street3', 150)->nullable(); $table->string('number3', 8)->nullable(); $table->string('postal_code3', 12)->nullable(); $table->string('city3', 100)->nullable(); $table->bigInteger('country_id3')->default(0); $table->bigInteger('provincial_id3')->default(0); $table->decimal('cash', 9, 2)->default(0); $table->decimal('lng', 10, 8)->default(0); $table->decimal('lat', 10, 8)->default(0); $table->boolean('enable_map')->default(0); $table->integer('user_height')->default(0); $table->rememberToken(); $table->timestamps(); $table->engine = "InnoDB"; });
Services:
class UsersServices extends Model { protected $quarded = []; protected $fillable = ['name', 'type', 'enable']; public $timestamps = false; } Schema::create('users_services', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name', 100); $table->integer('type'); $table->boolean('enable')->default(0); $table->engine = "InnoDB"; });
WYbrane/świadczone przez użytkownika usługi:
Schema::create('users_services_selected', function (Blueprint $table) { $table->bigInteger('user_id')->unsigned(); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); $table->bigInteger('service_id')->unsigned(); $table->foreign('service_id')->references('id')->on('users_services')->onDelete('cascade'); $table->engine = "InnoDB"; }); class UserServicesSelected extends Model { protected $quarded = []; protected $fillable = ['user_id', 'service_id']; protected $table = 'users_services_selected'; public $timestamps = false; }
Moja aktualna funkcja do wyświetlania użytkowników
public function getUserList(string $query, string $sortColumn, string $sortMethod) { return User::ofRoleType(['user', 'userPremium', 'userSponsor']) ->where(function ($q) use ($query, $sortColumn, $sortMethod) { ->where('enable', '=', 1) ->where('email_verified_at', '<>', null) ->orderBy($sortColumn, $sortMethod); })->orderBy($sortColumn, $sortMethod)->paginate(15); } else { return User::ofRoleType(['user', 'userPremium', 'userSponsor']) ->where('enable', '=', 1) ->where('email_verified_at', '<>', null) ->orderBy(DB::raw('IF(premium_for > CURDATE(), 0, 1)')) ->orderBy('hits', 'DESC') ->paginate(15); } }
Formatka do wyszukiwania:
<form method="get" action="{{ route('result') }}"> Wzrost użytkownika: Pokaż wszystko: <input type="checkbox" value="0" name="s_height[]"> 150 cm: <input type="checkbox" value="1" name="s_height[]"> 151-160 cm: <input type="checkbox" value="2" name="s_height[]"> 161-170 cm: <input type="checkbox" value="3" name="s_height[]"> 171-180 cm: <input type="checkbox" value="4" name="s_height[]"> >180 cm: <input type="checkbox" value="5" name="s_height[]"> Usługi: Pokaż wszystko: <input type="checkbox" value="0" name="s_services1[]"> @foreach($services as $service) {{ $service->name }} <input type="checkbox" value="{{ $service->id }}" name="s_services1[]"> @endforeach </form>
Wzrost użytkownika = User->user_height
Data urodzenia użytkownika = User->year_birth
Potrzebuję dorobić nowe opcje wyszukiwania:
1. Wyświetlanie użytkowników posiadających odpowiedni wiek w oparciu o: s_year_birth_from i s_year_birth_to (User-> year_birth)
2. Wyświetlanie użytkowników oferujących zaznaczone w wyszukiwarce usługi (zaznaczone / oferowane usługi = UserServicesSelected)
3. Wyświetlanie użytkowników posiadających odpowiedni wzrost w oparciu o: s_height (User->user_height)
Jak można to zrobić? Chciałbym to dodać to do mojej obecnej funkcji wyświetlającej użytkowników: getUserList
Bardzo proszę o pomoc.