예제 #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  Account $account
  * @return \\Illuminate\Http\RedirectResponse
  */
 public function destroy(Account $account)
 {
     // may we edit this brand (is the brand connected to our account)
     if (!$account->mayDestroy($this->auth_user)) {
         return Redirect::route('admin.accounts.index')->with('message', 'User is not authorized to edit this account.');
     }
     // Do not allow the default admin user account to be deleted.
     if ($account->id == 1) {
         return Redirect::back()->with('message', 'Not allowed to delete the default admin account.');
     }
     $account->delete();
     // TODO: delete related users/brands as well
     return Redirect::route('admin.accounts.index')->with('message', 'Account and it\'s related users and brands have been deleted.');
 }
예제 #2
0
 /**
  * Remove the specified resource from storage.
  *
  * @param Account $account
  *
  * @return \\Illuminate\Http\RedirectResponse
  */
 public function destroy(Account $account)
 {
     $brand = $account->brand;
     if (!$account->mayDestroy($this->auth_user)) {
         return Redirect::route('admin.accounts.index')->with('message', 'User is not authorized to edit this account.');
     }
     // Do not allow the system admin user account to be deleted.
     if ($account->isSystemAccount()) {
         return Redirect::back()->with('message', 'Not allowed to delete the default admin account.');
     }
     // delete the linked users
     foreach ($account->users as $user) {
         $user->delete();
     }
     // delete the account
     $account->delete();
     // delete the brand
     if ($brand->canDelete()) {
         $brand->delete();
     }
     return Redirect::route('admin.accounts.index')->with('message', 'Account and it\'s related users and brands have been deleted.');
 }
예제 #3
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy(Account $account)
 {
     // Do not allow the default admin user account to be deleted.
     if ($account->id == 1) {
         return Redirect::back()->with('message', 'Not allowed to delete the default admin account.');
     }
     $account->delete();
     // todo: delete related users/brands as well
     return Redirect::route('admin.accounts.index')->with('message', 'Account and it\'s related users and brands have been deleted.');
 }