Skip to content
Advertisement

How to figure out what number a record is, when in date order

In my Laravel project I have a Policy model that looks like so:

JavaScript

As you can see there are versions of a policy.

My policy versions table schema looks like so:

JavaScript

My question is as follows: if I have five versions of a policy in date order and I select a policy version, how could I say “you are on version n of x for this policy”?

Would it be best to add a policy_version_number and just increment it each time a new version is created?

This feels like a dumb question but initially I was just going to use the version id but this would actually be incorrect.

Advertisement

Answer

You can listen to the model’s events and automatically populate the column when the model is created. To do that, implement the boot method in your PolicyVersion model:

JavaScript

Untested, but should do the trick.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement