UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_6cb3e375df22
/
resources
/
views
/
partials
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
slide.blade.php
<section id="slider"> <div id="carousel-home" class="carousel slide" data-ride="carousel"> <div class="carousel-inner" role="listbox"> <?php $i = 0; ?> @foreach($slides as $slide) <div class="item @if($i === 0) {{ 'active' }} @endif"> <a href="{{ $slide->link }}" title="{{ $slide->title }}"> <img src="/storage/slide/{{$slide['picture']}}" alt="{{ $slide->title }}"> </a> <div class="carousel-caption"> @if(!empty($slide->title)) <h2>{{ $slide->title }}</h2> @endif @if(!empty($slide->text)) <p class="hidden-xs hidden-sm">{{ $slide->text }}</p> @endif @if(!empty($slide->link_text)) <a href="{{ $slide->link }}" class="hidden-xs btn btn-info btn-lg">{{ $slide->link_text }}</a> @endif </div> </div> <?php $i++; ?> @endforeach </div> <!-- Controls --> @if(count($slides) >= 2) <a class="left carousel-control" href="#carousel-home" role="button" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> <span class="sr-only">{{ trans('pagination.previous') }}</span> </a> <a class="right carousel-control" href="#carousel-home" role="button" data-slide="next"> <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> <span class="sr-only">{{ trans('pagination.next') }}</span> </a> @endif </div> </section> <script type="text/javascript"> var checkitem = function() { var $this; $this = $("#carousel-home"); if ($("#carousel-home .carousel-inner .item:first").hasClass("active")) { $this.children(".left").hide(); $this.children(".right").show(); } else if ($("#carousel-home .carousel-inner .item:last").hasClass("active")) { $this.children(".right").hide(); $this.children(".left").show(); } else { $this.children(".carousel-control").show(); } }; checkitem(); $("#carousel-home").on("slid.bs.carousel", "", checkitem); </script>
Copyright © 2026 - UnknownSec