Prior to Laravel 5, there was no native Laravel way to modify an existing table column using a schema builder. You will need to use raw requests.
However, with Laravel 5 you can use:
$table->...->nullable(false)->change();
TLGreg Dec 24 2018-12-12T00: 00Z
source share