标签: laravel laravel-5
我有此代码:
$candidate = Applicant::find($request->candidate_id); $candidate->jobOrders()->syncWithoutDetaching($job_id);
我想返回插入数据的id。到目前为止,我看到的解决方案是查询数据透视表中最后插入的数据。
id
还有其他更简单或更有效的方法来检索id吗?