<?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']);
}
}
Save Cards
Simplify your payment experience by securely saving your card on our platform. After your initial transaction, you can choose to store your card details safely for future use. This feature eliminates the need to re-enter your payment information each time, making checkouts faster while keeping your data secure with advanced encryption and robust security measures.