PHPackages                             shieldforce/federal-filament-store - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. shieldforce/federal-filament-store

ActiveLibrary

shieldforce/federal-filament-store
==================================

This is my package federal-filament-store

v1.5.0(3mo ago)046MITPHPPHP ^8.4

Since Nov 30Pushed 3mo agoCompare

[ Source](https://github.com/Shieldforce/federal-filament-store)[ Packagist](https://packagist.org/packages/shieldforce/federal-filament-store)[ Docs](https://github.com/shieldforce/federal-filament-store)[ RSS](/packages/shieldforce-federal-filament-store/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (14)Versions (51)Used By (0)

Plugin para filament store
==========================

[](#plugin-para-filament-store)

[![Latest Version on Packagist](https://camo.githubusercontent.com/5e23c025244ff48728e172115ec896aa56cb93519ca97a7f3bdf57646c17ae12/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f736869656c64666f7263652f636865636b6f75742d7061796d656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/shieldforce/checkout-payment)[![GitHub Tests Action Status](https://camo.githubusercontent.com/0f79b3dc0286d8768a5870494d91a79a7568fde1b39407d6b3cf5c483484b1e6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f736869656c64666f7263652f636865636b6f75742d7061796d656e742f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/shieldforce/checkout-payment/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/6ae3217f39df35f932f748aff66beda9b3a85e5bb374ea1865e3a76b7e7d8940/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f736869656c64666f7263652f636865636b6f75742d7061796d656e742f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/shieldforce/checkout-payment/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/feb4f24af89e94da1151930a32c52929f4036fa300558ecc792ad6bc799044c7/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f736869656c64666f7263652f636865636b6f75742d7061796d656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/shieldforce/checkout-payment)

Este plugin implementa checkout de pagamento interno e externo para o filament!

Instalação
----------

[](#instalação)

Instalar Via Composer:

```
composer require shieldforce/federal-filament-store
```

Você precisa publicar as migrações, views e assets:

```
php artisan federal-filament-store:install

# Publicar as tabelas
php artisan vendor:publish --tag="federal-filament-store-migrations"
php artisan migrate

# Publicar a config
php artisan vendor:publish --tag="federal-filament-store-config"

# Publicar as views
php artisan vendor:publish --tag="federal-filament-store-views"

# Publicar as assets
php artisan vendor:publish --tag=federal-filament-store-assets --force

# Publicar os css
php artisan vendor:publish --tag=federal-filament-store-css --force
```

Algumas configurações obrigatórias
==================================

[](#algumas-configurações-obrigatórias)

```
// Adicionar o plugin no AdminPanel plugins
->plugins([
    //... outros plugins
    \Shieldforce\FederalFilamentStore\FederalFilamentStorePlugin::make()
      ->setLabelGroupSidebar("Loja"),
])

// Criar p Middleware
