/
home
/
u694682534
/
domains
/
blackbooks.me
/
public_html
/
almaher2
/
database
/
migrations
/
Upload File
HOME
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('invoice_layouts', function (Blueprint $table) { $table->string('client_tax_label')->after('client_id_label')->nullable(); $table->string('cat_code_label')->after('table_subtotal_label')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('invoice_layouts', function (Blueprint $table) { // }); } };