mgsmus Ben ilgili linktekilere baktım ama çözemedim. buraya route ve controllerdaki kodlarımı yazsam yardımcı olabilir misiniz?
Route::post('/collection', [adminController::class, 'adminCollectionPost'])->name('collection.post');
Controller:
public function adminCollectionPost(Request $request){
$date = $request->date;
$collections = Appointment::where('appointment_date', $date)->paginate(5)->withQueryString();
return view('admin.collection', compact('collections', 'date'));
}
View'deki kodum paginate kısmı
{!! $collections->links() !!}