Document title and subheading feature some changes..

This commit is contained in:
Cüneyt Şentürk
2023-08-14 15:36:38 +03:00
parent af8ba9726f
commit 09baf1991f
6 changed files with 72 additions and 26 deletions

View File

@ -14,8 +14,8 @@ return new class extends Migration
public function up()
{
Schema::table('documents', function (Blueprint $table) {
$table->string('title')->nullable()->default('');
$table->string('subheading')->nullable()->default('');
$table->string('title')->nullable()->after('contact_country');
$table->string('subheading')->nullable()->after('title');
});
}