PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5

Chapter 4 - Migrations.

Closed this issue · 1 comments

$table->boolean('amenity_wifi')->default(false);

Does not work with Laravel 5.7,

Replaced that with

$table->boolean('amenity_wifi')->default(0);

and it worked fine.

Thanks