/home/kueuepay/public_html/app/Mail/UserForgotPasswordCode.php
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;

class UserForgotPasswordCode extends Mailable
{
    use Queueable, SerializesModels;

    public $username;
    public $pwdCode;
    /**
     * Create a new message instance.
     *
     * @return void
     */
    public function __construct($username, $pwdCode)
    {
        $this->username = $username;
        $this->pwdCode = $pwdCode;
    }

    public function build()
    {
        return $this->view('mail-templates.user._forgot_password')->with(['username' =>  $this->username, 'code' => $this->pwdCode]);
    }
}
Accept Payment
top

Effortlessly Accept Payments and Manage Transactions with Our Platform

Our platform simplifies payment acceptance, making transaction management effortless. With secure processing and user-friendly tools, you can easily handle payments from credit cards, debit cards, and digital methods. Our intuitive interface is designed for efficiency, ensuring a seamless experience for both you and your customers. Manage your transactions with ease and confidence.

img