관리-도구
편집 파일: videos.blade.php
@extends('frontend.layouts.app') @section('meta') @include('frontend.includes.meta') @endsection @section('content') <!-- Banner --> <section class="banner pt pb" style="background-image: url({{ asset(@$data->og_image) }}); background-position:center; background-size: cover;"> <div class="container"> <h1> {{ getLangValue(@$data->name)}} </h1> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="{{ route('index') }}">{{ __('index.top.home') }}</a></li> <li class="breadcrumb-item active" aria-current="page"> {{ getLangValue(@$data->name)}} </li> </ol> </nav> </div> </section> <!-- Banner End --> <!-- Gallery Page Us --> <section class="gallery-page mt mb"> <div class="container"> {{-- <div class="row"> @if (count($albums) == 0) <h3 class="text-center">{{ __('index.emptyInfo.noItem') }}</h3> @else <h3> {{ __('index.index.gallery') }} </h3> <hr> @foreach ($albums as $album) @php $slug = Str::slug($album->album_title['en']); @endphp <div class="col-lg-3 col-md-4 col-sm-6"> <div class="album-wrap"> <a href="{{ route('pageSlug', $slug) }}" title="{{ $album->album_title['en'] }}"> <img src="{{ asset(@$album->album_cover) }}" alt="{{ $album->album_title['en'] }}"> <span>{{ getLangValue($album->album_title) }}</span> <p> @php $album_images_count = \App\Models\AlbumImages::where('album_id', $album->id)->count(); @endphp {{ $album_images_count }} {{ __('index.index.photo') }} </p> </a> </div> </div> @endforeach @endif </div> --}} <div class="row"> {{-- <h3>{{ getLangValue(@$videoTitle->title) }}</h3> <hr> --}} <!--<div class="col-lg-3 col-md-4 col-sm-6">--> <!-- <div class="album-wrap">--> <!-- <iframe src="https://www.facebook.com/plugins/video.php?height=314&href=https%3A%2F%2Fwww.facebook.com%2F100063662486553%2Fvideos%2F1223574528208191%2F&show_text=false&width=560&t=0" style="border:none;overflow:hidden; width:100%;height:100%;" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share" allowFullScreen="true"></iframe>--> <!-- <h4 style="color: grey;">नेकपा एमालेका क्षेत्र न ४ बाट क एल पि सावा लिम्बूले उमेदवारी घाेषणा</h4>--> <!-- </div>--> <!--</div>--> @isset($projectVideos) @foreach ($projectVideos as $video) <div class="col-lg-3 col-md-4 col-sm-6"> <div class="album-wrap"> <iframe width="100%" height="190" src="https://www.youtube.com/embed/{{$video->embed_link}}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen=""></iframe> <h4 style="color: grey;font-size:14px; font-weight:normal;line-height:18px;">{{ getLangValue($video->title) }}</h4> </div> </div> @endforeach @endisset </div> </div> </section> <!-- Gallery Page End --> @endsection