Blame view

app/Http/Controllers/WorkerController.php 20.8 KB
b52b1df0d   Андрей Ларионов   Опция поднятия ва...
1
2
3
  <?php
  
  namespace App\Http\Controllers;
f3766c7c1   Андрей Ларионов   Коммит по регистр...
4
  use App\Classes\RusDate;
a9dfa8c95   Андрей Ларионов   Обновление на 7 м...
5
  use App\Http\Requests\DocumentsRequest;
f3766c7c1   Андрей Ларионов   Коммит по регистр...
6
  use App\Models\Ad_employer;
a9dfa8c95   Андрей Ларионов   Обновление на 7 м...
7
  use App\Models\ad_response;
f3766c7c1   Андрей Ларионов   Коммит по регистр...
8
  use App\Models\Category;
99a41e761   Андрей Ларионов   Личный кабинет по...
9
  use App\Models\Dop_info;
f3766c7c1   Андрей Ларионов   Коммит по регистр...
10
  use App\Models\Employer;
99a41e761   Андрей Ларионов   Личный кабинет по...
11
  use App\Models\infobloks;
f3766c7c1   Андрей Ларионов   Коммит по регистр...
12
  use App\Models\Job_title;
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
13
  use App\Models\Message;
a9dfa8c95   Андрей Ларионов   Обновление на 7 м...
14
  use App\Models\place_works;
f3766c7c1   Андрей Ларионов   Коммит по регистр...
15
  use App\Models\reclame;
99a41e761   Андрей Ларионов   Личный кабинет по...
16
  use App\Models\sertification;
b52b1df0d   Андрей Ларионов   Опция поднятия ва...
17
  use App\Models\Static_worker;
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
18
  use App\Models\User;
f3766c7c1   Андрей Ларионов   Коммит по регистр...
19
  use App\Models\User as User_Model;
b52b1df0d   Андрей Ларионов   Опция поднятия ва...
20
  use App\Models\Worker;
f3766c7c1   Андрей Ларионов   Коммит по регистр...
21
  use Carbon\Carbon;
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
22
  use Illuminate\Auth\Events\Registered;
f3766c7c1   Андрей Ларионов   Коммит по регистр...
23
  use Illuminate\Database\Eloquent\Builder;
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
24
  use Illuminate\Http\JsonResponse;
b52b1df0d   Андрей Ларионов   Опция поднятия ва...
25
  use Illuminate\Http\Request;
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
26
27
  use Illuminate\Support\Facades\Auth;
  use Illuminate\Support\Facades\Hash;
99a41e761   Андрей Ларионов   Личный кабинет по...
28
  use Illuminate\Support\Facades\Storage;
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
29
  use Illuminate\Support\Facades\Validator;
b52b1df0d   Андрей Ларионов   Опция поднятия ва...
30
31
32
  
  class WorkerController extends Controller
  {
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
33
      public $status_work = array(0 => 'Ищу работу', 1 => 'Не указано', 2 => 'Не ищу работу');
5b68533bb   Андрей Ларионов   Работа над проект...
34
      //профиль
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
35
36
      public function profile(Worker $worker)
      {
673a7768d   Андрей Ларионов   Правки в админке,...
37
          $get_date = date('Y.m');
b52b1df0d   Андрей Ларионов   Опция поднятия ва...
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  
          $c = Static_worker::query()->where('year_month', '=', $get_date)
              ->where('user_id', '=', $worker->users->id)
              ->get();
  
          if ($c->count() > 0) {
              $upd = Static_worker::find($c[0]->id);
              $upd->lookin = $upd->lookin + 1;
              $upd->save();
          } else {
              $crt = new Static_worker();
              $crt->lookin = 1;
              $crt->year_month = $get_date;
              $crt->user_id = $worker->user_id;
              $crt->save();
          }
  
          $stat = Static_worker::query()->where('year_month', '=', $get_date)
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
56
57
              ->where('user_id', '=', $worker->users->id)
              ->get();
b52b1df0d   Андрей Ларионов   Опция поднятия ва...
58
59
60
  
          return view('public.workers.profile', compact('worker', 'stat'));
      }
5b68533bb   Андрей Ларионов   Работа над проект...
61

a13ce8670   Андрей Ларионов   Обновление проект...
62
      // лист база резюме
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
63
64
      public function bd_resume()
      {
a13ce8670   Андрей Ларионов   Обновление проект...
65
66
67
68
69
70
71
72
73
74
          $status_work = $this->status_work;
          $resumes = Worker::query()->with('users')->with('job_titles');
  
          $res_count = $resumes->count();
          $resumes = $resumes->paginate(5);
  
          return view('resume', compact('resumes', 'status_work', 'res_count'));
      }
  
      // анкета соискателя
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
75
76
      public function resume_profile(Worker $worker)
      {
a13ce8670   Андрей Ларионов   Обновление проект...
77
78
79
80
81
82
83
84
85
86
          $status_work = $this->status_work;
          $Query = Worker::query()->with('users')->with('job_titles')
              ->with('place_worker')->with('sertificate')->with('prev_company')
              ->with('infobloks');
          $Query = $Query->where('id', '=', $worker->id);
          $Query = $Query->get();
          return view('worker', compact('Query', 'status_work'));
      }
  
      // скачать анкету соискателя
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
87
88
      public function resume_download(Worker $worker)
      {
a13ce8670   Андрей Ларионов   Обновление проект...
89
          print_r('Резюме для скачивания');
5b68533bb   Андрей Ларионов   Работа над проект...
90
      }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
91
92
  
      // Кабинет работника
f3766c7c1   Андрей Ларионов   Коммит по регистр...
93
      public function cabinet()
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
94
      {
f3766c7c1   Андрей Ларионов   Коммит по регистр...
95
          $id = Auth()->user()->id;
99a41e761   Андрей Ларионов   Личный кабинет по...
96
          $Worker = Worker::query()->with('users')->with('sertificate')->with('prev_company')->
f3766c7c1   Андрей Ларионов   Коммит по регистр...
97
98
99
100
          with('infobloks')->with('place_worker')->
          WhereHas('users',
              function (Builder $query) use ($id) {$query->Where('id', $id);
              })->get();
99a41e761   Андрей Ларионов   Личный кабинет по...
101
102
103
104
105
  
          $Job_titles = Job_title::query()->OrderBy('name')->get();
          $Infoblocks = infobloks::query()->OrderBy('name')->get();
  
          return view('workers.cabinet', compact('Worker', 'Job_titles', 'Infoblocks'));
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
106
107
108
      }
  
      // Сохранение данных
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
109
110
      public function cabinet_save(Worker $worker, Request $request)
      {
99a41e761   Андрей Ларионов   Личный кабинет по...
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
          $id = $worker->id;
          $params = $request->all();
  
          $job_title_id = $request->get('job_title_id');
  
          unset($params['new_diplom']);
          unset($params['new_data_begin']);
          unset($params['new_data_end']);
          unset($params['new_job_title']);
          unset($params['new_teplohod']);
          unset($params['new_GWT']);
          unset($params['new_KBT']);
          unset($params['new_Begin_work']);
          unset($params['new_End_work']);
          unset($params['new_name_company']);
  
          $rules = [
              'surname' => ['required', 'string', 'max:255'],
              'name_man' => ['required', 'string', 'max:255'],
              'email' => ['required', 'string', 'email', 'max:255'],
  
          ];
  
          $messages = [
              'required' => 'Укажите обязательное поле',
              'min' => [
                  'string' => 'Поле «:attribute» должно быть не меньше :min символов',
                  'integer' => 'Поле «:attribute» должно быть :min или больше',
                  'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт'
              ],
              'max' => [
                  'string' => 'Поле «:attribute» должно быть не больше :max символов',
                  'integer' => 'Поле «:attribute» должно быть :max или меньше',
                  'file' => 'Файл «:attribute» должен быть не больше :max Кбайт'
              ]
          ];
  
          $validator = Validator::make($params, $rules, $messages);
  
          if ($validator->fails()) {
              return redirect()->route('worker.cabinet')->withErrors($validator);
          } else {
  
              if ($request->has('photo')) {
                  if (!empty($Worker->photo)) {
                      Storage::delete($Worker->photo);
                  }
                  $params['photo'] = $request->file('photo')->store("worker/$id", 'public');
              }
  
              if ($request->has('file')) {
                  if (!empty($Worker->file)) {
                      Storage::delete($Worker->file);
                  }
                  $params['file'] = $request->file('file')->store("worker/$id", 'public');
              }
  
              $id_wor = $worker->update($params);
  
              $use = User_Model::find($id_wor);
              $use->surname = $request->get('surname');
              $use->name_man = $request->get('name_man');
              $use->surname2 = $request->get('surname2');
  
              $use->save();
              $worker->job_titles()->sync($job_title_id);
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
177

99a41e761   Андрей Ларионов   Личный кабинет по...
178
179
              return redirect()->route('worker.cabinet')->with('success', 'Данные были успешно сохранены');
          }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
180
181
182
      }
  
      // Сообщения данные
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
183
184
      public function messages($type_message)
      {
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
          $user_id = Auth()->user()->id;
  
          $messages_input = Message::query()->with('vacancies')->with('user_from')->
          Where('to_user_id', $user_id)->OrderByDesc('created_at');
  
          $messages_output = Message::query()->with('vacancies')->
          with('user_to')->where('user_id', $user_id)->
          OrderByDesc('created_at');
  
  
          $count_input = $messages_input->count();
          $count_output = $messages_output->count();
  
          if ($type_message == 'input') {
              $messages = $messages_input->paginate(15);
          }
  
          if ($type_message == 'output') {
              $messages = $messages_output->paginate(15);
          }
          // Вернуть все 100%
          return view('workers.messages', compact('messages', 'count_input', 'count_output', 'type_message', 'user_id'));
      }
  
      // Избранный
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
210
211
      public function favorite()
      {
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
212
213
          return view('workers.favorite');
      }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
214
      // Сменить пароль
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
215
216
      public function new_password()
      {
f3766c7c1   Андрей Ларионов   Коммит по регистр...
217
218
          $email = Auth()->user()->email;
          return view('workers.new_password', compact('email'));
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
219
      }
f3766c7c1   Андрей Ларионов   Коммит по регистр...
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
      // Обновление пароля
      public function save_new_password(Request $request) {
          $use = Auth()->user();
          $request->validate([
              'password' => 'required|string',
              'new_password' => 'required|string',
              'new_password2' => 'required|string'
          ]);
  
          if ($request->get('new_password') == $request->get('new_password2'))
              if ($request->get('password') !== $request->get('new_password')) {
                  $credentials = $request->only('email', 'password');
                  if (Auth::attempt($credentials)) {
  
                      if (!is_null($use->email_verified_at)){
  
                          $user_data = User_Model::find($use->id);
                          $user_data->update([
                              'password' => Hash::make($request->get('new_password')),
                              'pubpassword' => base64_encode($request->get('new_password')),
                          ]);
                          return redirect()
                              ->route('worker.new_password')
                              ->with('success', 'Поздравляю! Вы обновили свой пароль!');
                      }
  
                      return redirect()
                          ->route('worker.new_password')
                          ->withError('Данная учетная запись не было верифицированна!');
                  }
              }
  
          return redirect()
              ->route('worker.new_password')
              ->withErrors('Не совпадение данных, обновите пароли!');
      }
  
      // Удаление профиля форма
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
258
259
      public function delete_profile()
      {
f3766c7c1   Андрей Ларионов   Коммит по регистр...
260
261
262
          $login = Auth()->user()->email;
          return view('workers.delete_profile', compact('login'));
      }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
263

f3766c7c1   Андрей Ларионов   Коммит по регистр...
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
      // Удаление профиля код
      public function delete_profile_result(Request $request) {
          $Answer = $request->all();
          $user_id = Auth()->user()->id;
          $request->validate([
              'password' => 'required|string',
          ]);
  
          $credentials = $request->only('email', 'password');
          if (Auth::attempt($credentials)) {
              Auth::logout();
              $it = User_Model::find($user_id);
              //$it->delete();
              return redirect()->route('index')->with('success', 'Вы успешно удалили свой аккаунт');
          } else {
              return redirect()->route('worker.delete_profile')
                  ->withErrors( 'Неверный пароль! Нужен корректный пароль');
          }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
282
      }
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
283
284
285
286
287
288
289
290
291
292
293
  
      // Регистрация соискателя
      public function register_worker(Request $request)
      {
          $params = $request->all();
  
          $rules = [
              'surname' => ['required', 'string', 'max:255'],
              'name_man' => ['required', 'string', 'max:255'],
              'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
              'password' => ['required', 'string', 'min:8'],
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
          ];
  
          $messages = [
              'required' => 'Укажите обязательное поле',
              'min' => [
                  'string' => 'Поле «:attribute» должно быть не меньше :min символов',
                  'integer' => 'Поле «:attribute» должно быть :min или больше',
                  'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт'
              ],
              'max' => [
                  'string' => 'Поле «:attribute» должно быть не больше :max символов',
                  'integer' => 'Поле «:attribute» должно быть :max или меньше',
                  'file' => 'Файл «:attribute» должен быть не больше :max Кбайт'
              ]
          ];
f3766c7c1   Андрей Ларионов   Коммит по регистр...
309

142d287bd   Андрей Ларионов   Шаблоны кабинета ...
310
311
312
313
314
315
316
          if ($request->get('password') !== $request->get('confirmed')){
              return json_encode(Array("ERROR" => "Error: Не совпадают пароль и подтверждение пароля"));
          }
  
          $validator = Validator::make($request->all(), $rules, $messages);
  
          if ($validator->fails()) {
f3766c7c1   Андрей Ларионов   Коммит по регистр...
317
              return json_encode(Array("ERROR" => "Error1: Регистрация оборвалась ошибкой! Не все обязательные поля заполнены. Либо вы уже были зарегистрированы в системе."));
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
318
319
320
321
322
323
324
325
326
          } else {
              $user = $this->create($params);
              event(new Registered($user));
  
              Auth::guard()->login($user);
          }
          if ($user) {
              return json_encode(Array("REDIRECT" => redirect()->route('worker.cabinet')->getTargetUrl()));;
          } else {
f3766c7c1   Андрей Ларионов   Коммит по регистр...
327
              return json_encode(Array("ERROR" => "Error2: Данные были утеряны!"));
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
328
329
330
331
332
333
334
335
336
          }
      }
  
      // Создание пользователя
      protected function create(array $data)
      {
          $Use = new User();
          $Code_user = $Use->create([
                              'name' => $data['surname']." ".$data['name_man'],
f3766c7c1   Андрей Ларионов   Коммит по регистр...
337
338
339
                              'name_man' => $data['name_man'],
                              'surname' => $data['surname'],
                              'surname2' => $data['surname2'],
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
340
341
342
343
344
                              'subscribe_email' => $data['email'],
                              'email' => $data['email'],
                              'telephone' => $data['telephone'],
                              'password' => Hash::make($data['password']),
                              'pubpassword' => base64_encode($data['password']),
f3766c7c1   Андрей Ларионов   Коммит по регистр...
345
                              'email_verified_at' => Carbon::now()
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
346
                          ]);
f3766c7c1   Андрей Ларионов   Коммит по регистр...
347
348
349
350
351
352
353
354
355
356
          if ($Code_user->id > 0) {
              $Worker = new Worker();
              $Worker->user_id = $Code_user->id;
              $Worker->position_work = $data['job_titles'];
              $Worker->email = $data['email'];
              $Worker->telephone = $data['telephone'];
              $Worker->save();
  
              return $Code_user;
          }
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
357
      }
1862e7a3a   Андрей Ларионов   Борьба против кол...
358

f3766c7c1   Андрей Ларионов   Коммит по регистр...
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
      // Борьба против колорадских жуков, хотя жуков победил все таки 45.
      public function colorado(Request $request) {
          if (isset($_COOKIE['favorite_vac'])) {
              $items = RusDate::count_vacancy_fav();
              $it = $_COOKIE['favorite_vac'];
              $it = str_replace('"', "", $it);
              $it = str_replace('[', "", $it);
              $it = str_replace(']', "", $it);
              $Arr = explode(",", $it);
          } else {
              $Arr = Array();
          }
  
          $Query = Ad_employer::Query();
          if (count($Arr) > 0) {
              $Query = $Query->whereIn('id', $Arr);
          }
          $Query = $Query->with('jobs')->
          with('cat')->
          with('employer')->
          whereHas('jobs_code', function ($query) use ($request) {
              if ($request->ajax()) {
                  if (null !== ($request->get('job'))) {
                      $query->where('job_title_id', $request->get('job'));
                  }
              }
          })->select('ad_employers.*');
  
          $Job_title = Job_title::query()->OrderBy('name')->get();
  
          $Query_count = $Query->count();
  
          $Query = $Query->OrderBy('updated_at')->paginate(3);
  
          return view('workers.favorite', compact('Query',
                                                      'Query_count',
                                                                  'Job_title'));
  
      }
  
      //Переписка пись-пись-пись
      public function dialog(User_Model $user1, User_Model $user2) {
          if (isset($user2->id)) {
              $companion = User_Model::query()->with('workers')->
              with('employers')->
              where('id', $user2->id)->first();
          }
  
          $Messages = Message::query()->with('response')->where(function($query) use ($user1, $user2) {
              $query->where('user_id', $user1->id)->where('to_user_id', $user2->id);
          })->orWhere(function($query) use ($user1, $user2) {
              $query->where('user_id', $user2->id)->where('to_user_id', $user1->id);
          })->OrderBy('created_at')->get();
  
          $id_vac = null;
          foreach ($Messages as $it) {
              if (isset($it->response)) {
                  foreach ($it->response as $r) {
                      if (isset($r->ad_employer_id)) {
                          $id_vac = $r->ad_employer_id;
                          break;
                      }
                  }
              }
              if (!is_null($id_vac)) break;
          }
  
          $ad_employer = null;
          if (!is_null($id_vac)) $ad_employer = Ad_employer::query()->where('id', $id_vac)->first();
          $sender = $user1;
1862e7a3a   Андрей Ларионов   Борьба против кол...
429

f3766c7c1   Андрей Ларионов   Коммит по регистр...
430
          return view('workers.dialog', compact('companion', 'sender', 'Messages', 'ad_employer'));
1862e7a3a   Андрей Ларионов   Борьба против кол...
431
      }
99a41e761   Андрей Ларионов   Личный кабинет по...
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
  
      // Даунлоады
      public function download(Worker $worker) {
  
      }
  
      // Поднятие анкеты
      public function up(Worker $worker) {
          $worker->updated_at = Carbon::now();
          $worker->save();
          return redirect()->route('worker.cabinet')->with('success', 'Ваша анкета была поднята выше остальных');
      }
  
      // Добавление сертификата
      public function add_serificate(Request $request) {
          $params = $request->all();
          $params['date_begin'] = date('d.m.Y', strtotime($params['date_begin']));
          $params['end_begin'] = date('d.m.Y', strtotime($params['end_begin']));
          $Sertificate = new sertification();
          $Sertificate->create($params);
          $Docs = sertification::query()->where('worker_id', $request->get('worker_id'))->get();
          return view('ajax.documents', compact('Docs'));
      }
  
  
      // Удалить сертификат
      public function delete_sertificate(sertification $doc) {
          $doc->delete();
  
          return redirect()->route('worker.cabinet');
      }
  
      // Добавление диплома
      public function add_diplom_ajax(Request $request) {
          // конец
          $params = $request->all();
          $count = Dop_info::query()->where('worker_id', $request->get('worker_id'))->where('infoblok_id', $request->get('infoblok_id'))->count();
  
          if ($count == 0) $dop_info = Dop_info::create($params);
          $Infoblocks = infobloks::query()->get();
          $Worker = Worker::query()->where('id', $request->get('worker_id'))->get();
          $data = Dop_info::query()->where('worker_id', $request->has('worker_id'));
          return view('ajax.dop_info', compact('data', 'Infoblocks', 'Worker'));
      }
  
      // Добавление диплома без ajax
      public function add_diplom(Worker $worker) {
          $worker_id = $worker->id;
          $Infoblocks = infobloks::query()->get();
          return view('workers.dop_info', compact('worker_id', 'worker', 'Infoblocks'));
      }
      // Сохранить
      // Сохраняю диплом
      public function add_diplom_save(Request $request) {
          $params = $request->all();
          $count = Dop_info::query()->where('worker_id', $request->get('worker_id'))->where('infoblok_id', $request->get('infoblok_id'))->count();
          if ($count == 0) $dop_info = Dop_info::create($params);
          return redirect()->route('worker.cabinet');
      }
a9dfa8c95   Андрей Ларионов   Обновление на 7 м...
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
  
      // Добавление стандартного документа
      public function add_document(Worker $worker) {
          return view('workers.docs', compact('worker'));
      }
  
      //Сохранение стандартого документа
      public function add_document_save(DocumentsRequest $request) {
          $params = $request->all();
          $place_work = place_works::create($params);
          return redirect()->route('worker.cabinet')->with('success', 'Вы успешно добавили запись!');
      }
  
      // Редактирование документа
      public function edit_document(place_works $doc, Worker $worker) {
          return view('workers.docs-edit', compact('doc', 'worker'));
      }
  
      //Сохранение отредактированного документа
      public function edit_document_save(DocumentsRequest $request, place_works $doc) {
          $params = $request->all();
          $doc->update($params);
  
          return redirect()->route('worker.cabinet')->with('success', 'Вы успешно отредактировали запись!');
      }
  
      // Удаление документа
      public function delete_document(place_works $doc) {
          $doc->delete();
          return redirect()->route('worker.cabinet')->with('success', 'Вы успешно удалили запись!');
      }
  
      //Отправка нового сообщения
      public function new_message(Request $request) {
          $params = $request->all();
  
          $id = $params['send_user_id'];
          $message = new Message();
          $message->user_id = $params['send_user_id'];
          $message->to_user_id = $params['send_to_user_id'];
          $message->title = $params['send_title'];
          $message->text = $params['send_text'];
          if ($request->has('send_file')) {
              $message->file = $request->file('send_file')->store("worker/$id", 'public');
          }
          $message->flag_new = 1;
          $id_message = $message->save();
  
          $data['message_id'] = $id_message;
          $data['ad_employer_id'] = $params['send_vacancy'];
          $data['job_title_id'] = $params['send_job_title_id'];
          $data['flag'] = 1;
          $ad_responce = ad_response::create($data);
          return redirect()->route('worker.messages', ['type_message' => 'output']);
      }
b52b1df0d   Андрей Ларионов   Опция поднятия ва...
546
  }
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
547