customers tablosundaki adi,soyadi,hizmet,puan gibi verileri sorgulamak istiyorum. verileri post ettiğimde çalışmıyor. muhtemelen route yanlış girdiğim için olabilir. web.php de ne gibi bir düzenleme yapmam gerekiyor? teşekkürler.
fonksiyonum aşağıdaki gibi
public function search(Request $request){
// Get the search value from the request
$search = $request->input('adi');
// Search in the title and body columns from the posts table
$customers = Customer::query()
->where('adi', 'LIKE', "%{$search}%")
->orWhere('soyadi', 'LIKE', "%{$search}%")
->orWhere('hizmet', 'LIKE', "%{$search}%")
->orWhere('puan', 'LIKE', "%{$search}%")
->get();
// Return the search view with the resluts compacted
return view('search', compact('customers'));
}
web.php aşağıdaki gibi
Route::get('/search', [PostsController::class,'search'])->name('search');