Answers for "data type of date in laravel migration"

PHP
1

how to set field type of date of birth in laravel

$table->date('date_of_birth');
Posted by: Guest on November-16-2020
0

datetime-local laravel migration data type

public function getDateStartAttribute($value)
{
    return Carbon::parse($value)->format('Y-m-dTH:i');
}

public function getDateEndAttribute($value)
{
    return Carbon::parse($value)->format('Y-m-dTH:i');
}
Posted by: Guest on December-11-2020

Code answers related to "data type of date in laravel migration"

Browse Popular Code Answers by Language