Well I got this problem for a few days now. My issue is: In my .vue page I created the followed link to download a simple PDF file:
<a href= {{ asset('download/form.pdf') }}> Download here. </a>
(The link shows up normally.)
The blade:
@extends('layouts.esic')
@section('content')
<solicitante></solicitante>
@endsection
But when I click DOWNLOAD HERE I got a error back:
Sorry, the page you are looking for could not be found.
I mean. The file is placed at the public folder and code seems okay. Am I missing something?
Cheers!