One Hat Cyber Team
Your IP :
172.71.120.56
Server IP :
188.114.97.7
Server :
Linux advantage-project 5.14.0-503.26.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 19 16:28:19 UTC 2025 x86_64
Server Software :
Apache/2.4.62 (Rocky Linux) OpenSSL/3.2.2
PHP Version :
8.3.17
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
htmlOld
/
resources
/
views
/
content
/
View File Name :
view.blade.php
@extends('layouts.frontend') @section('section_title') <section class="section page-title bg-image context-dark" style="background-image: url('/{{ env('PAGE_TITLE_BG_IMAGE') }}');"> <!--RD Navbar--> @include('layouts.frontend.nav') <div class="container"> <div class="row"> <div class="col-md-10 col-xl-8"> <h2 class="page-title-text">{{$row->title ?? ''}}</h2> </div> </div> </div> </section> @endsection @section('content') <section class="section-md bg-transparent"> {{-- <div class="container"> <div class="row row-25 row-xl-55"> --}}{{-- <div class="col-xl-11"> <h2 class="text-decorated text-decorated-large">FundMe connects nonprofits, donors, and companies in nearly every country around the world to access the funding, & necessary tools.</h2> </div>--}}{{-- <div class="col-md-6 col-lg-11"> {!! $row->page_content !!} </div> </div> </div>--}} <div class="container"> <div class="row row-25 row-xl-55"> <div class="col-xl-11"> <h2 class="text-decorated text-decorated-large" > {!! $row->description !!} </h2> </div> <div class="col-md-12 col-lg-10"> <div class="gallery"><a href="{{ asset($row->image) }}"><img src="{{ asset($row->image) }}" alt=""/></a> </div> </div> <div class="col-md-12 col-lg-10"> {!! $row->content !!} </div> <div class="col-md-12 col-lg-12"> <div class="gallery" > @foreach($row->gallery as $gallery) <a href="{{ asset('/uploads/gallery/'.$gallery->image) }}"> <img style="width:200px; margin:5px; float: left;" src="{{ asset('/uploads/gallery/'.$gallery->image) }}" alt="image"> </a> @endforeach </div> </div> <div class="divider col-md-12 col-lg-12 "></div> {{-- other news--}} <div class="container"> <div class="row row-30 row-xl-60 row-xxl-100"> @foreach($contentList as $row) <div class="col-md-4"> <!-- Post--> <div class="post post-shadow" style=" height: 460px;"> <div class="readNewscrop"> <a class="post-media" href="{{route('content-view',[$row->category->code,$row->slug])}}"><img src="/{{ $row->image }}" alt=""> </a> </div> <div class="post-content"> <h4 class="post-title text-divider"><a href="{{route('content-view',[$row->category->code,$row->slug])}}">{{mb_substr(strip_tags($row->title),0,150)}}</a></h4> <div class="post-date">{{$row->created_at->format('d M Y')}}</div> </div> </div> </div> @endforeach </div> </div> {{-- other news--}} </div> </div> </section> @endsection @section('js') <script src="{{ asset('vendor/jquery/jquery.js') }}"></script> <script src="{{ asset('vendor/photobox/photobox.js') }}"></script> <script> $('.gallery').photobox('a',{ time:0 }); </script> @endsection