檢索個人貢獻的全部資料庫記錄
P粉716228245
P粉716228245 2023-09-08 16:10:51
0
1
488

如何取得由登入者插入的資料庫表中的所有行?我將提供下面的程式碼和片段

Controller.php 檔案

#
public function index(){ $data['user1'] = UserModel::where('seq_id','=',Session::get('loginId'))->first(); return view ("enrollment-steps.step2", $data, [ 'data'=>$data['user1'], ]); }

Blade.php 檔案

#
 

我可以使用哪些其他方法來取得同一個人插入的所有資料? first() 方法只會取得最後插入的行,get() 方法會拋出Property [honors] does not exit on this collection instance.。例如,在 app_id 2708 下面的程式碼片段中插入了 3 行,我該如何取得連接到該人的資料庫中的所有資料?

P粉716228245
P粉716228245

全部回覆 (1)
P粉914731066

控制器

public function index() { $userData = UserModel::where('app_id', 2708)->get(); return view('enrollment', compact('userData')); }

刀片

@foreach($userData as $data) {{$data->schoolname}} @endforeach
    最新下載
    更多>
    網站特效
    網站源碼
    網站素材
    前端模板
    關於我們 免責聲明 Sitemap
    PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!