Exemplo n.º 1
0
 /**
  * @param $id
  *
  * @return mixed
  * @throws \Exception
  */
 protected function destroy($id)
 {
     $this->modelInstance = $this->modelInstance->withTrashed()->findOrFail($id);
     if ($this->modelInstance->trashed()) {
         return $this->modelInstance->forceDelete();
     }
     return $this->modelInstance->delete();
 }
Exemplo n.º 2
0
 /**
  *
  */
 public function tableName()
 {
     return 'auth_' . parent::tableName();
 }