how to translate url like this
http://localhost/event/add
but i got always like this when i submit form
http://localhost/%7B%7B%20url('event/add')%20%7D%7D
my js code is
$.ajax({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
type: 'POST',
url: "{{ url('event/add') }}",
data: form,
dataType: "json",
success: function (data) {
console.log("yes :- " + JSON.stringify(data));
}
},'json');
my web.php file
Route::post('/event/add','eventController@create')->name('event.Add');