set the column default value to NULL in your database
or in your migration script
$table->timestamp('start_date')->nullable();
Change you migration script according below given:
$table->timestamp('start_date')->nullable()->default(null);
Hope this work for you.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community