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
741 B
PHTML
19 lines
741 B
PHTML
2 weeks ago
|
<section class='GridClips'>
|
||
|
<div class="{{gfx()['container']}}">
|
||
|
<div class="grid-video-container">
|
||
|
@foreach(\App\Models\Clip::where('status',1)->orderByDesc('id')->limit(4)->get() as $clip)
|
||
|
<div class="grid-clip-item">
|
||
|
<i class="ri-file-video-line"></i>
|
||
|
<a href="{{$clip->webUrl()}}">
|
||
|
<img src="{{$clip->imgUrl()}}" alt="{{$clip->title}}">
|
||
|
<h3>
|
||
|
{{$clip->title}}
|
||
|
</h3>
|
||
|
</a>
|
||
|
{{-- <img src="{{$clip->imgUrl()}}" alt="">--}}
|
||
|
</div>
|
||
|
@endforeach
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|