<?php
namespace Database\Seeders\Admin;
use App\Models\Admin\AppSettings;
use App\Models\Admin\SystemMaintenance;
use Illuminate\Database\Seeder;
class SystemMaintenanceSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$system_maintenances = array(
array('slug' => 'system-maintenance','title' => 'Enhancing Your Experience – Site Under Maintenance','details' => '<p>Our website is down for upgrades and will be back shortly. If you need assistance, please email us at <strong>support@nfcpay.com</strong> or message us on WhatsApp at <strong>+1234567890</strong>. Thank you for your patience!</p>','status' => '0','created_at' => now(),'updated_at' => now())
);
SystemMaintenance::upsert($system_maintenances,['slug'],['title','details','status','created_at','updated_at']);
}
}
How To Payment
Making a payment on our website is quick and secure. Start by logging in or creating an account. Select your preferred payment method, input the required details, and review the information. Once you confirm everything is correct, click on the "Submit Payment" button. You’ll receive instant confirmation and can track your payment status through your account dashboard. It’s an easy and secure process.