Level 60
https://laravel.com/docs/11.x/filesystem#the-public-disk
http://localhost:8000/uploads/s.mp3
1 like
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
<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/.

https://laravel.com/docs/11.x/filesystem#the-public-disk
http://localhost:8000/uploads/s.mp3
Please or to participate in this conversation.