| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/home-services/app/Http/Controllers/ |
Upload File : |
<?php
/*
* File name: PermissionController.php
* Last modified: 2021.03.18 at 16:44:59
* Author: SmarterVision - https://codecanyon.net/user/smartervision
* Copyright (c) 2021
*/
namespace App\Http\Controllers;
use App\DataTables\PermissionDataTable;
use App\Http\Requests\CreatePermissionRequest;
use App\Http\Requests\UpdatePermissionRequest;
use App\Repositories\PermissionRepository;
use Flash;
use Illuminate\Support\Facades\Artisan;
use Request;
use Response;
class PermissionController extends Controller
{
/** @var PermissionRepository */
private $permissionRepository;
public function __construct(PermissionRepository $permissionRepo)
{
parent::__construct();
$this->permissionRepository = $permissionRepo;
}
/**
* Display a listing of the Permission.
*
* @param PermissionDataTable $permissionDataTable
* @return Response
*/
public function index(PermissionDataTable $permissionDataTable)
{
return $permissionDataTable->render('settings.permissions.index');
}
public function refreshPermissions(Request $request){
Artisan::call('db:seed',['--class'=> 'DemoPermissionsPermissionsTableSeeder']);
redirect()->back();
}
public function givePermissionToRole(Request $request){
if (config('installer.demo_app')) {
Flash::warning('This is only demo app you can\'t change this section ');
} else {
$input = Request::all();
$this->permissionRepository->givePermissionToRole($input);
}
}
public function revokePermissionToRole(Request $request){
if (config('installer.demo_app')) {
Flash::warning('This is only demo app you can\'t change this section ');
} else {
$input = Request::all();
$this->permissionRepository->revokePermissionToRole($input);
}
}
public function roleHasPermission(Request $request){
$input = Request::all();
//dd($input);
$result = $this->permissionRepository->roleHasPermission($input);
return json_encode($result);
}
/**
* Show the form for creating a new Permission.
*
* @return Response
*/
public function create()
{
return view('settings.permissions.create');
}
/**
* Store a newly created Permission in storage.
*
* @param CreatePermissionRequest $request
*
* @return Response
*/
public function store(CreatePermissionRequest $request)
{
if (config('installer.demo_app')) {
Flash::warning('This is only demo app you can\'t change this section ');
return redirect(route('permissions.index'));
}
$input = $request->all();
$permission = $this->permissionRepository->create($input);
Flash::success('Permission saved successfully.');
return redirect(route('permissions.index'));
}
/**
* Display the specified Permission.
*
* @param int $id
*
* @return Response
*/
public function show($id)
{
$permission = $this->permissionRepository->findWithoutFail($id);
if (empty($permission)) {
Flash::error('Permission not found');
return redirect(route('permissions.index'));
}
return view('settings.permissions.show')->with('permission', $permission);
}
/**
* Show the form for editing the specified Permission.
*
* @param int $id
*
* @return Response
*/
public function edit($id)
{
$permission = $this->permissionRepository->findWithoutFail($id);
if (empty($permission)) {
Flash::error('Permission not found');
return redirect(route('permissions.index'));
}
return view('settings.permissions.edit')->with('permission', $permission);
}
/**
* Update the specified Permission in storage.
*
* @param int $id
* @param UpdatePermissionRequest $request
*
* @return Response
*/
public function update($id, UpdatePermissionRequest $request)
{
if(env('APP_DEMO',false)) {
Flash::warning('This is only demo app you can\'t change this section ');
return redirect(route('permissions.index'));
}
$permission = $this->permissionRepository->findWithoutFail($id);
if (empty($permission)) {
Flash::error('Permission not found');
return redirect(route('permissions.index'));
}
$permission = $this->permissionRepository->update($request->all(), $id);
Flash::success('Permission updated successfully.');
return redirect(route('permissions.index'));
}
/**
* Remove the specified Permission from storage.
*
* @param int $id
*
* @return Response
*/
public function destroy($id)
{
if(env('APP_DEMO',false)) {
Flash::warning('This is only demo app you can\'t change this section ');
return redirect(route('permissions.index'));
}
$permission = $this->permissionRepository->findWithoutFail($id);
if (empty($permission)) {
Flash::error('Permission not found');
return redirect(route('permissions.index'));
}
$this->permissionRepository->delete($id);
Flash::success('Permission deleted successfully.');
return redirect(route('permissions.index'));
}
}