Blame view

resources/views/employers/fly-flot.blade.php 11.3 KB
b3d27fa36   Андрей Ларионов   Обновление проект...
1
2
3
4
5
  @extends('layout.frontend', ['title' => 'Мой флот - РекаМоре'])
  
  @section('scripts')
      <script src="https://cdn.ckeditor.com/ckeditor5/23.0.0/classic/ckeditor.js"></script>
      <script>
e814e46c7   Сергей П   Изменения для стр...
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
          $(function() {
              $('form.cabinet__add [type="file"][name="image"]').change(function (event) {
                  const file = event.target.files[0];
  
                  if (file) {
                      var img_wrap = $('.flot-image-wrap');
                      var img = $('<img id="flot-img" src="#"/>');
                      const reader = new FileReader();
  
                      reader.onload = function(e) {
                          img.attr('src', e.target.result);
                          img_wrap.find('img').remove();
                          img_wrap.append(img);
                          $('.no-img-svg').remove();
                      };
  
                      reader.readAsDataURL(file);
                  }
              });
          });
b3d27fa36   Андрей Ларионов   Обновление проект...
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
60
61
62
          ClassicEditor
              .create( document.querySelector( '#txtarea' ) )
              .catch( error => {
                  console.error( error );
              } );
      </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' => 12])
  
                  </div>
                  <div class="cabinet__body">
                      @include('messages_error')
  
                      <div class="cabinet__body-item">
                          <div class="cabinet__descr">
                              <h2 class="title cabinet__title">Мой флот</h2>
                          </div>
  
                          <form action="{{ route('employer.save_add_flot') }}" method="POST" class="cabinet__add" enctype="multipart/form-data">
                              @csrf
                              <label class="cabinet__add-pic" style="vertical-align: top">
                                  <input type="file" name="image" id="image">
                                  @error('image')
                                  <span class="text-xs text-red-600">
492296b6f   Андрей Ларионов   Коммит по итогу п...
63
                                     {{ $message }}
b3d27fa36   Андрей Ларионов   Обновление проект...
64
65
66
                                  </span>
                                  @enderror
                                  <input type="hidden" name="employer_id" id="employer_id" value="{{ $Employer[0]->id }}"/>
e814e46c7   Сергей П   Изменения для стр...
67
68
                                  <div class="flot-image-wrap"></div>
                                  <svg class="no-img-svg">
b3d27fa36   Андрей Ларионов   Обновление проект...
69
70
71
72
73
74
75
                                      <use xlink:href="{{ asset('images/sprite.svg#pic') }}"></use>
                                  </svg>
                                  <span>
                                          <svg>
                                              <use xlink:href="{{ asset('images/sprite.svg#plus') }}"></use>
                                          </svg>
                                          Загрузить фото
492296b6f   Андрей Ларионов   Коммит по итогу п...
76
                                  </span>
b3d27fa36   Андрей Ларионов   Обновление проект...
77
78
79
80
                              </label>
  
                              <div class="cabinet__add-body">
                                  <div class="form-group">
e20c428e5   Андрей Ларионов   Коммит по 20 числу
81
                                      <label class="form-group__label">Название</label>
b3d27fa36   Андрей Ларионов   Обновление проект...
82
83
84
85
86
87
88
89
90
                                      <div class="form-group__item">
                                          <input type="text" name="name" id="flot_name" class="input" placeholder="Корабль №000001" required>
                                          @error('name')
                                          <span class="text-xs text-red-600">
                                              {{ $message }}
                                          </span>
                                          @enderror
                                      </div>
                                  </div>
492296b6f   Андрей Ларионов   Коммит по итогу п...
91
                                  <div class="form-group" style="display:none">
b3d27fa36   Андрей Ларионов   Обновление проект...
92
93
                                      <label class="form-group__label">Описание</label>
                                      <div class="form-group__item">
492296b6f   Андрей Ларионов   Коммит по итогу п...
94
                                          <input type="text" name="text" id="flot_text" class="input" placeholder="Это судно находится..." value="True info">
b3d27fa36   Андрей Ларионов   Обновление проект...
95
96
97
98
99
100
101
                                          @error('text')
                                          <span class="text-xs text-red-600">
                                              {{ $message }}
                                          </span>
                                          @enderror
                                      </div>
                                  </div>
492296b6f   Андрей Ларионов   Коммит по итогу п...
102
                                  <div class="form-group" style="display:none">
b3d27fa36   Андрей Ларионов   Обновление проект...
103
104
                                      <label class="form-group__label">Регион</label>
                                      <div class="form-group__item">
492296b6f   Андрей Ларионов   Коммит по итогу п...
105
                                          <input type="text" name="region" id="region" class="input" placeholder="Мурманск" value="True Region">
b3d27fa36   Андрей Ларионов   Обновление проект...
106
107
108
109
110
111
112
                                          @error('region')
                                          <span class="text-xs text-red-600">
                                            {{ $message }}
                                          </span>
                                          @enderror
                                      </div>
                                  </div>
492296b6f   Андрей Ларионов   Коммит по итогу п...
113
                                  <div class="form-group" style="display:none">
b3d27fa36   Андрей Ларионов   Обновление проект...
114
115
                                      <label class="form-group__label">Мощность</label>
                                      <div class="form-group__item">
492296b6f   Андрей Ларионов   Коммит по итогу п...
116
                                          <input type="text" name="power" id="flot_power" class="input" placeholder="Dw 40000 9000Kw" value="Power">
b3d27fa36   Андрей Ларионов   Обновление проект...
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
                                          @error('power')
                                          <span class="text-xs text-red-600">
                                              {{ $message }}
                                          </span>
                                          @enderror
                                      </div>
                                  </div>
                                  <div class="form-group">
                                      <label class="form-group__label">DWT</label>
                                      <div class="form-group__item">
                                          <input type="text" name="DWT" id="flot_DWT" class="input" placeholder="4000 т">
                                          @error('DWT')
                                          <span class="text-xs text-red-600">
                                              {{ $message }}
                                          </span>
                                          @enderror
                                      </div>
                                  </div>
                                  <div class="form-group">
e20c428e5   Андрей Ларионов   Коммит по 20 числу
136
                                      <label class="form-group__label">Мощность ГД (кВт)</label>
b3d27fa36   Андрей Ларионов   Обновление проект...
137
138
139
140
141
142
143
144
145
                                      <div class="form-group__item">
                                          <input type="text" name="POWER_GD" id="flot_POWER_GD" class="input" placeholder="14000 кВт">
                                          @error('POWER_GD')
                                          <span class="text-xs text-red-600">
                                              {{ $message }}
                                          </span>
                                          @enderror
                                      </div>
                                  </div>
ba22187e1   Андрей Ларионов   Коммит флот
146
                                  <div class="form-group" style="">
b3d27fa36   Андрей Ларионов   Обновление проект...
147
148
                                      <label class="form-group__label">IMO</label>
                                      <div class="form-group__item">
ba22187e1   Андрей Ларионов   Коммит флот
149
                                          <input type="text" name="IMO" id="flot_IMO" class="input" placeholder="8814275" value="">
b3d27fa36   Андрей Ларионов   Обновление проект...
150
151
152
153
154
155
156
                                          @error('IMO')
                                          <span class="text-xs text-red-600">
                                              {{ $message }}
                                          </span>
                                          @enderror
                                      </div>
                                  </div>
00974dd90   Андрей Ларионов   Коммит редактиров...
157
                                  <button type="submit" class="button" id="ajax_flot_" name="ajax_flot_">Добавить флот</button>
b3d27fa36   Андрей Ларионов   Обновление проект...
158
159
160
161
162
163
164
165
166
                              </div>
  
                          </form>
  
                          <div class="cabinet__fleet" id="ajax_flot_div" name="ajax_flot_div">
                              @if (isset($Employer[0]->flots))
                                  @if ($Employer[0]->flots->count())
                                      @foreach ($Employer[0]->flots as $it)
                                          <div class="cabinet__fleet-item main__employer-page-one-item">
00974dd90   Андрей Ларионов   Коммит редактиров...
167
                                              <div style="margin-bottom: -10px">
b3d27fa36   Андрей Ларионов   Обновление проект...
168
169
170
171
172
                                              <a class="del die_black" href="{{ route('employer.delete_flot', ['Flot' => $it->id]) }}">
                                                  <svg>
                                                      <use xlink:href="{{ asset('images/sprite.svg#del') }}"></use>
                                                  </svg>
                                              </a>
00974dd90   Андрей Ларионов   Коммит редактиров...
173
174
175
176
177
178
                                              <a href="{{ route('employer.edit_flot', ['Flot' => $it->id, 'Employer' => $Employer[0]->id]) }}" class="del die_black" style="margin-left: 40px">
                                                  <svg>
                                                      <use xlink:href="{{ asset('images/sprite.svg#pencil') }}"></use>
                                                  </svg>
                                              </a>
                                              </div>
b3d27fa36   Андрей Ларионов   Обновление проект...
179
180
181
182
183
184
                                              @if (!empty($it->image))
                                                  <img src="{{ asset(Storage::url($it->image)) }}" alt="{{ $it->name }}">
                                              @else
                                                  <img src="{{ asset('images/default_ship.jpg') }}" alt="{{ $it->name }}"/>
                                              @endif
                                              <b>{{ $it->name }}</b>
492296b6f   Андрей Ларионов   Коммит по итогу п...
185
                                              <!--<span> $it->region }}</span>-->
b3d27fa36   Андрей Ларионов   Обновление проект...
186
                                              <span><i>DWT</i>{{ $it->DWT }}</span>
d61976840   Андрей Ларионов   Коммит от субботы
187

e20c428e5   Андрей Ларионов   Коммит по 20 числу
188
                                              <span><i>Мощность ГД (кВт)</i>{{ $it->POWER_GD }}</span>
d61976840   Андрей Ларионов   Коммит от субботы
189

ba22187e1   Андрей Ларионов   Коммит флот
190
191
                                              <span><i>IMO</i>{{ $it->IMO }}</span>
                                              <!--<span> $it->power }}</span>-->
b3d27fa36   Андрей Ларионов   Обновление проект...
192
193
194
195
196
197
198
199
200
                                          </div>
                                      @endforeach
                                  @endif
                              @endif
                          </div>
                      </div>
                  </div>
              </div>
          </div>
b3d27fa36   Андрей Ларионов   Обновление проект...
201
202
203
204
      </section>
      </div>
      <!-- END TOP WRAPPER -->
  @endsection