Я пытаюсь получить данные (задания) и отобразить каждое отдельное задание, у меня есть маршрут для заданий и маршрут для одного задания, но когда я использую маршрут в контроллере, я получаю маршрут, который не определен, даже если все в порядке, проверьте мой вопрос
ajax вызов
<script>
$(document).on('click','.submit', function(e) {
var category = $("input[name=category_id]").val();
var location= $(".js-example-basic-single option:selected" ).val();
console.log(location);
$.ajax({
type:'get',
data: {location : location,category : category},
url:'/job_listing',
success:function(data) {
$('.job-list').html(data);
console.log(category);
console.log(location);
}
})
});
функция в cotroller
public function show_offers(Request $request){
$category = $request->category;
$location= $request->location;
if($request->ajax()) {
$data = Job_offer::where([
'category_id' => $category,
'location_id' => $location,
])->orwhere('location_id','=',$location)->orwhere('category_id','=',$category)->get();
// ->orWhere('location_id','LIKE','%'.$input.'%')->with('location')->get();
$output = '';
if (count($data)>0) {
$output = '';
foreach ($data as $row){
$output .= '<div class="job-info"> <div class="job_offer-img"><img class="offer-img" src='.'img/'.$row->offer_image.'></div>';
$output .= '<div class="job-title"> <span class="job"> <a href="'.route('single/offer', $row->id).'" class="job-offer-title">'.$row->offer_title.'</a></span>';
$output .= '<span class="location">'.$row->location->Name.'</span></div>';
$output .= '<div class="job-contrat"> <span class="contract"> '.$row->type_emploi.'</span></div></div>';
}
$output .= '';
}
else {
$output .= '<li class="list-group-item">'.'No results'.'</li>';
}
return $output;
}
маршрут
Route::get('single_offer/{offer_id}','job_seeker\Job_offers@single_offer')->name('single/offer');
Route::get('job_listing','job_seeker\home_job_seeker@show_offers');