Skip to content

Commit b719119

Browse files
committed
fix
1 parent 3c1902f commit b719119

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -332,14 +332,12 @@ default values for your fields.
332332
$model->first_name = "John";
333333
$model->last_name = "Doe";
334334
$model->email = "john@example.com";
335-
$model->date_of_birth = new DateTime('1985-05-06');
336335
337336
<?= $builder->open(); ?>
338337
<?= $builder->bind($model); ?>
339338
<?= $builder->text('first_name'); ?>
340339
<?= $builder->text('last_name'); ?>
341340
<?= $builder->email('email'); ?>
342-
<?= $builder->date('date_of_birth'); ?>
343341
<?= $builder->close(); ?>
344342
```
345343

0 commit comments

Comments
 (0)