What you can do is
Your URL will be
Route::get('folder/{folder_number}', 'FolderController@getFolderImage');
//Controller file FolderController { getFolderImage(Request $request) { $request->folder_number; //1 data will be pass over here //your internal logic to get the image. } }
i hope this helps
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community