new generated payment method icon
-
i have followed the tutorial on bagisto page regarding creating a payment method using bagisto package generator, currently the payment method appears in the checkout page but doesn't have an icon, please i need help on how to add an icon .
-
inside src/Payment/YourPaymentMethod.php add the following code
/** * Get payment method image. * * @return array */ public function getImage() { $url = $this->getConfigData('image'); return $url ? Storage::url($url) : bagisto_asset('images/the-filename.png', 'shop'); }