Blame view

resources/views/modals/chats/remove_chat.blade.php 1.25 KB
d721fd846   Сергей П   правки по сообщен...
1
2
3
4
5
6
  <div class="hide">
      <div id="remove_chat" class="modal-dialog">
          <div class="modal-dialog-title">
              <h2>Удалить чат</h2>
          </div>
          <div class="modal-dialog-body">
664449023   Hayk Nazaryan   Employer personal...
7
              <p>Вы уверены, что хотите удалить час с "<b><span class="target-chat"></span></b>"?</p>
d721fd846   Сергей П   правки по сообщен...
8
9
10
11
12
          </div>
          <div class="modal-dialog-footer">
              <button type="button" class="button remove-chat-button">Удалить</button>
              <button type="button" class="button button_light" onclick="$.fancybox.close();">Закрыть</button>
          </div>
2f592b01f   Сергей П   сообщения
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
      </div>
  </div>
  
  <script>
      $(function(){
          $('.remove-chat-button').click(function(){
              spinStart($(this));
              var wrap = $(this).closest('#remove_chat');
              var chat_id = wrap.data('chat-id');
  
              $.ajax({
                  type: "POST",
                  url: "{{ route('employer.remove_chat')  }}",
                  data: {
                      id: chat_id
                  },
                  headers: {
                      'X-CSRF-TOKEN': $('[name="_token"]').val()
                  },
                  success: function(){
                      location.reload();
                  }
              });
          });
      });
  </script>