Maybe a good read: https://laracasts.com/forum/?p=434-user-set-timezone/0 Else why not just let it store in the default format. and format it using Carbon? http://carbon.nesbot.com/docs/#api-localization
Another option: /app/config/app.php change the locale there.
Example Carbon:
<?php
Carbon\Carbon::setLocale('<your locale');
$newDt = Carbon\Carbon::parse('<your date>')->timezone('<your timezone>');