Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 172.70.230.65
Cant Read [ /etc/named.conf ]
8.1.5
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 /
noahpromax.com /
source /
resources /
views /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
client_panel
[ DIR ]
drwxr-xr-x
emails
[ DIR ]
drwxr-xr-x
errors
[ DIR ]
drwxr-xr-x
exports
[ DIR ]
drwxr-xr-x
layouts
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
about_us.blade.php
113
B
-rw-r--r--
blogs.blade.php
3.89
KB
-rw-r--r--
contact_us.blade.php
9.79
KB
-rw-r--r--
index.blade.php
15.19
KB
-rw-r--r--
index_old.blade.php
940
B
-rw-r--r--
portfolio.blade.php
14.99
KB
-rw-r--r--
post.blade.php
4.18
KB
-rw-r--r--
practice_area.blade.php
2.1
KB
-rw-r--r--
privacy_security.blade.php
876
B
-rw-r--r--
projects.blade.php
1.68
KB
-rw-r--r--
review.blade.php
9.18
KB
-rw-r--r--
search.blade.php
13.68
KB
-rw-r--r--
service_detail.blade.php
2.88
KB
-rw-r--r--
services.blade.php
4.55
KB
-rw-r--r--
sitemap.blade.php
4.12
KB
-rw-r--r--
sitemapxml.blade.php
2.34
KB
-rw-r--r--
templates.blade.php
42.18
KB
-rw-r--r--
terms.blade.php
988
B
-rw-r--r--
thank_you.blade.php
1.07
KB
-rw-r--r--
welcome.blade.php
72.5
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : blogs.blade.php
@extends('layouts.app') @section('contents') <?php if(isset($_GET['gclid'])){ $gclid=$_GET['gclid']; }else{ $gclid=''; } ?> <?php if(isset($_GET['MSCLKID'])){ $MSCLKID=$_GET['MSCLKID']; }else{ $MSCLKID=''; } ?> <div class="inner-banner inner-bg4"> <div class="container"> <div class="inner-title text-center"> <h3> Blog</h3> <ul> <li> <a href="{{url('/')}}">Home</a> </li> <li> Blog</li> </ul> </div> </div> </div> <div class="blog-area pt-100 pb-70"> <div class="container"> <div class="row justify-content-center"> @foreach($blogs as $blog) <div class="col-lg-4 col-md-6"> <div class="blog-card-two"> <a href="{{url('blog/'.$blog->slug)}}"> <img src="{{'assets/blog-posts/'.$blog->featured_image}}" alt="{{$blog->featured_alt}}" style="width: 100%; height: 260px"> </a> <div class="content"> <ul> <li><a href="{{url('blog/'.$blog->slug)}}"> <i class="bx bx-user"></i>Admin </a></li> @php $created_at = \Carbon\Carbon::parse($blog->created_at); $date = $created_at->format('d'); $month = $created_at->format('M'); @endphp <li><i class="bx bx-calendar"></i> {{$date}} {{$month}} </li> </ul> <h3><a href="{{url('blog/'.$blog->slug)}}">{{$blog->post_title}}</a></h3> <a href="{{url('blog/'.$blog->slug)}}" class="read-btn">Read More</a> </div> </div> </div> @endforeach <div class="col-lg-12 col-md-12 text-center"> <div class="pagination-area"> @if ($blogs->onFirstPage()) <a href="" class="prev page-numbers disabled"> <i class="bx bx-chevron-left"></i> </a> @else <a href="{{ $blogs->previousPageUrl() }}" class="prev page-numbers"> <i class="bx bx-chevron-left"></i> </a> @endif @php $start = max($blogs->currentPage() - 2, 1); $end = min($start + 4, $blogs->lastPage()); @endphp @for ($page = $start; $page <= $end; $page++) @if ($page == $blogs->currentPage()) <span class="page-numbers current" aria-current="page">{{ $page }}</span> @else <a href="{{ $blogs->url($page) }}" class="page-numbers">{{ $page }}</a> @endif @endfor @if ($blogs->hasMorePages()) <a href="{{ $blogs->nextPageUrl() }}" class="next page-numbers"> <i class="bx bx-chevron-right"></i> </a> @else <a href="" class="next page-numbers disabled"> <i class="bx bx-chevron-right"></i> </a> @endif </div> </div> </div> </div> </div> @endsection
Close