SyntaxFix
Write A Post
Hire A Developer
Questions
You can simple put the default value using default(). See the example
$table->enum('is_approved', array('0','1'))->default('0');
I have used enum here and the default value is 0.