From 2563109dadc2f9e4b7ee00f18bd9043296de2422 Mon Sep 17 00:00:00 2001 From: Sergey Panarin Date: Mon, 8 Jul 2024 12:45:31 +0200 Subject: [PATCH] =?UTF-8?q?=D0=BE=D1=87=D0=B8=D1=81=D1=82=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Http/Controllers/EmployerController.php | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/app/Http/Controllers/EmployerController.php b/app/Http/Controllers/EmployerController.php index fc8ea91..eaa9fc7 100644 --- a/app/Http/Controllers/EmployerController.php +++ b/app/Http/Controllers/EmployerController.php @@ -583,20 +583,6 @@ class EmployerController extends Controller // База данных public function bd(Request $request) { - for ($i = 0; $i < 5; $i++) { - echo "i = $i\n
"; - for ($j = 0; $j < 5; $j++) { - echo " j = $j\n
"; - for ($k = 0; $k < 5; $k++) { - if ($k == 2) { - continue; - } - echo " k = $k\n
"; - } - } - } - - dd('OK'); $users = User_Model::query()->with('workers')->with('jobtitles'); if ($request->has('search')) { -- 1.7.10.4