I have button upload for uploading PDF in my view, the file was saved in database.
Here is my view html:
<div class="form-group">
{!! Form::label('file', 'File:') !!}
<p>{!! $attatchment->file !!}</p>
</div>
So I want to save it on my local folder, how to make its works ?
I'm using this: path="/file_storage";