Answers for "store timestamp in mysql laravel"

PHP
4

mysql timestamp in laravel migration

$table->timestamp('created_at')->default(DB::raw('CURRENT_TIMESTAMP'));
Posted by: Guest on August-04-2020
1

how convert the string time stamp to date in laravel

$timestamp = strtotime("13-10-2013 15:00");
Posted by: Guest on June-16-2021

Browse Popular Code Answers by Language