Skip to content

Commit

Permalink
make first name not required
Browse files Browse the repository at this point in the history
  • Loading branch information
aeq-dev committed Sep 11, 2023
1 parent 258901f commit 75d230b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function up()
Schema::create(config('laravel-address.tables.addresses'), function (Blueprint $table) {
// Columns
$table->increments('id');
$table->string('first_name');
$table->string('first_name')->nullable();
$table->string('last_name')->nullable();
$table->string('phone')->nullable();
$table->string('email')->nullable();
Expand Down

0 comments on commit 75d230b

Please sign in to comment.