mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
795 B
PHTML
19 lines
795 B
PHTML
<section class="AutoPlayAttachment live-setting" data-live="{{$data->area_name.'_'.$data->part}}" >
|
|
<div class="{{gfx()['container']}}">
|
|
<h1>
|
|
{{getSetting($data->area_name.'_'.$data->part.'_title')}}
|
|
</h1>
|
|
<div class="autoplay-clip-list">
|
|
@php($group = \App\Models\Group::first())
|
|
@foreach($group->attachs()->where('ext','mp4')->get() as $clip)
|
|
<div class="autoplay-clip-item-group">
|
|
<a href="{{$clip->url()}}">
|
|
<i class="ri-play-circle-line"></i>
|
|
<video preload="none" src="{{$clip->url()}}" poster="{{$group->bgUrl()}}" muted ></video>
|
|
</a>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
</section>
|