Blame view

resources/views/employers/bd_resume_danger.blade.php 2.37 KB
0fc30621f   Андрей Ларионов   коммит от пятницы...
1
2
3
4
  @extends('layout.frontend', ['title' => 'База данных - РекаМоре'])
  
  @section('scripts')
      <script>
0fc30621f   Андрей Ларионов   коммит от пятницы...
5
6
7
8
9
10
11
12
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
          $(document).on('click', '.die_black', function() {
              var this_ = $(this);
              var ajax_ = $('#ajax_flot_div');
              var id_ = this_.attr('data-test');
              var url_ = this_.attr('data-link');
  
              console.log(url_);
              $.ajax({
                  type: "GET",
                  url: url_,
                  success: function (data) {
                      console.log('Ответка');
                      ajax_.html(data);
                  },
                  headers: {
                      'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
                  },
                  error: function (data) {
                      console.log('Error: ' + data);
                  }
              });
          });
      </script>
  @endsection
  
  @section('content')
      <section class="cabinet">
          <div class="container">
              <ul class="breadcrumbs cabinet__breadcrumbs">
                  <li><a href="{{ route('index') }}">Главная</a></li>
                  <li><b>Личный кабинет</b></li>
              </ul>
              <div class="cabinet__wrapper">
                  <div class="cabinet__side">
                      <div class="cabinet__side-toper">
                          @include('employers.emblema')
                      </div>
                      @include('employers.menu', ['item' => 8])
                  </div>
                  <div class="cabinet__body">
                      <div class="cabinet__body-item">
                          <h2 class="title cabinet__title">База резюме</h2>
                      </div>
                      <div class="cabinet__body-item">
                          <div class="cabinet__table-header">
                              <div><!--_if (isset($it->workers[0]->job_titles[0]->name)) _ $it->workers[0]->job_titles[0]->name }}_else Не указано _endif-->
                                  Данные нельзя просмотреть, прочтите инструкцию
                                  <a style="text-decoration:underline" href="{{ route('page', ['pages' => 'Usloviya-razmescheniya']) }}">Условия размещения</a>
                              </div>
                          </div>
                      </div>
          </div>
      </section>
      </div>
  @endsection