Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

floreap's avatar

404 Not Found for storage file with Vue3

<template>
    <div class="audio-player">
      <button @click="playPause">{{ isPlaying ? 'Pause' : 'Play' }}</button>

      {{ prayer }}

      <audio ref="audio">
        <source :src="prayer" type="audio/mpeg" />
        Your browser does not support the audio element.
      </audio>
      
    </div>
  </template>

prayer variable value is a string : "public/uploads/s.mp3". s.mp3 is located both in app/public/uploads/ and storage/app/public/uploads/.

Screenshot.

0 likes
1 reply

Please or to participate in this conversation.