관리-도구
편집 파일: notfound.blade.php
@extends('frontend.layouts.app') @section('meta') @include('frontend.includes.meta') @endsection @section('content') <!-- Banner --> <section class="banner pt pb" style="background-color: green"> <div class="container"> <h1>Your Searches</h1> </div> </section> <!-- Banner End --> <!-- Gallery Page Us --> <section class="gallery-page mt mb"> <div class="container"> <div class="row"> <div class="col-lg-3 col-md-4 col-sm-6"> <div class="album-wrap"> <h3>Nothing Found In Our Data</h3> </div> </div> </div> {{-- <div class="row"> <h3>{{ getLangValue($videoTitle->title) }}</h3> <hr> @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;">{{ getLangValue($video->title) }}</h4> </div> </div> @endforeach @endisset </div> --}} </div> </section> <!-- Gallery Page End --> @endsection