Answers for "laravel migration year type"

PHP
3

laravel migration integer

$table->integer('votes');
Posted by: Guest on March-22-2021
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 "laravel migration year type"

Browse Popular Code Answers by Language