I want to display a multiple videos stored with Laravel Voyager in the frontend, I'm attempting to pull out my videos uploaded through admin with this:
@foreach ($videos as $video)
<video width="320" height="240" controls>
<source src="{{ Voyager::image( $video->file) }}" type="video/mp4">
</video>
@endforeach
But it doesn't work, can someone help?