php - Storing dates with Laravel -


i trying store date laravel. have timestamp field (but have tried date field same issue) , whenever try store date format dd-mm-yyyy stores date: "0000-00-00 00:00:00". here how storing date:

$result = new result(); $result->date = carbon::parse(request::input('date')); 

(along on vars , $result->save();)

i have date field in $dates variable in result model.

if tell me why awesome!

thanks

edit: when var_dump on request::input('date') string(10) "15-06-2015"

even though put date field in $dates field in model, took out of $fillable. everyones help!


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -