посмотрите
vuejs
data() {
return {
url: '/api/client/document/upload',
}
},
вычислено
attachment() {
return {
slug: 'testing',
test_type[enter image description here][1]: (this.individual === 1)? 'transfer_individual': 'transfer_corporate',
application_id: this.client_investment_id
};
метод загрузки
upload: function () {
if(!this.validateForm()) {
Message.warning({ message: 'Complete the form and proceed' });
return;
}
if(!this.$refs.upload.uploadFiles[0]) {
Message.warning({ message: 'Upload the form and proceed' });
return;
}
console.log('data', this.attachment);
this.$refs.upload.submit();
},
laravel на стороне контроллера
public function uploadDocument()
{
$input = request()->all();
dd($input);
}
есть файл, загружаемый на указанный URL;
когда я получаю dd из контроллера, я получаю application_idиз нуля, но если я console.log перед отправкой могу просмотреть мои данные.что я могу делать не так.
вывод console.log вывод dd