How to save into DB a column containing 'ISO8601 strings' as a format in Laravel migration
Is it possible to save a column as ISO8601 format that is not a string type? Basically, I want to save the date and time as shown below: 2024-11-21T19:30:00. I tried to use timestamp, so $table->timestamp('start'); but it saves the…