uawdijnntqw1x1x1
IP : 216.73.217.47
Hostname : srv913213
Kernel : Linux srv913213 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
snap
/
..
/
.
/
mail
/
..
/
www
/
.
/
yapwebtv.com
/
Modules
/
Setting
/
Http
/
Controllers
/
UpdateController.php
/
/
<?php namespace Modules\Setting\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Http\Response; use Illuminate\Routing\Controller; use Modules\Setting\Entities\Setting; class UpdateController extends Controller { /** * Display a listing of the resource. * @return Response */ public function index() { return view('setting::index'); } /** * Show the form for creating a new resource. * @return Response */ public function create() { return view('setting::create'); } /** * Store a newly created resource in storage. * @param Request $request * @return Response */ public function store(Request $request) { // } /** * Show the specified resource. * @param int $id * @return Response */ public function show($id) { return view('setting::show'); } /** * Show the form for editing the specified resource. * @param int $id * @return Response */ public function edit($id) { return view('setting::edit'); } /** * Update the specified resource in storage. * @param Request $request * @param int $id * @return Response */ public function update(Request $request, $id) { // } /** * Remove the specified resource from storage. * @param int $id * @return Response */ public function destroy($id) { // } public function updateDatabase(){ return view('setting::update-database'); } public function updateDatabaseStore(Request $request){ // $setting = Setting::firstOrNew(array('title' => 'version')); // $setting->title = 'version'; // $setting->value = $request->version; // $setting->save(); \Artisan::call('migrate'); return redirect()->back()->with('success', __('successfully_updated')); } }
/var/snap/.././mail/../www/./yapwebtv.com/Modules/Setting/Http/Controllers/UpdateController.php