{{ $products->appends($_GET)->links()}}
// if $id has value it will include "where('id','<',$id) else will return all"
$wells = DB::table('well_s')
->when($id, function ($query, $id) {
return $query->where('id','<',$id);
})
->paginate(20);
$tests = DB::table('view_tests')->whereIn('metric_id',$metricsIds)->paginate(4);
$tests = $tests->filter(function ($item) use ($var) {
return false !== stristr($item->name, $var) ||
false !== stristr($item->section_name, $var) ||
false !== stristr($item->method, $var) ||
false !== stristr($item->limit, $var) ||
false !== stristr($item->accredited_detail, $var);
return view('frontend.test_detailes',compact('tests'))->render();
Copy code
//web.php
Route::get('contact-search',[ContactController::class,'search'])->name('contact.search');
//ui.blade.php
<form action="{{route('contact.search')}}" method="get">
<div class="me-2">
<div class="input-group">
<input type="text" name="search" value="{{request('search')}}" class="form-control border border-primary" placeholder="Search" required>
<button class="btn btn-outline-primary" type="submit">
<i class="fa-solid fa-search"></i>
</button>
</div>
</div>
</form>
{{ $contacts->appends(Request::all())->links() }}
//_Controller.php
public function search(IlluminateHttpRequest $request){
$searchKey = $request->search;
$contacts = Contact::where("name","LIKE","%$searchKey%")->orWhere("phone","LIKE","%$searchKey%")->paginate(5);
return view('contact.index',compact('contacts'));
}
$tests = DB::table('view_tests')
->whereIn('metric_id',$metricsIds)
->where('name', '=', $var)
->paginate(4);
Copy code