> For the complete documentation index, see [llms.txt](https://php-snap-bi.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://php-snap-bi.gitbook.io/docs/introduction.md).

# Introduction

## Bank Support

php-snap-bi currently support for this bank :

| Bank    | Method  | Support                                                                 |
| ------- | ------- | ----------------------------------------------------------------------- |
| BCA     | bca     | YES. Check here for [available function](/docs/support/bca-snap.md)     |
| Mandiri | mandiri | YES. Check here for [available function](/docs/support/mandiri-snap.md) |
| DANA    | dana    | YES. Check here for [available function](/docs/support/dana-snap.md)    |
| BRI     | bri     | YES. Check here for [available function](/docs/support/bri-snap.md)     |

Next, you will need a method from this bank support to use `php-snap-bi.` The method from this table will be useful as follows :

### Make request

```php
// Use for Config class
Config::bca([]);
Config::mandiri([]);
Config::bri([]);
// or
Config::for("bca");
Config::for("mandiri");
Config::for("bri");

// Use for SnapBi class
SnapBi::bca();
SnapBi::mandiri();
SnapBi::bri();
// or
SnapBi::for("bca")
SnapBi::for("mandiri")
SnapBi::for("bri")

```
