Blame view
app/Http/Controllers/EmployerController.php
26.7 KB
5b68533bb Работа над проект... |
1 2 3 |
<?php namespace App\Http\Controllers; |
e3c7b0ffb Коммит на понедел... |
4 5 6 7 |
use App\Classes\RusDate; use App\Classes\Tools; use App\Http\Requests\FlotRequest; use App\Http\Requests\MessagesRequiest; |
7571b20fd Коммит 13 марта 2024 |
8 |
use App\Http\Requests\VacancyRequestEdit; |
e3c7b0ffb Коммит на понедел... |
9 10 11 |
use App\Http\Requests\VacansiaRequiest; use App\Mail\MailSotrudnichestvo; use App\Mail\SendAllMessages; |
d152a3a68 Создание основных... |
12 |
use App\Models\Ad_employer; |
e3c7b0ffb Коммит на понедел... |
13 14 |
use App\Models\Ad_jobs; use App\Models\ad_response; |
d152a3a68 Создание основных... |
15 |
use App\Models\Category; |
e3c7b0ffb Коммит на понедел... |
16 17 18 19 20 |
use App\Models\Education; use App\Models\Employer; use App\Models\employers_main; use App\Models\Flot; use App\Models\Job_title; |
dc2a9a876 Коммит на понедел... |
21 22 |
use App\Models\Like_vacancy; use App\Models\Like_worker; |
e3c7b0ffb Коммит на понедел... |
23 |
use App\Models\Message; |
df4edc01d Обновление данных |
24 |
use App\Models\Positions; |
e3c7b0ffb Коммит на понедел... |
25 |
use App\Models\Worker; |
f3766c7c1 Коммит по регистр... |
26 27 |
use Carbon\Carbon; use Illuminate\Auth\Events\Registered; |
e3c7b0ffb Коммит на понедел... |
28 |
use Illuminate\Database\Eloquent\Builder; |
f3766c7c1 Коммит по регистр... |
29 |
use Illuminate\Database\Eloquent\Model; |
e3c7b0ffb Коммит на понедел... |
30 |
use Illuminate\Foundation\Auth\User; |
5b68533bb Работа над проект... |
31 |
use Illuminate\Http\Request; |
a13ce8670 Обновление проект... |
32 |
use Illuminate\Support\Facades\Auth; |
e3c7b0ffb Коммит на понедел... |
33 34 35 36 37 |
use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Mail; use Illuminate\Support\Facades\Storage; use App\Models\User as User_Model; use Illuminate\Support\Facades\Validator; |
5b68533bb Работа над проект... |
38 39 40 |
class EmployerController extends Controller { |
d152a3a68 Создание основных... |
41 42 |
public function vacancie($vacancy, Request $request) { $title = 'Заголовок вакансии'; |
d152a3a68 Создание основных... |
43 44 45 46 47 48 |
$Query = Ad_employer::with('jobs')-> with('cat')-> with('employer')-> with('jobs_code')-> select('ad_employers.*')-> where('id', '=', $vacancy)->get(); |
ad2cc280b Правки финальные ... |
49 50 51 52 |
if (isset(Auth()->user()->id)) $uid = Auth()->user()->id; else $uid = 0; |
d152a3a68 Создание основных... |
53 54 |
$title = $Query[0]->name; if ($request->ajax()) { |
ad2cc280b Правки финальные ... |
55 |
return view('ajax.vacance-item', compact('Query','uid')); |
d152a3a68 Создание основных... |
56 |
} else { |
ad2cc280b Правки финальные ... |
57 |
return view('vacance-item', compact('title', 'Query', 'uid')); |
d152a3a68 Создание основных... |
58 59 |
} } |
a13ce8670 Обновление проект... |
60 61 62 63 64 65 |
public function logout() { Auth::logout(); return redirect()->route('index') ->with('success', 'Вы вышли из личного кабинета'); } |
e3c7b0ffb Коммит на понедел... |
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
public function cabinet() { $id = Auth()->user()->id; $Employer = Employer::query()->with('users')->with('ads')->with('flots')-> WhereHas('users', function (Builder $query) use ($id) {$query->Where('id', $id); })->get(); return view('employers.cabinet45', compact('Employer')); } public function cabinet_save(Employer $Employer, Request $request) { $params = $request->all(); $params['user_id'] = Auth()->user()->id; $id = $Employer->id; if ($request->has('logo')) { if (!empty($Employer->logo)) { Storage::delete($Employer->logo); } $params['logo'] = $request->file('logo')->store("employer/$id", 'public'); } $Employer->update($params); return redirect()->route('employer.cabinet')->with('success', 'Данные были успешно сохранены'); } public function save_add_flot(FlotRequest $request) { // отмена $params = $request->all(); if ($request->has('image')) { $params['image'] = $request->file('image')->store("flot", 'public'); } Flot::create($params); $data_flots = Flot::query()->where('employer_id', $request->get('employer_if'))->get(); return redirect()->route('employer.cabinet')->with('success', 'Новый корабль был добавлен'); } public function delete_flot(Flot $Flot) { $data_flots = Flot::query()->where('employer_id', $Flot->employer_id)->get(); if (isset($Flot->id)) $Flot->delete(); return redirect()->route('employer.cabinet')->with('success', 'Корабль был удален'); } // Форма добавления вакансий public function cabinet_vacancie() { $id = Auth()->user()->id; |
231a1f4aa Проект финализация |
115 |
|
1db57b360 Обновление 4 |
116 |
$categories = Category::query()->active()->get(); |
7180c5059 Обновление 5 |
117 |
|
52cd6fac1 Обновление 5 |
118 |
$Positions = Category::query()->active()->get(); |
7180c5059 Обновление 5 |
119 |
|
231a1f4aa Проект финализация |
120 121 122 123 124 |
if ($Positions->count()) { $jobs = Job_title::query()->OrderBy('name')->where('position_id', $Positions[0]->id)->get(); } else { $jobs = Job_title::query()->OrderBy('name')->where('position_id', 0)->get(); } |
e3c7b0ffb Коммит на понедел... |
125 126 127 128 |
$Employer = Employer::query()->with('users')->with('ads')->with('flots')-> WhereHas('users', function (Builder $query) use ($id) {$query->Where('id', $id); })->get(); |
df4edc01d Обновление данных |
129 |
return view('employers.add_vacancy', compact('Employer', 'jobs' , 'categories', 'Positions')); |
e3c7b0ffb Коммит на понедел... |
130 131 132 |
} // Сохранение вакансии |
7571b20fd Коммит 13 марта 2024 |
133 |
public function cabinet_vacancy_save1(VacancyRequestEdit $request) { |
e3c7b0ffb Коммит на понедел... |
134 |
$params = $request->all(); |
d7c3522a7 Коммит изменение ... |
135 |
$ad_jobs = Ad_employer::create($params); |
365e6ad01 Реализация проекта |
136 |
return redirect()->route('employer.vacancy_list'); |
e3c7b0ffb Коммит на понедел... |
137 138 139 140 141 142 |
} // Список вакансий public function vacancy_list(Request $request) { $id = Auth()->user()->id; $Employer = Employer::query()->where('user_id', $id)->first(); |
d7c3522a7 Коммит изменение ... |
143 |
$vacancy_list = Ad_employer::query()->with('jobs')->with('jobs_code')->where('employer_id', $Employer->id); |
365e6ad01 Реализация проекта |
144 145 146 147 148 149 150 151 152 153 154 155 |
if ($request->get('sort')) { $sort = $request->get('sort'); switch ($sort) { case 'name_up': $vacancy_list = $vacancy_list->orderBy('name')->orderBy('id'); break; case 'name_down': $vacancy_list = $vacancy_list->orderByDesc('name')->orderby('id'); break; case 'created_at_up': $vacancy_list = $vacancy_list->OrderBy('created_at')->orderBy('id'); break; case 'created_at_down': $vacancy_list = $vacancy_list->orderByDesc('created_at')->orderBy('id'); break; case 'default': $vacancy_list = $vacancy_list->orderBy('id')->orderby('updated_at'); break; default: $vacancy_list = $vacancy_list->orderBy('id')->orderby('updated_at'); break; } } |
231a1f4aa Проект финализация |
156 |
$vacancy_list = $vacancy_list->paginate(4); |
365e6ad01 Реализация проекта |
157 158 159 160 161 162 |
//ajax if ($request->ajax()) { return view('employers.ajax.list_vacancy', compact('vacancy_list', 'Employer')); } else { return view('employers.list_vacancy', compact('vacancy_list', 'Employer')); } |
e3c7b0ffb Коммит на понедел... |
163 164 165 166 167 |
} // Карточка вакансии public function vacancy_edit(Ad_employer $ad_employer) { $id = Auth()->user()->id; |
231a1f4aa Проект финализация |
168 |
|
1db57b360 Обновление 4 |
169 |
$Positions = Category::query()->active()->get(); |
231a1f4aa Проект финализация |
170 171 172 173 174 |
if ($Positions->count()) { $jobs = Job_title::query()->OrderBy('name')->where('position_id', $Positions[0]->id)->get(); } else { $jobs = Job_title::query()->OrderBy('name')->where('position_id', 0)->get(); } |
7571b20fd Коммит 13 марта 2024 |
175 176 177 |
$categories = Category::query()->get(); $Employer = Employer::query()->with('users')->with('ads')->with('flots')-> where('user_id', $id)->first(); |
231a1f4aa Проект финализация |
178 |
return view('employers.edit_vacancy', compact('ad_employer', 'Positions', 'categories','Employer', 'jobs')); |
7571b20fd Коммит 13 марта 2024 |
179 |
} |
e3c7b0ffb Коммит на понедел... |
180 |
|
7571b20fd Коммит 13 марта 2024 |
181 182 |
// Сохранение-редактирование записи public function vacancy_save_me(VacancyRequestEdit $request, Ad_employer $ad_employer) { |
231a1f4aa Проект финализация |
183 |
$params = $request->all(); |
7571b20fd Коммит 13 марта 2024 |
184 |
|
231a1f4aa Проект финализация |
185 |
//$jobs['flot'] = $params['flot']; |
d7c3522a7 Коммит изменение ... |
186 |
//$jobs['job_title_id'] = $params['job_title_id']; |
231a1f4aa Проект финализация |
187 |
//$titles['position_id'] = $params['position_id']; |
d7c3522a7 Коммит изменение ... |
188 |
//unset($params['job_title_id']); |
231a1f4aa Проект финализация |
189 190 |
$ad_employer->update($params); |
d7c3522a7 Коммит изменение ... |
191 192 193 194 |
//$job_ = Ad_jobs::query()->where('job_title_id', $jobs['job_title_id'])-> // where('ad_employer_id', $ad_employer->id)->first(); //$data = Ad_jobs::find($job_->id); //$ad_jobs = $data->update($jobs); |
7571b20fd Коммит 13 марта 2024 |
195 |
return redirect()->route('employer.vacancy_list'); |
e3c7b0ffb Коммит на понедел... |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 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 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
} // Сохранение карточки вакансии public function vacancy_save(Request $request, Ad_employer $ad_employer) { $all = $request->all(); $ad_employer->update($all); return redirect()->route('employer.cabinet_vacancie'); } // Удаление карточки вакансии public function vacancy_delete(Ad_employer $ad_employer) { $ad_employer->delete(); return redirect()->route('employer.vacancy_list') ->with('success', 'Данные были успешно сохранены'); } // Обновление даты public function vacancy_up(Ad_employer $ad_employer) { $up = date('m/d/Y h:i:s', time());; $vac_emp = Ad_employer::findOrFail($ad_employer->id); $vac_emp->updated_at = $up; $vac_emp->save(); return redirect()->route('employer.vacancy_list'); // начало конца } //Видимость вакансии public function vacancy_eye(Ad_employer $ad_employer, $status) { $vac_emp = Ad_employer::findOrFail($ad_employer->id); $vac_emp->active_is = $status; $vac_emp->save(); return redirect()->route('employer.vacancy_list'); } //Вакансия редактирования (шаблон) public function vacancy_update(Ad_employer $id) { } //Отклики на вакансию - лист public function answers(Employer $employer, Request $request) { $user_id = Auth()->user()->id; $answer = Ad_employer::query()->where('employer_id', $employer->id); if ($request->has('search')) { $search = trim($request->get('search')); if (!empty($search)) $answer = $answer->where('name', 'LIKE', "%$search%"); } $answer = $answer->with('response')->get(); return view('employers.list_answer', compact('answer', 'user_id', 'employer')); } //Обновление статуса public function supple_status(employer $employer, ad_response $ad_response, $flag) { $ad_response->update(Array('flag' => $flag)); return redirect()->route('employer.answers', ['employer' => $employer->id]); } //Страницы сообщений список public function messages($type_message) { $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); } return view('employers.messages', compact('messages', 'count_input', 'count_output', 'type_message', 'user_id')); } // Диалог между пользователями 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; return view('employers.dialog', compact('companion', 'sender', 'Messages', 'ad_employer')); } |
f3766c7c1 Коммит по регистр... |
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 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 |
// Регистрация работодателя public function register_employer(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'], 'name_company' => ['required', 'string', 'max:255'], 'password' => ['required', 'string', 'min:8'], ]; $messages = [ 'required' => 'Укажите обязательное поле', 'min' => [ 'string' => 'Поле «:attribute» должно быть не меньше :min символов', 'integer' => 'Поле «:attribute» должно быть :min или больше', 'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт' ], 'max' => [ 'string' => 'Поле «:attribute» должно быть не больше :max символов', 'integer' => 'Поле «:attribute» должно быть :max или меньше', 'file' => 'Файл «:attribute» должен быть не больше :max Кбайт' ] ]; if ($request->get('password') !== $request->get('confirmed')){ return json_encode(Array("ERROR" => "Error: Не совпадают пароль и подтверждение пароля")); } $validator = Validator::make($request->all(), $rules, $messages); if ($validator->fails()) { return json_encode(Array("ERROR" => "Error1: Регистрация оборвалась ошибкой! Не все обязательные поля заполнены. Либо вы уже были зарегистрированы в системе.")); } else { $user = $this->create($params); event(new Registered($user)); Auth::guard()->login($user); } if ($user) { return json_encode(Array("REDIRECT" => redirect()->route('employer.cabinet')->getTargetUrl()));; } else { return json_encode(Array("ERROR" => "Error2: Данные были утеряны!")); } } // Создание пользователя protected function create(array $data) { $Use = new User_Model(); $Code_user = $Use->create([ 'name' => $data['surname']." ".$data['name_man'], 'name_man' => $data['name_man'], 'surname' => $data['surname'], 'surname2' => $data['surname2'], 'subscribe_email' => $data['email'], 'email' => $data['email'], 'telephone' => $data['telephone'], 'is_worker' => 0, 'password' => Hash::make($data['password']), 'pubpassword' => base64_encode($data['password']), 'email_verified_at' => Carbon::now() ]); if ($Code_user->id > 0) { $Employer = new Employer(); $Employer->user_id = $Code_user->id; $Employer->name_company = $data['name_company']; $Employer->email = $data['email']; $Employer->telephone = $data['telephone']; $Employer->code = Tools::generator_id(10); $Employer->save(); return $Code_user; } } |
e3c7b0ffb Коммит на понедел... |
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 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 |
// Отправка сообщения от работодателя public function send_message(MessagesRequiest $request) { $params = $request->all(); dd($params); $user1 = $params['user_id']; $user2 = $params['to_user_id']; if ($request->has('file')) { $params['file'] = $request->file('file')->store("messages", 'public'); } Message::create($params); return redirect()->route('employer.dialog', ['user1' => $user1, 'user2' => $user2]); } public function test123(Request $request) { $params = $request->all(); $user1 = $params['user_id']; $user2 = $params['to_user_id']; $rules = [ 'text' => 'required|min:1|max:150000', 'file' => 'file|mimes:doc,docx,xlsx,csv,txt,xlx,xls,pdf|max:150000' ]; $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($request->all(), $rules, $messages); if ($validator->fails()) { return redirect()->route('employer.dialog', ['user1' => $user1, 'user2' => $user2]) ->withErrors($validator); } else { if ($request->has('file')) { $params['file'] = $request->file('file')->store("messages", 'public'); } Message::create($params); return redirect()->route('employer.dialog', ['user1' => $user1, 'user2' => $user2]); } } //Избранные люди public function favorites(Request $request) { |
dc2a9a876 Коммит на понедел... |
449 450 451 452 453 454 455 456 457 458 |
$IP_address = RusDate::ip_addr_client(); $Arr = Like_worker::Query()->select('code_record')->where('ip_address', '=', $IP_address)->get(); if ($Arr->count()) { $A = Array(); foreach ($Arr as $it) { $A[] = $it->code_record; } $Workers = Worker::query()->whereIn('id', $A); |
478431073 Баг-ошибка это с ... |
459 |
} else { |
136bdb8d2 Статус избранные |
460 |
$Workers = Worker::query()->where('id', '=', '0'); |
478431073 Баг-ошибка это с ... |
461 |
} |
e3c7b0ffb Коммит на понедел... |
462 |
|
e3c7b0ffb Коммит на понедел... |
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 491 492 493 494 495 496 497 498 499 500 501 |
if (($request->has('search')) && (!empty($request->get('search')))) { $search = $request->get('search'); $Workers = $Workers->WhereHas('users', function (Builder $query) use ($search) { $query->Where('surname', 'LIKE', "%$search%") ->orWhere('name_man', 'LIKE', "%$search%") ->orWhere('surname2', 'LIKE', "%$search%"); }); } else { $Workers = $Workers->with('users'); } $Workers = $Workers->get(); return view('employers.favorite', compact('Workers')); } // База данных public function bd(Request $request) { // для типа BelongsTo //$documents = Document::query()->orderBy(Location::select('name') // ->whereColumn('locations.id', 'documents.location_id') //); // для типа HasOne/Many // $documents = Document::::query()->orderBy(Location::select('name') // ->whereColumn('locations.document_id', 'documents.id') //); $users = User_Model::query()->with('workers'); if (isset($request->find)) { $find_key = $request->find; $users = $users->where('name', 'LIKE', "%$find_key%") ->orWhere('email', 'LIKE', "%$find_key%") ->orWhere('telephone', 'LIKE', "%$find_key%"); } // Данные $users = $users->Baseuser()-> |
142d287bd Шаблоны кабинета ... |
502 |
orderBy(Worker::select('position_work')->whereColumn('Workers.user_id', 'users.id'))-> |
e3c7b0ffb Коммит на понедел... |
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 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 |
paginate(5); return view('employers.bd', compact('users')); } //Настройка уведомлений public function subscribe() { return view('employers.subcribe'); } //Установка уведомлений сохранение public function save_subscribe(Request $request) { dd($request->all()); $msg = $request->validate([ 'subscribe_email' => 'required|email|min:5|max:255', ]); return redirect()->route('employer.subscribe')->with('Вы успешно подписались на рассылку'); } //Сбросить форму с паролем public function password_reset() { $email = Auth()->user()->email; return view('employers.password-reset', compact('email')); } //Обновление пароля public function 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('employer.password_reset') ->with('success', 'Поздравляю! Вы обновили свой пароль!'); } return redirect() ->route('employer.password_reset') ->withError('Данная учетная запись не было верифицированна!'); } } return redirect() ->route('employer.password_reset') ->withErrors('Не совпадение данных, обновите пароли!'); } |
f3766c7c1 Коммит по регистр... |
564 |
|
e3c7b0ffb Коммит на понедел... |
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 |
// Форма Удаление пипла public function delete_people() { $login = Auth()->user()->email; return view('employers.delete_people', compact('login')); } // Удаление аккаунта public function action_delete_user(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); |
dc2a9a876 Коммит на понедел... |
583 |
$it->delete(); |
e3c7b0ffb Коммит на понедел... |
584 585 586 587 588 589 |
return redirect()->route('index')->with('success', 'Вы успешно удалили свой аккаунт'); } else { return redirect()->route('employer.delete_people') ->withErrors( 'Неверный пароль! Нужен корректный пароль'); } } |
6370754b6 Обновление бага с... |
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 |
public function ajax_delete_user(Request $request) { $Answer = $request->all(); $user_id = Auth()->user()->id; $request->validate([ 'password' => 'required|string', ]); $credentials = $request->only('email', 'password'); if (Auth::attempt($credentials)) { return json_encode(Array('SUCCESS' => 'Вы успешно удалили свой аккаунт', 'email' => $request->get('email'), 'password' => $request->get('password'))); } else { return json_encode(Array('ERROR' => 'Неверный пароль! Нужен корректный пароль')); } } |
e3c7b0ffb Коммит на понедел... |
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 |
// FAQ - Вопросы/ответы для работодателей и соискателей public function faq() { return view('employers.faq'); } // Рассылка сообщений public function send_all_messages() { return view('employers.send_all'); } // Отправка сообщений для информации public function send_all_post(Request $request) { $data = $request->all(); $emails = User_Model::query()->where('is_worker', '1')->get(); foreach ($emails as $e) { Mail::to($e->email)->send(new SendAllMessages($data)); } return redirect()->route('employer.send_all_messages')->with('success', 'Письма были отправлены'); } // База резюме public function bd_tupe(Request $request) { $Resume = User_Model::query()->with('workers')->where('is_bd', '=', '1')->get(); return view('employers.bd_tupe', compact('Resume')); } |
b6103c749 Обновление js и c... |
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 |
////////////////////////////////////////////////////////////////// // // // Отправил сообщение // // // // ////////////////////////////////////////////////////////////////// public function new_message(Request $request) { $params = $request->all(); $id = $params['_user_id']; $message = new Message(); $message->user_id = $params['_user_id']; $message->to_user_id = $params['_to_user_id']; $message->title = $params['title']; $message->text = $params['text']; if ($request->has('_file')) { $message->file = $request->file('_file')->store("worker/$id", 'public'); } $message->flag_new = 1; $id_message = $message->save(); $data['message_id'] = $id_message; $data['ad_employer_id'] = $params['_vacancy']; $data['job_title_id'] = 0; $data['flag'] = 1; $ad_responce = ad_response::create($data); return redirect()->route('employer.messages', ['type_message' => 'output']); } // Восстановление пароля public function repair_password(Request $request) { $params = $request->get('email'); |
231a1f4aa Проект финализация |
672 |
} |
b6103c749 Обновление js и c... |
673 |
|
231a1f4aa Проект финализация |
674 675 676 677 |
// Избранные люди на корабль public function selected_people(Request $request) { $id = $request->get('id'); $favorite_people = Job_title::query()->where('position_id', $id)->get(); |
b6103c749 Обновление js и c... |
678 |
|
231a1f4aa Проект финализация |
679 |
return view('favorite_people', compact('favorite_people')); |
b6103c749 Обновление js и c... |
680 |
} |
5b68533bb Работа над проект... |
681 |
} |