I need to uploading some PDF file into database and display it. I have found a way that posibly displaying the PDF file, but I had no idea how to save it into the database itself.
I tried some tutorials but nothing works. Right now, I have this code in my controller `
DB::table('pegawai')->insert([
'nama' => $request->nama,
'jabatan' => $request->jabatan,
'umur' => $request->umur,
'alamat' => $request->alamat,
'file' => $request->file
]);
`
The file always showing [BLOB -24]. Is there anything I could do to make the file get uploaded into the database? Thank You.