Define default values for Laravel form fields

前端 未结 7 1994
感动是毒
感动是毒 2021-02-20 12:45

To pre-populate form field, we can add \'value\' to form field in create.blade.php:

{{ Form::text(\'title\', \'Some default title\') }}

Is ther

7条回答
  •  迷失自我
    2021-02-20 13:18

    When you are using the Schema builder (in Migrations or somewhere else):

    Schema::create( 
          'posts', function($table) {
              $table->string('title', 30)->default('New post'); 
          }
    );
    

提交回复
热议问题