One Hat Cyber Team
Your IP :
172.71.255.81
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
/
news
/
Edit File:
index.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">News Posts</h2> </div> </div> </div> </section> @endsection @section('content') <section class="section-md bg-transparent"> <div class="container"> <div class="container"> <div class="row row-30 row-xl-60 row-xxl-100"> @foreach($rows as $news) <div class="col-md-4"> <!-- Post--> <div class="post post-shadow" style=" height: 460px;"> <div class="readNewscrop"> <a class="post-media" href="{{route('news-view',$news->slug)}}"><img src="/{{ $news->image }}" alt=""> </a> </div> <div class="post-content"> <h4 class="post-title text-divider"><a href="{{route('news-view',$news->slug)}}">{{mb_substr(strip_tags($news->title),0,150)}}</a></h4> <div class="post-date">{{$news->created_at->format('d M Y')}}</div> </div> </div> </div> @endforeach </div> <div class="justify-content-center pagination"> {!! $rows->links() !!} </div> </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
Simpan