Laravel-搜索ID并将其显示在文本框等输入表单上

时间:2018-12-06 00:38:48

标签: php mysql laravel laravel-5 eloquent

我如何搜索ID,如果单击“搜索”,它将在文本框中显示其信息

这是我的示例 搜索输入框

  <input type="text" class="form-control" placeholder="Search for..." aria-label="Search" aria-describedby="basic-addon2">
      <div class="input-group-append">
        <button class="btn btn-primary" type="button">
          <i class="fas fa-search"></i>
        </button>
      </div>

这是我的视图示例 文本框输入

 {{Form::text('employee_no', '',['class' => 'form-control', 'placeholder' => 'Employee No.'])}}

 {{Form::text('last_name', '',['class' => 'form-control', 'placeholder' => 'Last Name'])}}

这是我的 控制器

的示例
   $employeeFileMaintenance = new Employeefm;
   $employeeFileMaintenance->employee_no = $request->input('employee_no');
   $employeeFileMaintenance->last_name = $request->input('last_name');

0 个答案:

没有答案