Is there anyway to get the years between a start year and current year in an array, if possible with Carbon?
So this year the array would be:
[2014,2015,2016]
And next year 2017 will be included:
[2014,2015,2016,2017]
Thanks..
Is there anyway to get the years between a start year and current year in an array, if possible with Carbon?
So this year the array would be:
[2014,2015,2016]
And next year 2017 will be included:
[2014,2015,2016,2017]
Thanks..
Solution:
$years = range(Carbon::now()->year, 2014)
© 2022 - 2024 — McMap. All rights reserved.