I perform an ajax call to a controller, but it seems not working. What can I do?
public function postSubmit($id) {
header('Content-Type: application/json');
$uploaded = [];
$allowed = ['jpg', 'png'];
$succeeded = [];
$failed = [];
if(!empty($_FILES['dosya'])) {
// Not entering here.
}
...
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community