summaryrefslogtreecommitdiff
path: root/resources/views/v.blade.php
blob: b117079f8e39b5299fa5e104513db91f434a9125 (plain)
1
2
3
4
5
6
7
8
9
10
11
@extends('template')
<?php
    if (isset($_GET['file'])) {
        $videoFile = $_GET['file'];
    }
?>
<html>
    <video loop="true" autoplay="autoplay">
        <source src = "storage/uploads/{{ $videoFile }}" type = "video/mp4">
    </video>
</html>