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.1
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 /
gandhi-school /
resources /
views /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
aboutus
[ DIR ]
drwxrwxr-x
album
[ DIR ]
drwxrwxr-x
carousell
[ DIR ]
drwxrwxr-x
committee
[ DIR ]
drwxrwxr-x
committee_type
[ DIR ]
drwxrwxr-x
contact_person
[ DIR ]
drwxrwxr-x
executive_committee_term
[ DIR ]
drwxrwxr-x
master_committee
[ DIR ]
drwxrwxr-x
member
[ DIR ]
drwxrwxr-x
member_type
[ DIR ]
drwxrwxr-x
news
[ DIR ]
drwxrwxr-x
notice
[ DIR ]
drwxrwxr-x
pta_term
[ DIR ]
drwxrwxr-x
publication
[ DIR ]
drwxrwxr-x
recent-news
[ DIR ]
drwxrwxr-x
setup
[ DIR ]
drwxrwxr-x
suchana
[ DIR ]
drwxrwxr-x
team
[ DIR ]
drwxrwxr-x
video
[ DIR ]
drwxrwxr-x
app.blade.php
13.96
KB
-rw-rw-r--
dashboard.blade.php
2.14
KB
-rw-rw-r--
footer.blade.php
238
B
-rw-rw-r--
index.blade.php
41.93
KB
-rw-rw-r--
menu.blade.php
3.48
KB
-rw-rw-r--
sidebar.blade.php
5.41
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : menu.blade.php
@extends('admin.app') @section('content') <div class="row"> <div class="col-lg-12 margin-tb"> <div class="pull-left"> <h2>Menu</h2> </div> </div> </div> @if ($errors->any()) <div class="alert alert-danger"> <strong>Whoops!</strong> There were some problems with your input.<br><br> <ul> @foreach ($errors->all() as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif <div> <form action="{{ route('menu.add') }}" method="POST" enctype="multipart/form-data"> @csrf <div class="row"> <div class="col-sm-4"> <div class="form-group"> <strong>Name:</strong> <input type="text" name="name" class="form-control" placeholder="Name" required> </div> </div> <div class="col-sm-4"> <div class="form-group"> <strong>Description:</strong> <textarea class="form-control" name="description" placeholder="description" ></textarea> </div> </div> <div class="col-sm-3"> <div class="form-group"> <strong>Category:</strong> <select type="text" name="category" class="form-control" > <option value="veg">VEG</option> <option value="non-veg">Non-Veg</option> <option value="cafe">Cafe Item</option> <option value="drink">Drinks</option> <option value="other">Others</option> </select> </div> </div> <div class="col-sm-4"> <div class="form-group"> <strong>Rate:</strong> <input class="form-control" name="rate" placeholder="rate" required> </div> </div> {{-- <div class="col-sm-4"> --}} <div class="form-group"> <strong>Image:</strong> <input type="file" name="image" class="form-control" placeholder="image"> </div> {{-- </div> --}} <div class="col-sm-4"> <button type="submit" class="btn btn-primary">Submit</button> </div> </div> </form> <div> {{-- show menu list --}} <table class="table table-bordered"> <tr> {{-- <th>No</th> --}} <th>Image</th> <th>Name</th> <th>Description</th> <th>Category</th> <th>Rate</th> <th width="280px">Action</th> </tr> @foreach ($menu as $product) <tr> {{-- <td>{{ ++$i }}</td> --}} <td><img src="/image/{{ $product->image }}" width="100px"></td> <td>{{ $product->name }}</td> <td>{{ $product->description }}</td> <td>{{ $product->category }}</td> <td>{{ $product->rate }}</td> <td> <form action="{{ route('menu.destroy',$product->id) }}" method="POST"> <a class="btn btn-info" href="{{ route('menu.show',$product->id) }}">Show</a> <a class="btn btn-primary" href="{{ route('menu.edit',$product->id) }}">Edit</a> @csrf @method('DELETE') <button type="submit" class="btn btn-danger">Delete</button> </form> </td> </tr> @endforeach </table> {{-- {!! $menu->links() !!} --}} @endsection
Close