157 lines
3.3 KiB
PHP
157 lines
3.3 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Http\Requests\CreateRoleRequest;
|
|
use App\Http\Requests\UpdateRoleRequest;
|
|
use App\Repositories\RoleRepository;
|
|
use App\Http\Controllers\AppBaseController;
|
|
use Illuminate\Http\Request;
|
|
use Laracasts\Flash\Flash;
|
|
use Response;
|
|
|
|
class RoleController extends AppBaseController
|
|
{
|
|
/** @var RoleRepository $roleRepository*/
|
|
private $roleRepository;
|
|
|
|
public function __construct(RoleRepository $roleRepo)
|
|
{
|
|
$this->roleRepository = $roleRepo;
|
|
}
|
|
|
|
/**
|
|
* Display a listing of the Role.
|
|
*
|
|
* @param Request $request
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function index(Request $request)
|
|
{
|
|
$roles = $this->roleRepository->paginate(10);
|
|
|
|
return view('admin.roles.index')
|
|
->with('roles', $roles);
|
|
}
|
|
|
|
/**
|
|
* Show the form for creating a new Role.
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function create()
|
|
{
|
|
return view('admin.roles.create');
|
|
}
|
|
|
|
/**
|
|
* Store a newly created Role in storage.
|
|
*
|
|
* @param CreateRoleRequest $request
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function store(CreateRoleRequest $request)
|
|
{
|
|
$input = $request->all();
|
|
|
|
$role = $this->roleRepository->create($input);
|
|
|
|
Flash::success('Role saved successfully.');
|
|
|
|
return redirect(route('admin.roles.index'));
|
|
}
|
|
|
|
/**
|
|
* Display the specified Role.
|
|
*
|
|
* @param int $id
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function show($id)
|
|
{
|
|
$role = $this->roleRepository->find($id);
|
|
|
|
if (empty($role)) {
|
|
Flash::error('Role not found');
|
|
|
|
return redirect(route('admin.roles.index'));
|
|
}
|
|
|
|
return view('admin.roles.show')->with('role', $role);
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified Role.
|
|
*
|
|
* @param int $id
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function edit($id)
|
|
{
|
|
$role = $this->roleRepository->find($id);
|
|
|
|
if (empty($role)) {
|
|
Flash::error('Role not found');
|
|
|
|
return redirect(route('admin.roles.index'));
|
|
}
|
|
|
|
return view('admin.roles.edit')->with('role', $role);
|
|
}
|
|
|
|
/**
|
|
* Update the specified Role in storage.
|
|
*
|
|
* @param int $id
|
|
* @param UpdateRoleRequest $request
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function update($id, UpdateRoleRequest $request)
|
|
{
|
|
$role = $this->roleRepository->find($id);
|
|
|
|
if (empty($role)) {
|
|
Flash::error('Role not found');
|
|
|
|
return redirect(route('admin.roles.index'));
|
|
}
|
|
|
|
$role = $this->roleRepository->update($request->all(), $id);
|
|
|
|
Flash::success('Role updated successfully.');
|
|
|
|
return redirect(route('admin.roles.index'));
|
|
}
|
|
|
|
/**
|
|
* Remove the specified Role from storage.
|
|
*
|
|
* @param int $id
|
|
*
|
|
* @throws \Exception
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function destroy($id)
|
|
{
|
|
$role = $this->roleRepository->find($id);
|
|
|
|
if (empty($role)) {
|
|
Flash::error('Role not found');
|
|
|
|
return redirect(route('admin.roles.index'));
|
|
}
|
|
|
|
$this->roleRepository->delete($id);
|
|
|
|
Flash::success('Role deleted successfully.');
|
|
|
|
return redirect(route('admin.roles.index'));
|
|
}
|
|
}
|