Commit 44e612f7e42a54b18376e4e5f8d57e927ea9c8ea

Authored by Hayk Nazaryan
1 parent 674b6d78a5
Exists in master

fixes

Showing 5 changed files with 7 additions and 12 deletions Side-by-side Diff

app/Http/Controllers/Admin/EmployersController.php
... ... @@ -203,6 +203,8 @@ class EmployersController extends Controller
203 203 'is_lookin' => $request->is_lookin,
204 204 'show_database' => $request->show_database,
205 205 'can_autolift' => $request->can_autolift,
  206 + 'is_message' => $request->is_message,
  207 + 'is_public' => $request->is_public,
206 208 ]);
207 209  
208 210 return redirect()->route('admin.employer-profile', ['employer' => $employer->id])
public/css/custom-ckeditor.css
1 1 p {
2   - margin: 5px;
  2 + margin: 0;
3 3 line-height: 1.5;
4 4 }
5 5  
public/css/style_may2024.css
... ... @@ -9562,6 +9562,9 @@ main + .news {
9562 9562 .main__employer-page-two-item-text-body p{
9563 9563 margin: 0 0 20px;
9564 9564 }
  9565 +.main__employer-page-two-item-text-body.vacancy-info p{
  9566 + margin: 0 0 10px;
  9567 +}
9565 9568 #sertificate .one-sertificate{
9566 9569 display: flex;
9567 9570 justify-content: space-between;
resources/views/admin/employer/edit.blade.php
... ... @@ -222,16 +222,6 @@
222 222 </label><br>
223 223  
224 224 <label class="block text-sm flex">
225   - <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Публикация вакансий</p>
226   - <input type="hidden" name="is_public" value="0" />
227   - <input name="is_public" id="is_public" <?php if ($employer->users->is_public) echo "checked";?>
228   - class="block mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray "
229   - placeholder="" type="checkbox" value="1"
230   - />
231   -
232   - </label><br>
233   -
234   - <label class="block text-sm flex">
235 225 <p class="text-gray-700 dark:text-gray-400" style="float:left; margin-right: 10px">Работодатель скрыт </p>
236 226 <input type="hidden" name="status_hidden" value="0" />
237 227 <input name="status_hidden" <?php if ($employer->status_hidden) echo "checked";?>
resources/views/vacance-item.blade.php
... ... @@ -74,7 +74,7 @@
74 74 <div class="main__vacancies-item-page main__employer-page-two-item">
75 75 <div class="main__employer-page-two-item-text">
76 76 <div class="main__employer-page-two-item-text-name">Мы предлагаем:</div>
77   - <div class="main__employer-page-two-item-text-body">
  77 + <div class="main__employer-page-two-item-text-body vacancy-info">
78 78 {!! $Q->text !!}
79 79 </div>
80 80 </div>