I have a form in datatable as follows.
<form method="post" enctype="multipart/form-data">
   <label for="file_'+row["course_id"]+'">
      <i class="far fa-2x fa-file-pdf f-gray"></i>
   </label>
   <input type="file" id="file_'+row["course_id"]+'">
</form>
This shows a pdf button inside datatable for file upload. Onclick it will show a file browser for file selection.
Using javascript's FormData() I am passing the file to Laravel controller.
$(document).on("change", "[id^=file_]", function(e) {
        var file_data = this.files[0];
        var form_data = new FormData();
        form_data.append("pdf_file", file_data);
        $.ajax({
            url: "/pdfUpload",
            cache: false,
            processData: false,
            data: form_data,
            type: 'post',
            success: function(data) {
                $('div.flash-message').html(data).fadeOut(5000);
            }
        });
    });
The request headers is as follows:

But the following code says there is no file and is returning null.
public function upload(\Google_Service_Drive $service, Request $request){
        if ($request->hasFile('pdf_file')) {
            dump('yes');
        }else{
            dump('no');
        }
        dd($request->pdf_file);
        $data = file_get_contents(?)
}
Output:
Any help on what I'm missing here?
Also, I need to get $data = file_get_contents(?) working. What should I pass here


