PATH:
home
/
rwabteecom
/
public_html
/
database
/
migrations
/
Editing: 2022_09_07_094930_run_default_seeder_1.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Support\Facades\Artisan; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Artisan::call('db:seed', ['--class' => 'FrontPageDisableSeeder', '--force' => true]); Artisan::call('db:seed', ['--class' => 'ManualPaymentGuideSeeder', '--force' => true]); } /** * Reverse the migrations. */ public function down(): void { // } };
SAVE
CANCEL