Last updated on

[Laravel] get insert_id with save()


After save()$data->id should be the last id inserted.
 

$data->save();

<span style="font-family:monospace">$last_id =</span> $data->id;