mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-28 11:57:29 -04:00
19 lines
420 B
PHP
19 lines
420 B
PHP
@extends('frontend.amazy.layouts.app')
|
|
|
|
@section('content')
|
|
<div id="studio-plus" class="videos">
|
|
<guest-view-component :video="{{ $video }}" ></guest-view-component>
|
|
</div>
|
|
@endsection
|
|
|
|
@push('scripts')
|
|
<script src="{{ asset('/Modules/StudioPlus/Public/js/studioplus.js') }}"></script>
|
|
@endpush
|
|
|
|
<style scoped>
|
|
.videos {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin: 20px;
|
|
}
|
|
</style> |