Laravel5 için Biri kullandığından beri
{!! Form :: input ('tarih', 'tarih_başlangıç', null, ['sınıf' => 'form-kontrol', 'id' => 'tarih_başlangıç', 'ad' => 'tarih_başlangıç']) !!}
=> Chrome, tarih seçicisini zorlayacaktır. => css ile alırsanız, normal biçimlendirme hatalarını alırsınız !! (Belirtilen değer gerekli biçime, "yyyy-MM-gg" ile uyumlu değil.)
ÇÖZÜM:
$ ('input [tür = "tarih"]'). attr ('tür', 'metin');
$("#date_start").datepicker({
autoclose: true,
todayHighlight: true,
dateFormat: 'dd/mm/yy',
changeMonth: true,
changeYear: true,
viewMode: 'months'
});
$("#date_stop").datepicker({
autoclose: true,
todayHighlight: true,
dateFormat: 'dd/mm/yy',
changeMonth: true,
changeYear: true,
viewMode: 'months'
});
$( "#date_start" ).datepicker().datepicker("setDate", "1d");
$( "#date_stop" ).datepicker().datepicker("setDate", '2d');