Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
laravel-adminpanel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
laravel-adminpanel
Commits
c10511e3
Commit
c10511e3
authored
Dec 19, 2017
by
Viral Solani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve Permission Module Errors
parent
1815e6db
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
PermissionRepository.php
...tories/Backend/Access/Permission/PermissionRepository.php
+2
-2
No files found.
app/Repositories/Backend/Access/Permission/PermissionRepository.php
View file @
c10511e3
...
...
@@ -74,7 +74,7 @@ class PermissionRepository extends BaseRepository
*
* @return bool
*/
public
function
update
(
Model
$permission
,
array
$input
)
public
function
update
(
$permission
,
array
$input
)
{
if
(
$this
->
query
()
->
where
(
'name'
,
$input
[
'name'
])
->
where
(
'id'
,
'!='
,
$permission
->
id
)
->
first
())
{
throw
new
GeneralException
(
trans
(
'exceptions.backend.access.permissions.already_exists'
));
...
...
@@ -104,7 +104,7 @@ class PermissionRepository extends BaseRepository
*
* @return bool
*/
public
function
delete
(
Model
$permission
)
public
function
delete
(
$permission
)
{
DB
::
transaction
(
function
()
use
(
$permission
)
{
if
(
$permission
->
delete
())
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment