David Carrdcblogdev.hashnode.devยทAug 31, 2021Get the last day of the month from a dateGet the last day of the month from a date To get the last day of the month use date('t'): $dueDate = date('t/m/Y', strtotime($row->created_at)); or with Carbon (Laravel example) $row->created_at->format('t/m/Y'); Domains are often purchased from mul...Add a thoughtful commentNo comments yetBe the first to start the conversation.