Level 20
.doc is word document
Hello,
I would like to upload file attachment to the correct location.
form.blade.php
<div class="custom-file">
<!-- <button><input type="file" class="custom-file-input" id="file_attachment" name="file_attachment">Choose File</button> -->
<input type="file" class="custom-file-input" id="file_attachment" name="file_attachment" required>Choose File2
<label class="custom-file-label" for="validatedCustomFile">Choose file...</label>
<div class="invalid-feedback">Example invalid custom file feedback</div>
</div>
PageController.blade.php
$m = new ApplicationModel;
$m->attachment = $request->file_attachment;
$m->save();
When I check the upload address : C:\xampp\tmp\php28E7.tmp
This is strange the file is CV.doc - it should be word document.
Please or to participate in this conversation.