Commit 08fdc5a4 authored by Viral Solani's avatar Viral Solani

Merge branch 'develop' of https://github.com/viralsolani/laravel-adminpanel into develop

parents efa4906c 6aa70918
......@@ -125,8 +125,7 @@ class UsersController extends APIController
$result = $this->repository->deleteAll($ids);
}
if($result)
{
if ($result) {
return $this->respond([
'message' => trans('alerts.backend.users.deleted'),
]);
......
......@@ -189,7 +189,7 @@ class UserRepository extends BaseRepository
}
/**
* Delete User
* Delete User.
*
* @param Model $user
*
......@@ -213,7 +213,7 @@ class UserRepository extends BaseRepository
}
/**
* Delete All Users
* Delete All Users.
*
* @param Model $user
*
......@@ -233,8 +233,7 @@ class UserRepository extends BaseRepository
$result = DB::table('users')->whereIn('id', $ids)->delete();
if($result)
{
if ($result) {
return true;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment