관리-도구
편집 파일: index.blade.php
@extends('layouts.front-end.app') @section('title', 'Videos') @section('content') <div class="container py-4"> <!-- VIDEO SECTION --> @if($videoId) <div style="text-align: center; margin-bottom: 10px;"> <h4 style="margin: 0; font-size: 16px;"> {{ $title }} </h4> </div> <div style="position: relative; width: 100%; max-width: 560px; margin: 0 auto;"> <div style="padding-top: 56.25%; position: relative;"> <iframe src="https://www.youtube.com/embed/{{ $videoId }}?autoplay=1&rel=0" style="position: absolute; top:0; left:0; width:100%; height:100%; border-radius:10px;" frameborder="0" allow="autoplay; fullscreen" allowfullscreen> </iframe> </div> </div> @else <p class="text-center">No video available.</p> @endif @if($videoProducts->count()) <div class="row mt-4"> @foreach($videoProducts as $product) <div class="col-md-3 mb-4"> <div class="card h-100 text-center"> <a href="{{ route('product', $product->slug) }}"> <img src="{{ $product->thumbnail_full_url['path'] ?? '' }}" alt="{{ $product->name }}" class="card-img-top img-fluid" style="height:180px; object-fit:cover;"> </a> <div class="card-body"> <h6> <a href="{{ route('product', $product->slug) }}" class="product-name"> {{ $product->name }} </a> </h6> <p>₹{{ $product->unit_price }}</p> <a href="{{ route('product', $product->slug) }}" class="btn buy-btn btn-sm"> Buy Now </a> </div> </div> </div> @endforeach </div> @endif <!-- FOOTER SECTION --> {{-- Social Media --}} @if(!empty($footerData['social_media'])) <div class="d-flex gap-4 justify-content-center align-items-center my-3 fs-16"> @foreach($footerData['social_media'] as $media) <a href="{{ $media['link'] ?? '#' }}" target="_blank"> <img src="{{ dynamicAsset(path: 'public/assets/back-end/img/'.$media['name'].'.png') }}" width="18" alt=""> </a> @endforeach </div> @endif </div> <style> .buy-btn{ background:#000; color:#fff; border:none; } .buy-btn:hover{ background:#333; color:#fff; } .product-name{ color: black; text-decoration: none; } .product-name:hover{ color: #6190fd; } </style> @endsection