#payment_bundle

Version:
payment_bundle v1.3.7

**- Require:**

# Extension of the parent template:
Add this lines in config/packages/twig.yaml for global variable of base template from which we will inherit
            
    globals:
        parent_template: 'base.html.twig'
                
# For the css buttons:
In the file "* .css". Add the following class".btn-background" and ".btn-background-text" and give them the "background-color and color" properties

    .req{color: red;}
    
    .btn.btn-background {background-color:#273c75; font-weight: bold}
    .btn.btn-background:hover {background-color:#e3521d;}
    i.btn-background-text {color:#273c75;}
    i.btn-background-text:hover {color:#e3521d;}

# Interfaces configuration:
Add this lines in doctrine.yaml file orm section for declare all interfaces**

    resolve_target_entities:
        Payment\Interfaces\BasketLineInterface: Payment\Entity\BasketLine
        Payment\Interfaces\ProductInterface: Payment\Entity\Product
        Payment\Interfaces\TransactionInterface: Payment\Entity\Transaction
        Payment\Interfaces\UserBasketInterface: Payment\Entity\UserBasket