Не могу понять как сохранить в бд при ajax. Вроде бы все нормально должно быть, но вот почему-то выходит данная ошибка The Response content must be a string or object implementing __toString(), "boolean" given. и я не пойму что с ней делать, моя реализация
В контроллере
public function store(Request $request)
{
Execute::created($request);
return true;
}
В роуте
Route::get('/execute/create', 'ExecuteController@create');
Route::post('/execute/create', 'ExecuteController@store');
И при отправке формы ajax
$('.form-create-execute').on('submit', function (e) {
e.preventDefault();
let form = $(this).serialize();
console.log(form);
$.post({
data: form,
url: 'http://localhost:8000/execute/create',
}).done((res) => {
console.log(typeof res);
console.log(res)
})
.fail(error => console.log(error.responseJSON.message))
})
Кто может подсказать как тут быть. Приходит на сервер string проверял черех gettype($request)