diff --git a/app/Http/Controllers/EmployerController.php b/app/Http/Controllers/EmployerController.php index 4a650a9..20bdc02 100644 --- a/app/Http/Controllers/EmployerController.php +++ b/app/Http/Controllers/EmployerController.php @@ -602,7 +602,12 @@ class EmployerController extends Controller $export_options = DbExportColumns::toArray(); - $jobs_titles = Job_title::select('id', 'name')->orderBy('name', 'asc')->get()->toArray(); + $jobs_titles = Job_title::select('id', 'name') + ->where('is_remove', '=', 0) + ->orderBy('name', 'asc') + ->get() + ->toArray() + ; return view('employers.bd', compact('users', 'count_users', 'export_options', 'jobs_titles')); } diff --git a/public/css/style_may2024.css b/public/css/style_may2024.css index 403f2d8..960f60a 100644 --- a/public/css/style_may2024.css +++ b/public/css/style_may2024.css @@ -2092,7 +2092,7 @@ h1 { border-right-color: #377d87; } .table_spoiler tr { - display: none; + /*display: none;*/ } .table_spoiler tr:nth-of-type(1), .table_spoiler tr:nth-of-type(2), .table_spoiler tr:nth-of-type(3), .table_spoiler tr:nth-of-type(4), .table_spoiler tr:nth-of-type(5), .table_spoiler tr:nth-of-type(6) { display: table-row;