Rumah > Soal Jawab > teks badan
Medan id dalam pangkalan data saya ialah des_id, bagaimana saya boleh menukarnya kepada des_id?
Route::post('Itest/LoadSuppliers', function (Request $request) { $request->validate([ 'destination_id' => 'required|exists:mysql.tbl_destinations,des_id', 'from' => 'required|numeric|min:0', 'to' => 'required|numeric|min:0', ]); $destination_id = Destination::where('des_id','=', $request->destination_id)->firstOrFail(); $from = $request->from; $to = $request->to; dispatch(new TestJob($destination_id, $from, $to)); return response()->json([ 'status' => true ]); });
P粉4587250402023-12-13 16:28:53
Kod anda kelihatan baik bagi saya.
Cuba tetapkan ini dalam model sasaran anda:
protected $primaryKey = 'des_id';