Laravel 4.x we have a facility to get last inserted id easily. By showing one of my code you will get easily understanding.
Example:
$karmaNote = new Karmanote;
$karmaNote ->reqid = $meetingId;
$karmaNote ->connectionidgGiver= $connectionId;
$karmaNote ->useridReceiver = $userId;
$karmaNote ->details = $description;
$karmaNote ->viewstatus = 0;
$karmaNote->created_at = KarmaHelper::currentDate();
$karmaNote->save();
$karmaNoteId = $karmaNote->id;
Here $karmaNoteId is the last insert id in database.
By this we can find last inserted id.
0 Comment(s)