如何取得由登入者插入的資料庫表中的所有行?我將提供下面的程式碼和片段
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 行,我該如何取得連接到該人的資料庫中的所有資料?
控制器
刀片